/* ============================================
   PREMIUM ATG HUB - MAIN CSS (ALL PAGES)
   Combined CSS for all pages
   ============================================ */

/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --premium-glow: 0 0 40px rgba(102, 126, 234, 0.4);
    --card-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   PREMIUM ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) rotate(2deg);
    }
    66% {
        transform: translateY(-8px) rotate(-2deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.3),
                    0 0 40px rgba(102, 126, 234, 0.2),
                    inset 0 0 20px rgba(255, 255, 255, 0.05);
    }
    50% {
        box-shadow: 0 0 40px rgba(102, 126, 234, 0.6),
                    0 0 80px rgba(102, 126, 234, 0.4),
                    inset 0 0 30px rgba(255, 255, 255, 0.1);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes waveSlide {
    0%, 100% {
        transform: translateX(-10%) translateY(0) rotate(0deg);
    }
    50% {
        transform: translateX(10%) translateY(-5%) rotate(2deg);
    }
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 48% 52% 60% 40% / 50% 40% 60% 50%;
    }
    33% {
        transform: translate(30px, -20px) scale(1.1);
        border-radius: 52% 48% 40% 60% / 60% 50% 40% 50%;
    }
    66% {
        transform: translate(-20px, 30px) scale(0.9);
        border-radius: 40% 60% 50% 48% / 45% 60% 40% 55%;
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes cardPulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(102, 126, 234, 0.1);
    }
    50% {
        border-color: rgba(102, 126, 234, 0.3);
    }
}

/* ============================================
   LOADING SCREEN - IMPROVED & PREMIUM
   ============================================ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0014 0%, #1a0a2e 50%, #0a0014 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.loading-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(118, 75, 162, 0.15) 0%, transparent 50%);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
}

.loader-container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.premium-loader {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.4));
}

.loader-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: #667eea;
    border-right-color: rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: rotate 1s linear infinite;
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.3);
}

.loader-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-top-color: #764ba2;
    border-right-color: rgba(118, 75, 162, 0.3);
    animation-duration: 1.3s;
    animation-direction: reverse;
    box-shadow: 0 0 15px rgba(118, 75, 162, 0.3);
}

.loader-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-top-color: #f093fb;
    border-right-color: rgba(240, 147, 251, 0.3);
    animation-duration: 1.6s;
    box-shadow: 0 0 15px rgba(240, 147, 251, 0.3);
}

.loader-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-top: 30px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #667eea);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 2s ease infinite;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.5));
    position: static;
    display: block;
}

.loading-progress {
    width: 350px;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    margin: 20px auto 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
    width: 0%;
    transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 0 20px rgba(102, 126, 234, 0.6),
        0 0 40px rgba(118, 75, 162, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    position: relative;
    border-radius: 10px;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%);
    animation: progressShine 1.2s ease-in-out infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ============================================
   PARTICLES BACKGROUND
   ============================================ */
.particles-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ============================================
   BASE STYLES
   ============================================ */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
    padding: 10px;
    position: relative;
    overflow-x: hidden;
    max-width: 100vw;
    font-weight: 400;
    letter-spacing: -0.01em;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(240, 147, 251, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: gradientShift 20s ease infinite;
}

/* ============================================
   PREMIUM NAVIGATION
   ============================================ */
nav.premium-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 700;
    transition: transform 0.3s var(--transition-smooth);
    cursor: pointer;
    position: relative;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
    filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.3));
}

.logo:hover .logo-icon img {
    filter: drop-shadow(0 6px 20px rgba(102, 126, 234, 0.6));
    transform: translateY(-2px);
}

.logo-glow {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 16px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.2) 50%, transparent 70%);
    opacity: 0.5;
    filter: blur(20px);
    z-index: -1;
    animation: logoGlowPulse 3s ease-in-out infinite;
}

@keyframes logoGlowPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.logo:hover .logo-glow {
    opacity: 0.8;
    animation: logoGlowPulse 2s ease-in-out infinite;
}

