:root {
    --primary: #14F195;
    --secondary: #9945FF;
    --background: #050505;
    --surface: #121212;
    --text: #ffffff;
    --text-dim: #a0a0a0;
    --glow: rgba(20, 241, 149, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.lang-switcher {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-size: 10px;
    font-weight: 900;
    padding: 4px 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.lang-btn.active {
    background: var(--primary);
    color: black;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 4px 20px var(--glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 24px;
}

.highlight {
    color: var(--secondary);
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
}

.image-wrapper {
    position: relative;
    border-radius: 32px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(20, 241, 149, 0.2), rgba(153, 69, 255, 0.2));
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
    z-index: -1;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.section-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(20, 241, 149, 0.1);
    color: var(--primary);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    margin-top: 32px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
}

.feature-list span {
    color: var(--primary);
    font-weight: 900;
}

/* Scenarios Section */
.scenarios-section {
    padding: 100px 0;
}

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

.section-intro h2 {
    margin-bottom: 16px;
}

.section-intro p {
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
}

.scenario-gallery {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.scenario-card {
    background: var(--surface);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.scenario-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.scenario-img {
    position: relative;
    aspect-ratio: 16 / 7;
}

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

.scenario-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
}

.scenario-label {
    padding: 4px 10px;
    background: var(--primary);
    color: #000;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.scenario-label.cyber {
    background: var(--secondary);
    color: #fff;
}

.scenario-label.mars {
    background: #ff5722;
    color: #fff;
}

.scenario-label.spain {
    background: #f44336;
    color: #fff;
}

.scenario-info {
    padding: 24px;
}

.scenario-info h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.scenario-info p {
    color: var(--text-dim);
    font-size: 14px;
}

/* Rules Section */
.rules-section {
    padding: 100px 0;
}

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

.rules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.rule-card {
    background: var(--surface);
    padding: 48px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.rule-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.rule-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.rule-card p {
    color: var(--text-dim);
    margin-bottom: 32px;
}

.prize-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prize-bar span {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-dim);
}

.bar-total {
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    display: flex;
    align-items: center;
    padding-left: 12px;
    font-weight: 700;
    font-size: 12px;
}

.tiers-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 12px;
}

.tiers-table th {
    text-align: left;
    color: var(--text-dim);
    font-size: 12px;
    text-transform: uppercase;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tiers-table td {
    padding: 16px 0;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-note {
    font-size: 12px;
    font-style: italic;
    color: var(--text-dim) !important;
}

/* Footer */
.footer {
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 24px;
}

.footer-logo span {
    color: var(--primary);
}

.footer-content p {
    max-width: 400px;
    color: var(--text-dim);
    margin-bottom: 32px;
}

.social-links {
    display: flex;
    gap: 24px;
}

.social-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: var(--text-dim);
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {

    .hero-grid,
    .about-grid,
    .rules-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 48px;
    }

    .hero {
        padding-top: 120px;
    }

    .nav-links {
        display: none;
    }
}