/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --yellow: #fbbf24;
    --yellow-dark: #d97706;
    --yellow-glow: rgba(251, 191, 36, 0.4);
    --orange: #f97316;
    --discord: #5865f2;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-hover: rgba(255, 255, 255, 0.06);
    --gradient-yellow: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-darker);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== ANIMATED BACKGROUND ===== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #fbbf24 0%, transparent 70%);
    top: -10%;
    right: -10%;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #d97706 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #fcd34d 0%, transparent 70%);
    top: 40%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: particleFloat linear infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: relative;
    z-index: 100;
    padding: 1.5rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

.nav-btn,
.discord-btn,
.shop-btn {
    text-decoration: none;
}

.nav-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: var(--glass-hover);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.discord-btn {
    background: var(--discord);
    border: 2px solid var(--discord);
    padding: 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.discord-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.discord-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.shop-btn {
    background: var(--yellow);
    border: 2px solid var(--yellow);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.813rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-btn:hover {
    transform: translateY(-2px);
    background: var(--yellow-dark);
}

/* ===== HERO SECTION ===== */
.creators-hero {
    position: relative;
    z-index: 10;
    padding: 6rem 0 4rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-yellow);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.813rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== SECTION TITLE ===== */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    position: relative;
    z-index: 10;
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    background: var(--glass-hover);
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.benefit-desc {
    color: var(--text-secondary);
    font-size: 0.938rem;
    line-height: 1.6;
}

/* ===== REQUIREMENTS SECTION ===== */
.requirements-section {
    position: relative;
    z-index: 10;
    padding: 4rem 0;
}

.requirements-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.highlight {
    color: var(--yellow);
    font-weight: 700;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.requirement-card {
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 4px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.requirement-card:hover {
    background: var(--glass-hover);
    transform: translateY(-5px);
}

.platform-tiktok:hover {
    border-color: #ff0050;
}

.platform-youtube:hover {
    border-color: #ff0000;
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--glass-border);
}

.platform-icon {
    font-size: 2.5rem;
}

.platform-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.requirement-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.requirement-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.check-icon {
    background: var(--yellow);
    color: #000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
}

.requirement-text {
    color: var(--text-secondary);
    font-size: 0.938rem;
    line-height: 1.6;
}

.requirement-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

.ip-highlight {
    color: var(--yellow);
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.requirement-note {
    background: rgba(251, 191, 36, 0.1);
    border-left: 3px solid var(--yellow);
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ===== CREATOR CODES SECTION ===== */
.creator-codes-section {
    position: relative;
    z-index: 10;
    padding: 4rem 0;
}

.codes-banner {
    background: var(--gradient-yellow);
    border-radius: 4px;
    padding: 3rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.codes-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.codes-content {
    flex: 1;
}

.codes-title {
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.codes-description {
    color: #000;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.codes-description .highlight {
    color: #000;
    font-weight: 800;
    text-decoration: underline;
}

.codes-note {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    font-size: 0.938rem;
    color: #000;
}

.codes-note strong {
    font-weight: 800;
}

/* ===== HOW TO APPLY SECTION ===== */
.apply-section {
    position: relative;
    z-index: 10;
    padding: 4rem 0;
}

.apply-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.step-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 2rem 1.5rem;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.step-card:hover {
    background: var(--glass-hover);
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.step-number {
    background: var(--gradient-yellow);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 900;
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--yellow);
    font-weight: 900;
}

.apply-cta {
    text-align: center;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 0.938rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

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

.cta-primary {
    background: var(--discord);
    color: white;
    border: 2px solid var(--discord);
}

.cta-primary:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    position: relative;
    z-index: 10;
    padding: 4rem 0 6rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--yellow);
    border-radius: 4px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-card:hover {
    background: var(--glass-hover);
    transform: translateX(5px);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 0.938rem;
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0 2rem;
    backdrop-filter: blur(10px);
}

.footer-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-disclaimer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.75rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .nav-center {
        order: -1;
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .step-arrow {
        display: none;
    }

    .apply-steps {
        flex-direction: column;
    }

    .step-card {
        max-width: 100%;
    }

    .codes-banner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-btn {
        padding: 0.625rem 1rem;
        font-size: 0.75rem;
    }

    .nav-btn svg {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefits-grid,
    .requirements-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .codes-banner {
        padding: 2rem;
    }

    .codes-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.25rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .benefit-card,
    .requirement-card,
    .faq-card {
        padding: 1.5rem;
    }
}