/* The Unfair Game - Landing Page Styles */

:root {
    --primary: #e94560;
    --primary-light: #fb7185;
    --primary-dark: #be123c;
    --accent: #4ade80;
    --accent-dark: #22c55e;
    --warning: #f59e0b;
    --purple: #a855f7;
    --cyan: #00d4ff;

    --bg-dark: #000000;
    --bg-card: rgba(15, 15, 15, 0.8);
    --bg-card-hover: rgba(30, 30, 30, 0.8);
    --border: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(255, 255, 255, 0.1);

    --text: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #52525b;

    --radius: 16px;
    --radius-sm: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 24px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent);
}

.nav-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--primary);
    border-radius: 100px;
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.nav-back:hover {
    color: var(--text);
    background: var(--primary);
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.4);
    transform: translateX(-4px);
}

.nav-back svg {
    transition: transform 0.3s ease;
}

.nav-back:hover svg {
    transform: translateX(-2px);
}

/* Hero Section */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

#hero-canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    opacity: 0.4;
}

.glitch-overlay {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 3px,
            rgba(233, 69, 96, 0.01) 3px,
            rgba(233, 69, 96, 0.01) 6px);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(233, 69, 96, 0.1);
    border: 1px solid rgba(233, 69, 96, 0.3);
    border-radius: 100px;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(40px, 10vw, 96px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    color: var(--text);
}

.title-line.dim {
    color: var(--text-muted);
}

.glitch-text {
    position: relative;
    color: var(--primary);
    text-shadow: 0 0 40px rgba(233, 69, 96, 0.5);
    animation: glitchFlicker 4s infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    right: 0;
    overflow: hidden;
}

.glitch-text::before {
    color: var(--cyan);
    z-index: -1;
    animation: glitch1 3s infinite;
}

.glitch-text::after {
    color: var(--accent);
    z-index: -1;
    animation: glitch2 3s infinite;
}

@keyframes glitch1 {

    0%,
    90%,
    100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }

    92% {
        clip-path: inset(20% 0 60% 0);
        transform: translate(-3px, 1px);
    }

    94% {
        clip-path: inset(50% 0 10% 0);
        transform: translate(3px, -1px);
    }

    96% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }
}

@keyframes glitch2 {

    0%,
    88%,
    100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }

    90% {
        clip-path: inset(40% 0 20% 0);
        transform: translate(2px, -2px);
    }

    93% {
        clip-path: inset(10% 0 70% 0);
        transform: translate(-2px, 2px);
    }

    95% {
        clip-path: inset(0 0 0 0);
        transform: translate(0);
    }
}

@keyframes glitchFlicker {

    0%,
    95%,
    100% {
        opacity: 1;
    }

    96% {
        opacity: 0.8;
    }

    97% {
        opacity: 1;
    }

    98% {
        opacity: 0.6;
    }

    99% {
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: clamp(15px, 2.5vw, 19px);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 100px;
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(233, 69, 96, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(233, 69, 96, 0.5);
}

.btn-primary.large {
    padding: 20px 40px;
    font-size: 16px;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

/* Trust Meter */

.trust-meter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
}

.trust-label {
    color: var(--text-muted);
    font-weight: 500;
}

.trust-bar {
    width: 120px;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.trust-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--warning));
    border-radius: 3px;
    transition: width 1s ease;
}

.trust-value {
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 600;
    min-width: 32px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 0.1em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.8);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Section Styles */

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(233, 69, 96, 0.1);
    border: 1px solid rgba(233, 69, 96, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(24px, 5vw, 38px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

/* Warnings Grid */

.warnings {
    background: linear-gradient(180deg, transparent, rgba(233, 69, 96, 0.02), transparent);
}

.warnings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.warning-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.warning-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.1);
}

.warning-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.15), rgba(168, 85, 247, 0.15));
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.warning-icon.reverse {
    color: var(--warning);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(233, 69, 96, 0.15));
}

.warning-icon.fake {
    color: var(--accent);
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(233, 69, 96, 0.15));
}

.warning-icon.hunter {
    color: var(--purple);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(233, 69, 96, 0.15));
}

.warning-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.warning-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Deception Section */

.deception-section {
    background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.02), transparent);
}

.deception-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.deception-item {
    display: flex;
    gap: 24px;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.deception-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateX(8px);
}

.deception-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    line-height: 1;
}

.deception-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.deception-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Info Section */

.info-section {
    background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.02), transparent);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.info-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.info-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
    color: var(--text);
}

.keys-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.key-group {
    display: flex;
    gap: 8px;
}

.key-box {
    min-width: 48px;
    height: 48px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.3);
}

.key-box.wide {
    min-width: 80px;
    font-size: 11px;
}

.keys-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* Rules */

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-secondary);
}

.rule-item.strikethrough span:last-child {
    text-decoration: line-through;
    color: var(--text-muted);
}

.rule-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

/* Final CTA */

.final-cta {
    padding: 120px 0;
}

.cta-content {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 16px;
}

/* Footer */

.footer {
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.footer-glitch {
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    opacity: 0.3;
    animation: footerGlitch 8s infinite;
}

@keyframes footerGlitch {

    0%,
    92%,
    100% {
        opacity: 0.3;
        transform: translate(0);
    }

    93% {
        opacity: 0.6;
        transform: translate(-2px, 0);
        color: var(--primary);
    }

    94% {
        opacity: 0.2;
        transform: translate(2px, 0);
    }

    95% {
        opacity: 0.5;
        transform: translate(0, -1px);
        color: var(--cyan);
    }

    96% {
        opacity: 0.3;
        transform: translate(0);
    }
}

/* Responsive */

@media (max-width: 768px) {
    .hero {
        padding: 100px 16px 60px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    section {
        padding: 60px 0;
    }

    .deception-item {
        flex-direction: column;
        gap: 12px;
    }

    .deception-number {
        font-size: 24px;
    }
}