.logo-text {
    background: linear-gradient(135deg, #ffffff 0%, #e8eeff 100%);
    background-size: 100% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.logo:hover .logo-text {
    background: linear-gradient(135deg, #ffffff 0%, #667eea 50%, #764ba2 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-link {
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    font-size: 16px;
    font-weight: 500;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: all 0.3s var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link.active {
    color: #ffffff;
}

.nav-link.active::before {
    width: 100%;
}

.discord-btn {
    position: relative;
    color: white;
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s var(--transition-bounce);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 1px solid rgba(102, 126, 234, 0.3);
    font-weight: 600;
    overflow: hidden;
}

.discord-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.discord-btn:hover::before {
    left: 100%;
}

.discord-btn:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4), rgba(118, 75, 162, 0.4));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    border-color: rgba(102, 126, 234, 0.6);
}

.discord-btn img {
    width: 22px;
    height: 22px;
    transition: transform 0.3s var(--transition-bounce);
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.discord-btn:hover img {
    transform: scale(1.2) rotate(10deg);
}

.btn-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.discord-btn:hover .btn-glow {
    opacity: 0.6;
    animation: pulse 2s ease infinite;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 10px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.lang-switcher:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

.lang-icon {
    font-size: 20px;
}

.lang-code {
    font-size: 13px;
    font-weight: 600;
    color: #667eea;
    text-transform: uppercase;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.container {
    max-width: 1400px;
    margin: 40px auto;
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.hero-section {
    position: relative;
    margin-bottom: 40px;
}

.hero-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    animation: pulse 4s ease infinite;
    z-index: -1;
}

h1 {
    font-size: 64px;
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
}

.text-gradient {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #667eea 50%, #764ba2 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    font-weight: 800;
}

.text-gradient-alt {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
    font-weight: 800;
}

.subtitle {
    color: #a0a0a0;
    font-size: 20px;
    margin-bottom: 50px;
    font-weight: 400;
    line-height: 1.6;
}

/* ============================================
   PREMIUM CARDS
   ============================================ */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.premium-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 45px 35px;
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    animation: cardPulse 6s ease-in-out infinite;
}

.premium-card:nth-child(1) {
    animation-delay: 0s;
}

.premium-card:nth-child(2) {
    animation-delay: 2s;
}

.premium-card:nth-child(3) {
    animation-delay: 4s;
}

.card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border-radius: 28px;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.5s ease;
    z-index: -1;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.premium-card:hover .card-shine {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.premium-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.25);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2),
                0 0 30px rgba(102, 126, 234, 0.1);
}

.premium-card:hover .card-glow {
    opacity: 1;
    animation: pulse 2s ease infinite;
}

.premium-card.featured {
    border: 2px solid rgba(240, 147, 251, 0.4);
    background: linear-gradient(145deg, rgba(20, 15, 25, 0.9) 0%, rgba(15, 10, 20, 0.95) 100%);
}

.premium-card.featured .card-glow {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(245, 87, 108, 0.2));
}

.premium-card.active {
    border: 2px solid rgba(79, 172, 254, 0.4);
}

.premium-card.active .card-glow {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), rgba(0, 242, 254, 0.2));
}

.featured-badge,
.active-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.featured-badge {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.3), rgba(245, 87, 108, 0.3));
    border: 1px solid rgba(240, 147, 251, 0.5);
    color: #f093fb;
    animation: pulse 2s ease infinite;
}

.active-badge {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.3), rgba(0, 242, 254, 0.3));
    border: 1px solid rgba(79, 172, 254, 0.5);
    color: #4facfe;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #4facfe;
    border-radius: 50%;
    animation: pulse 1.5s ease infinite;
    box-shadow: 0 0 10px rgba(79, 172, 254, 0.8);
}

.card-status {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #808080;
    backdrop-filter: blur(10px);
}

.card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s var(--transition-bounce);
}

.premium-card:hover .card-icon {
    animation: float 4s ease-in-out infinite;
}

.card-icon img {
    width: 100%;
    height: auto;
    transition: all 0.5s var(--transition-bounce);
    filter: drop-shadow(0 10px 30px rgba(102, 126, 234, 0.3));
}

.premium-card:hover .card-icon img {
    transform: scale(1.15) rotate(8deg);
    filter: drop-shadow(0 20px 50px rgba(102, 126, 234, 0.6));
}

