* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: #8b5cf6;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 10001;
    border-radius: 0 0 8px 0;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid #a78bfa;
    outline-offset: 2px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0a0f;
    color: #e8e8e8;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    body.reduced-motion .spinner {
        animation: none;
        border: 6px solid #8b5cf6;
    }
    
    body.reduced-motion .loading-text .dots span {
        animation: none;
        opacity: 1;
    }
}

body.loading #main-content {
    filter: blur(15px);
    pointer-events: none;
}

body.loading {
    overflow: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

#main-content {
    transition: filter 0.5s ease;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 6px solid rgba(139, 92, 246, 0.2);
    border-top-color: #8b5cf6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    margin-top: 2.5rem;
    color: #a78bfa;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.dots {
    display: inline-block;
    margin-left: 2px;
}

.dots span {
    animation: blink 2s infinite;
    opacity: 0;
}

.dots span:nth-child(1) {
    animation-delay: 0s;
}

.dots span:nth-child(2) {
    animation-delay: 0.3s;
}

.dots span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes blink {
    0%, 20% {
        opacity: 0;
        transform: translateY(0);
    }
    40% {
        opacity: 1;
        transform: translateY(-5px);
    }
    60%, 100% {
        opacity: 0;
        transform: translateY(0);
    }
}

@keyframes gradient-shift {
    to {
        background-position: 200% center;
    }
}

/* Animate Section Headers on Load */
.animate-on-load {
    animation: slideInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s backwards;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 3D Canvas Background */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.4;
    filter: blur(1px);
}

/* Animierter Hintergrund */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 20%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(109, 40, 217, 0.08) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
    animation: gradient-float 15s ease-in-out infinite;
}

@keyframes gradient-float {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Navigation mit Glass-Effect */
nav {
    background: rgba(15, 15, 20, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.nav-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #a78bfa;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 28px;
    height: 28px;
    color: #a78bfa;
    animation: rotate3d 4s ease-in-out infinite;
}

@keyframes rotate3d {
    0%, 100% { transform: rotateY(0deg) rotateX(0deg); }
    25% { transform: rotateY(180deg) rotateX(0deg); }
    50% { transform: rotateY(180deg) rotateX(180deg); }
    75% { transform: rotateY(0deg) rotateX(180deg); }
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #a78bfa;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Main Content Transition */
#main-content {
    transition: filter 0.3s ease;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    width: 90%;
    background: rgba(20, 20, 28, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: 16px;
    padding: 2rem;
    z-index: 10001;
    box-shadow: 0 10px 50px rgba(139, 92, 246, 0.3);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-text h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: #b8b8b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-status {
    margin-top: 1rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}

.cookie-status.show {
    display: block;
}

.cookie-status.accepted {
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.cookie-status.declined {
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    flex: 1;
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

/* Cookie Settings Button */
.cookie-settings-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(124, 58, 237, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(167, 139, 250, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    z-index: 9998;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.cookie-settings-btn svg {
    width: 24px;
    height: 24px;
}

.cookie-settings-btn:hover {
    background: rgba(124, 58, 237, 1);
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.6);
}

.cookie-settings-btn:active {
    transform: scale(0.95) rotate(15deg);
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.cookie-btn.decline {
    background: rgba(139, 92, 246, 0.1);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.cookie-btn.decline:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 1rem;
        padding: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
    margin-left: 1rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #a78bfa;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hamburger-menu-panel {
    position: fixed;
    top: 90px;
    right: -350px;
    width: 260px;
    background: linear-gradient(135deg, rgba(20, 20, 28, 0.96), rgba(30, 20, 40, 0.96));
    backdrop-filter: blur(25px) saturate(140%);
    -webkit-backdrop-filter: blur(25px) saturate(140%);
    border: 1px solid rgba(167, 139, 250, 0.25);
    border-radius: 18px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    z-index: 100;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(167, 139, 250, 0.08) inset,
        0 0 25px rgba(124, 58, 237, 0.15);
    opacity: 0;
    pointer-events: none;
}

.hamburger-menu-panel.active {
    right: 2rem;
    opacity: 1;
    pointer-events: auto;
}

.hamburger-menu-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(167, 139, 250, 0.05));
    border-radius: 20px;
    z-index: -1;
}

.hamburger-menu-panel a {
    color: #e0e0e0;
    text-decoration: none;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 1.05rem;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.08), rgba(124, 58, 237, 0.08));
    border: 1px solid rgba(167, 139, 250, 0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hamburger-menu-panel a svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hamburger-menu-panel a:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.hamburger-menu-panel a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.2), transparent);
    transition: left 0.5s ease;
}

.hamburger-menu-panel a:hover::before {
    left: 100%;
}

.hamburger-menu-panel a::after {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    margin-left: auto;
    font-size: 1.2rem;
}

.hamburger-menu-panel a:hover {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(124, 58, 237, 0.15));
    border-color: rgba(167, 139, 250, 0.4);
    transform: translateX(5px);
    box-shadow: 
        0 5px 15px rgba(124, 58, 237, 0.3),
        0 0 20px rgba(167, 139, 250, 0.1);
    color: #a78bfa;
}

.hamburger-menu-panel a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.hamburger-menu-panel a:active {
    transform: translateX(3px) scale(0.98);
}

.discord-link {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.15), rgba(88, 101, 242, 0.05));
    padding: 0.32rem 0.55rem !important;
    border-radius: 12px;
    border: 1px solid rgba(88, 101, 242, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

.back-home-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.back-home-link:hover {
    color: #8b5cf6;
    transform: scale(1.1);
}

.back-home-link svg {
    width: 24px;
    height: 24px;
}


.discord-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(88, 101, 242, 0.2), transparent);
    transition: left 0.5s ease;
}