.icon-particles {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.premium-card:hover .icon-particles {
    opacity: 1;
    animation: pulse 2s ease infinite;
}

.card h2 {
    font-size: 32px;
    margin-bottom: 18px;
    color: #ffffff;
    transition: all 0.4s ease;
    font-weight: 700;
}

.premium-card:hover h2 {
    transform: translateX(8px);
    background: linear-gradient(135deg, #ffffff, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-description {
    color: #a0a0a0;
    margin-bottom: 30px;
    line-height: 1.7;
    transition: color 0.3s ease;
    font-size: 15px;
}

.premium-card:hover .card-description {
    color: #c0c0c0;
}

.features {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
}

.features li {
    color: #b0b0b0;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s var(--transition-smooth);
    transform: translateX(0);
    font-size: 15px;
}

.premium-card:hover .features li {
    transform: translateX(10px);
    color: #e0e0e0;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    color: #667eea;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.premium-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4), rgba(118, 75, 162, 0.4));
    border-color: rgba(102, 126, 234, 0.6);
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.5);
}

.card a {
    text-decoration: none;
}

/* ============================================
   PREMIUM BUTTONS
   ============================================ */
.premium-btn {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    color: white;
    padding: 16px 45px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s var(--transition-bounce);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(102, 126, 234, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

.premium-btn:hover::before {
    left: 100%;
}

.premium-btn:hover {
    transform: scale(1.08) translateY(-3px);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.premium-btn.active {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), rgba(0, 242, 254, 0.2));
    border-color: rgba(79, 172, 254, 0.5);
}

.premium-btn.active:hover {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.4), rgba(0, 242, 254, 0.4));
    border-color: rgba(79, 172, 254, 0.8);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.4);
}

.premium-btn:active {
    transform: scale(0.95) translateY(0);
}

.premium-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Yellow button for ad requirement */
.premium-btn.waiting-ads {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.premium-btn.waiting-ads:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-color: rgba(251, 191, 36, 0.8);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
    transform: scale(1.08) translateY(-3px);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    transition: transform 0.3s var(--transition-bounce);
    font-size: 20px;
}

.premium-btn:hover .btn-icon {
    transform: translateX(5px);
}

.btn-ripple {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}

.premium-btn:active .btn-ripple {
    animation: ripple 0.6s ease-out;
}

/* ============================================
   FOOTER (ENHANCED)
   ============================================ */
footer {
    margin-top: 40px;
    padding: 60px 20px 30px;
    background: linear-gradient(180deg,
        rgba(10, 10, 10, 0.8) 0%,
        rgba(7, 7, 7, 0.95) 60%,
        #050505 100%
    );
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 10;
    overflow: visible;
}

footer::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background:
        radial-gradient(600px 250px at 10% 30%, rgba(102, 126, 234, 0.06) 0%, transparent 20%),
        radial-gradient(500px 220px at 85% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 18%);
    transform: translateZ(0);
    filter: blur(40px) saturate(120%);
    opacity: 0.9;
    z-index: 0;
    animation: waveSlide 20s ease-in-out infinite;
    pointer-events: none;
}

footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.03) 45%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.03) 55%,
        rgba(255, 255, 255, 0) 100%);
    background-size: 120% 100%;
    transform: translateX(-30%);
    z-index: 1;
    mix-blend-mode: overlay;
    pointer-events: none;
    animation: shimmer 8s linear infinite;
    opacity: 0.8;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.footer-blob {
    position: absolute;
    width: 250px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%,
        rgba(102, 126, 234, 0.2),
        rgba(102, 126, 234, 0.1) 35%,
        transparent 60%
    );
    border-radius: 48% 52% 60% 40% / 50% 40% 60% 50%;
    filter: blur(25px);
    z-index: 1;
    pointer-events: none;
    animation: blobFloat 12s ease-in-out infinite;
    opacity: 0.8;
    will-change: transform;
}

.footer-blob.one {
    left: 5%;
    top: 10%;
    animation-duration: 14s;
}

.footer-blob.two {
    right: 8%;
    top: 15%;
    animation-duration: 16s;
}

.footer-section {
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p,
.footer-section a {
    color: #a0a0a0;
    text-decoration: none;
    line-height: 2;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    padding-left: 0;
}

.footer-section a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #667eea;
}

.footer-section a:hover {
    color: #ffffff;
    transform: translateX(10px);
    padding-left: 20px;
}

.footer-section a:hover::before {
    opacity: 1;
    left: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    position: relative;
    z-index: 2;
}

.social-link {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.4s var(--transition-bounce);
    backdrop-filter: blur(10px);
    overflow: visible;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.social-link:hover::before {
    opacity: 0.8;
    animation: pulse 2s ease infinite;
}

.social-link:hover {
    transform: scale(1.15);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    box-shadow: 0 10px 35px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

.social-link img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.social-link:hover img {
    transform: translate(-50%, -50%) scale(1.15);
    filter: drop-shadow(0 8px 20px rgba(102, 126, 234, 0.5));
}

.social-tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: rgba(10, 10, 10, 0.95);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--transition-bounce);
    border: 1px solid rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
}

.social-link:hover .social-tooltip {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #707070;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.glow-wrap {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    margin-top: 5px;
}

.glow-wrap::before {
    content: '';
}

.gradient-text {
    display: inline-block;
    font-weight: 700;
    background: linear-gradient(90deg,
        #e8e8ff 0%,
        #c6b8ff 28%,
        #a6ffd3 60%,
        #ffffff 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease-in-out infinite;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    border: 2px solid rgba(102, 126, 234, 0.5);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--transition-bounce);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.5), rgba(118, 75, 162, 0.5));
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.back-to-top:active {
    transform: translateY(-3px) scale(1.05);
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #000000;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #667eea, #764ba2);
    border-radius: 6px;
    border: 2px solid #000000;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #764ba2, #667eea);
}

/* ============================================
   PAGE-SPECIFIC STYLES
   ============================================ */

/* Help Page */
.help-header, .donate-header, .credits-hero {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 40px;
}

.faq-section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 800;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.3s var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 25px 30px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #667eea;
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: #667eea;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

/* Support Section */
.support-section {
    margin-bottom: 60px;
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.support-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.support-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border-radius: 24px;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.5s ease;
    z-index: -1;
}

.support-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.25);
}

.support-card:hover::before {
    opacity: 1;
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s var(--transition-bounce);
}

.support-icon.discord {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2), rgba(67, 79, 220, 0.2));
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.support-icon.youtube {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(200, 0, 0, 0.2));
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.support-icon.docs {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 1px solid rgba(102, 126, 234, 0.3);
    font-size: 40px;
}

.support-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.support-card:hover .support-icon {
    transform: scale(1.1) rotate(5deg);
}

.support-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.support-card p {
    color: #a0a0a0;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 15px;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s var(--transition-bounce);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.support-btn:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4), rgba(118, 75, 162, 0.4));
    border-color: rgba(102, 126, 234, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.support-btn .btn-icon {
    transition: transform 0.3s ease;
    font-size: 18px;
}

.support-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Donate Page */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.payment-card {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.payment-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border-radius: 24px;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.5s ease;
    z-index: -1;
}

.payment-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
}

.payment-card:hover::before {
    opacity: 1;
}

.payment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
    transition: all 0.5s var(--transition-bounce);
}

.payment-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.payment-icon span {
    font-size: 48px;
}

.payment-card:hover .payment-icon {
    transform: scale(1.1) rotate(5deg);
}

.payment-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 700;
}

.payment-description {
    color: #a0a0a0;
    margin-bottom: 25px;
    font-size: 15px;
}

.payment-address {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-address code {
    color: #667eea;
    font-size: 16px;
    font-weight: 600;
    word-break: break-all;
    background: rgba(102, 126, 234, 0.1);
    padding: 12px;
    border-radius: 8px;
    display: block;
}

.payment-address code.crypto-address {
    font-size: 13px;
}

.copy-btn {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 1px solid rgba(102, 126, 234, 0.3);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.copy-btn:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4), rgba(118, 75, 162, 0.4));
    border-color: rgba(102, 126, 234, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.copy-btn:active {
    transform: translateY(0);
}

.copy-btn.copied {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.3), rgba(0, 150, 60, 0.3));
    border-color: rgba(0, 200, 83, 0.5);
}

.copy-btn.copied .copy-text::after {
    content: ' ✓';
}

.copy-icon {
    font-size: 16px;
}

.thank-you-section {
    text-align: center;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.thank-you-section::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border-radius: 24px;
    filter: blur(15px);
    z-index: -1;
    animation: pulse 3s ease infinite;
}

.thank-you-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.thank-you-section p {
    font-size: 18px;
    color: #b0b0b0;
    line-height: 1.6;
}

/* Credits Page */
.credits-container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px 40px;
    position: relative;
    z-index: 10;
}