.discord-link:hover::before {
    left: 100%;
}

.discord-link:hover {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.25), rgba(88, 101, 242, 0.1));
    border-color: rgba(88, 101, 242, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.discord-link svg {
    color: #5865f2;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.discord-link span {
    font-weight: 600;
    font-size: 1.05rem;
}

.discord-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 0.8rem;
    border-left: 1px solid rgba(88, 101, 242, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #23a559;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(35, 165, 89, 0.6);
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.member-count {
    font-size: 0.9rem;
    color: #23a559;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    background: rgba(20, 20, 28, 0.5);
    padding: 0.3rem;
    border-radius: 10px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
}

.lang-btn {
    background: transparent;
    border: none;
    color: #b8b8b8;
    padding: 0.5rem 1rem;
    border-radius: 7px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 1;
}

.lang-btn:hover {
    color: #a78bfa;
}

.lang-btn.active {
    color: #ffffff;
}

.lang-btn.active::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(139, 92, 246, 0.2));
    border-radius: 7px;
    z-index: -1;
}

.lang-btn.slide-from-left.active::before {
    animation: slideInFromLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-btn.slide-from-right.active::before {
    animation: slideInFromRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Header mit coolem Effekt */
header {
    max-width: 1000px;
    margin: 5rem auto 5rem;
    padding: 0 2rem;
}

.header-content {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.4rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
    border: 1.5px solid rgba(139, 92, 246, 0.4);
    border-radius: 50px;
    font-size: 0.875rem;
    color: #c4b5fd;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
    }
    50% {
        box-shadow: 0 4px 30px rgba(139, 92, 246, 0.3);
    }
}

header h1 {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
    line-height: 1.1;
    position: relative;
    text-shadow: 
        0 0 40px rgba(139, 92, 246, 0.3),
        0 0 80px rgba(139, 92, 246, 0.15);
}

header p {
    font-size: 1.25rem;
    color: #b8b8c8;
    max-width: 680px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Main Content */
main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
}

/* Stats Section */
.stats-section {
    margin-bottom: 6rem;
    margin-top: 3rem;
    position: relative;
}

.stats-offline-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    margin: 0 auto 2rem;
    max-width: 500px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.offline-dot {
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse-red 1.5s ease-in-out infinite;
}

@keyframes pulse-red {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.offline-text {
    color: #ef4444;
    font-size: 1.1rem;
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(20, 20, 28, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.stat-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.stat-card:hover .stat-icon::before {
    opacity: 0.6;
}

.stat-card:hover .stat-icon {
    transform: translateY(-5px) rotate(5deg) scale(1.1);
    background: rgba(139, 92, 246, 0.3);
}

.stat-icon svg {
    width: 36px;
    height: 36px;
    color: #a78bfa;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon svg {
    color: #c4b5fd;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.stat-label {
    color: #9ca3af;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

section {
    margin-bottom: 6rem;
    scroll-margin-top: 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    line-height: 1.2;
    text-shadow: 
        0 0 30px rgba(139, 92, 246, 0.2),
        0 0 60px rgba(139, 92, 246, 0.1);
}

.section-header p {
    color: #b8b8c8;
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: rgba(20, 20, 28, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(139, 92, 246, 0.25);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.3), 0 5px 15px rgba(0, 0, 0, 0.2);
    background: rgba(20, 20, 28, 0.6);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover .feature-icon::before {
    opacity: 0.5;
}

.feature-card:hover .feature-icon {
    transform: translateY(-5px) scale(1.1);
    background: rgba(139, 92, 246, 0.25);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: #a78bfa;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    color: #c4b5fd;
    transform: rotate(5deg);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
    position: relative;
}

.feature-card p {
    color: #b8b8b8;
    line-height: 1.6;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: rgba(20, 20, 28, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.08);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: translateY(-5px) scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.pricing-header {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    color: #9ca3af;
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.pricing-features li {
    color: #b8b8b8;
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: 700;
    font-size: 1.2rem;
}

.pricing-btn {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 0.9rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 1.5rem;
}

.pricing-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.pricing-btn:hover::before {
    opacity: 1;
}

/* Team Section */
.team-section {
    margin: 8rem 0;
    text-align: center;
}

.team-section h2 {
    margin-top: 1rem;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #fff 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: rgba(20, 20, 28, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
}

.team-card:hover::before {
    opacity: 1;
}

.team-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.discord-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(139, 92, 246, 0.5);
    object-fit: cover;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.team-card:hover .discord-avatar {
    border-color: #8b5cf6;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.avatar-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
    animation: pulse 2s ease-in-out infinite;
    z-index: 1;
}

.discord-avatar[src]:not([src=""]) + .avatar-loader {
    display: none;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.team-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* FAQ Section */
.faq-section {
    margin: 8rem 0;
    text-align: center;
}

.faq-section h2 {
    margin-top: 1rem;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #fff 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: rgba(20, 20, 28, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.2);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    color: #a78bfa;
}

.faq-icon {
    flex-shrink: 0;
    color: #8b5cf6;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: #b8b8b8;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    color: #b8b8b8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #5865f2, #4752c4);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #6b74f5, #5865f2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(88, 101, 242, 0.4);
}

.cta-btn:hover::before {
    opacity: 1;
}

.cta-btn svg, .cta-btn span {
    position: relative;
    z-index: 1;
}

/* CTA Group */
.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-primary, .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.1rem 2.2rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.cta-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.35), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 50%, #7c3aed 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-primary:hover::before {
    opacity: 1;
}

.cta-primary:hover::after {
    width: 300px;
    height: 300px;
}

.cta-primary:active {
    transform: translateY(-1px);
}

.cta-secondary {
    background: rgba(139, 92, 246, 0.08);
    color: #c4b5fd;
    border: 2px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.25);
}

.cta-primary svg, .cta-primary span,
.cta-secondary span {
    position: relative;
    z-index: 1;
}

/* Footer Sections */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    text-align: left;
    margin-bottom: 3rem;
}

.footer-section p {
    color: #9ca3af;
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #a78bfa;
    margin-bottom: 1rem;
}

.footer-links {
    display: contents;
}

.footer-column h4 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-column a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 0.7rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #a78bfa;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, #e0d4ff 40%, #c4b5fd 70%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-header p {
    color: #b8b8c8;
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.last-updated {
    color: #6b7280;
    font-size: 0.9rem;
}

.section {
    background: rgba(20, 20, 28, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
}

.section:hover::before {
    opacity: 1;
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.section:hover .icon-wrapper::before {
    opacity: 0.5;
}

.section:hover .icon-wrapper {
    transform: translateY(-5px) scale(1.1);
    background: rgba(139, 92, 246, 0.25);
}

.icon-wrapper.warning {
    background: rgba(139, 92, 246, 0.25);
    animation: warningPulse 2s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.section-icon {
    width: 32px;
    height: 32px;
    color: #a78bfa;
    transition: all 0.3s ease;
}

.section:hover .section-icon {
    color: #c4b5fd;
    transform: rotate(5deg);
}

.icon-wrapper.warning .section-icon {
    color: #fbbf24;
}

.section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
}

.section p {
    color: #b8b8b8;
    margin-bottom: 0.8rem;
}

.section ul {
    margin-left: 1.5rem;
    color: #b8b8b8;
}

.section li {
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 0.5rem;
}

.section li::marker {
    color: #8b5cf6;
}

/* Warning Box mit Special Effect */
.section.warning {
    background: rgba(139, 92, 246, 0.1);
    border-color: #8b5cf6;
    position: relative;
}

.pulse-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    border: 2px solid #8b5cf6;
    animation: pulseBorder 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseBorder {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

.section.warning h3 {
    color: #c4b5fd;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer mit Gradient */
footer {
    position: relative;
    text-align: center;
    padding: 4rem 2rem 2rem;
    color: #6b7280;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    overflow: hidden;
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.discord-widget-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.discord-widget-container iframe {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(20, 20, 28, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    color: #b8b8b8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    color: #a78bfa;
}

.social-link svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.footer-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.05) 100%);
    z-index: 0;
}

footer p {
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 10, 15, 0.8);
    border-radius: 10px;
    margin: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
    border-radius: 10px;
    border: 3px solid rgba(10, 10, 15, 0.8);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #a78bfa 0%, #8b5cf6 50%, #7c3aed 100%);
    border: 2px solid rgba(10, 10, 15, 0.8);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #c4b5fd 0%, #a78bfa 50%, #8b5cf6 100%);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #8b5cf6 rgba(10, 10, 15, 0.8);
}

/* Selection */
::selection {
    background: rgba(139, 92, 246, 0.3);
    color: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
    #bg-canvas {
        opacity: 0.3;
    }
    
    .nav-content {
        flex-direction: row;
        gap: 1rem;
    }
    
    .nav-right {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
    }
    
    .hamburger-menu-panel {
        width: 90%;
        max-width: 280px;
        right: -100%;
        top: 70px;
    }
    
    .hamburger-menu-panel.active {
        right: 5%;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(15, 15, 20, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(139, 92, 246, 0.3);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 100;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 1rem 0;
        width: 100%;
    }
    
    .discord-link {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem !important;
    }
    
    .discord-status {
        padding-left: 0;
        border-left: none;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(88, 101, 242, 0.3);
    }
    
    .language-switcher {
        margin-top: 1rem;
    }
    
    header h1 {
        font-size: 2.5rem;
    }
    
    header p {
        font-size: 1rem;
    }
    
    .nav-links {
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }
    
    .section {
        padding: 1.5rem;
    }
    
    .section h3 {
        font-size: 1.2rem;
    }
    
    .content h2 {
        font-size: 2rem;
    }
    
    main {
        padding: 0 1.5rem 3rem;
    }
    
    header {
        margin: 3rem auto 2rem;
        padding: 0 1.5rem;
    }
    
    .icon-wrapper {
        width: 48px;
        height: 48px;
    }
    
    .section-icon {
        width: 28px;
        height: 28px;
    }
    
    .discord-widget-container iframe {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        width: 24px;
        height: 24px;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .discord-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}