.credits-title {
    font-size: 64px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.credits-subtitle {
    color: #a0a0a0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.credits-section {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.credits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transition: left 0.5s ease;
}

.credits-section:hover::before {
    left: 100%;
}

.credits-section:hover {
    border-color: rgba(102, 126, 234, 0.2);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-icon {
    color: #667eea;
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.5));
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.table-container {
    overflow-x: auto;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contributors-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.contributors-table thead tr {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

.contributors-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contributors-table tbody tr {
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.contributors-table tbody tr:hover {
    background: rgba(102, 126, 234, 0.05);
    transform: translateX(5px);
}

.contributors-table tbody tr:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contributors-table td {
    padding: 20px;
}

.avatar-cell {
    width: 80px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contributors-table tbody tr:hover .avatar {
    transform: scale(1.15);
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.name-cell {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.role-cell {
    min-width: 200px;
}

.role-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.role-badge svg {
    flex-shrink: 0;
}

.role-badge.owner {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.role-badge.developer {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.role-badge.designer {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(245, 87, 108, 0.2));
    color: #f093fb;
    border: 1px solid rgba(240, 147, 251, 0.3);
}

.role-badge.contributor {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), rgba(0, 242, 254, 0.2));
    color: #4facfe;
    border: 1px solid rgba(79, 172, 254, 0.3);
}

.contributors-table tbody tr:hover .role-badge {
    transform: scale(1.05);
}

.link-cell {
    text-align: right;
}

.visit-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 10px;
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.visit-link:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.4);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.visit-link svg {
    transition: transform 0.3s ease;
}

.visit-link:hover svg {
    transform: translateX(3px) translateY(-3px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    nav.premium-nav {
        padding: 20px 30px;
    }

    .container {
        margin: 30px auto;
    }

    h1 {
        font-size: 52px;
    }

    .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .credits-title {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 5px;
    }

    nav.premium-nav {
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 15px;
        margin-top: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        padding: 12px;
        text-align: center;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }

    .discord-btn {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }

    h1 {
        font-size: 40px;
    }

    .subtitle {
        font-size: 16px;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .premium-card {
        padding: 35px 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-blob {
        display: none;
    }

    footer::before {
        filter: blur(30px);
        opacity: 0.7;
    }

    .help-header h1, .donate-header h1 {
        font-size: 42px;
    }

    .section-title {
        font-size: 32px;
    }

    .faq-question {
        padding: 20px 20px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .support-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .support-card {
        padding: 35px 25px;
    }

    .payment-methods {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .payment-card {
        padding: 35px 25px;
    }

    .payment-address code {
        font-size: 14px;
    }

    .payment-address code.crypto-address {
        font-size: 11px;
    }

    .thank-you-section {
        padding: 40px 25px;
    }

    .thank-you-section h2 {
        font-size: 28px;
    }

    .thank-you-section p {
        font-size: 16px;
    }

    .credits-container {
        margin: 20px auto;
        padding: 0 10px 20px;
    }

    .credits-title {
        font-size: 40px;
    }

    .credits-subtitle {
        font-size: 16px;
    }

    .credits-section {
        padding: 25px 15px;
        margin-bottom: 25px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .contributors-table {
        min-width: 600px;
    }

    .contributors-table th,
    .contributors-table td {
        padding: 12px;
        font-size: 14px;
    }

    .avatar {
        width: 40px;
        height: 40px;
    }

    .role-badge {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 32px;
    }

    .card h2 {
        font-size: 26px;
    }

    .premium-btn {
        padding: 14px 35px;
        font-size: 14px;
    }

    .help-header h1, .donate-header h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 26px;
    }

    .faq-question {
        font-size: 15px;
        padding: 18px 18px;
    }

    .faq-icon {
        font-size: 24px;
    }

    .support-icon {
        width: 70px;
        height: 70px;
    }

    .support-card h3 {
        font-size: 22px;
    }

    .payment-icon {
        width: 70px;
        height: 70px;
        font-size: 40px;
    }

    .payment-card h3 {
        font-size: 24px;
    }

    .credits-title {
        font-size: 32px;
    }

    .credits-hero {
        margin-bottom: 40px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .contributors-table {
        min-width: 500px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

*:focus-visible {
    outline: 2px solid #667eea;
    outline-offset: 3px;
    border-radius: 4px;
}

/* ============================================
   DISCORD JOIN BUTTON
   ============================================ */
.discord-join-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
    margin-top: 15px;
}

.discord-join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
    background: linear-gradient(135deg, #4752C4 0%, #5B6EAF 100%);
}

.discord-join-btn:active {
    transform: translateY(0);
}

.discord-join-btn img {
    filter: brightness(1.2);
}


/* ============================================
   SCRIPTS PAGE STYLES
   ============================================ */
.scripts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.script-card {
    transition: all 0.3s ease;
}

.script-card:hover {
    transform: translateY(-5px);
}

.game-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .scripts-grid {
        grid-template-columns: 1fr !important;
    }
}
