.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 100vh;
    padding: 120px 5% 60px;
    gap: 60px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: #00bfff;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-tagline {
    font-size: clamp(18px, 2vw, 26px);
    color: #c0ccff;
    font-style: italic;
    margin-bottom: 32px;
}

.hero-tagline .red {
    color: #e05555;
}

.hero-media {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    border: 1px solid rgba(100, 140, 255, 0.2);
    position: relative;
}

.hero-media section {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-track img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 1;
}

.carousel-track img.prev {
    transform: translate(calc(-50% - 140px), -50%) scale(0.8);
    opacity: 0.5;
    z-index: 0;
}

.carousel-track img.center {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    z-index: 2;
}

.carousel-track img.next {
    transform: translate(calc(-50% + 140px), -50%) scale(0.8);
    opacity: 0.5;
    z-index: 0;
}

.section-divider {
    width: 100vw;
    height: 1px;
    background: rgba(100, 140, 255, 0.15);
}

.cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid #e05555;
    color: #e05555;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.cta-btn:hover {
    background: #e05555;
    color: #fff;
}

/* Featured game */
.featured-game {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 5%;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.featured-game.visible {
    opacity: 1;
    transform: translateY(0);
}

.featured-label {
    font-size: 13px;
    color: #e05555;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.featured-game h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #e8eaf6;
    margin-bottom: 6px;
}

.featured-game .game-genre {
    font-size: 13px;
    color: #00bfff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.featured-desc {
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.8;
    color: #c0ccff;
    margin-bottom: 28px;
}

.game-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.game-btn {
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(100, 140, 255, 0.4);
    color: #c0ccff;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.game-btn:hover {
    background: rgba(100, 140, 255, 0.1);
    border-color: #7a9fd4;
    color: #e8eaf6;
}

.game-btn.primary {
    background: transparent;
    border: 1px solid #e05555;
    color: #e05555;
}

.game-btn.primary:hover {
    background: #e05555;
    color: #fff;
}

.pillars-section {
    padding: 80px 5%;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.pillars-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.pillars-section h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: #00bfff;
    margin-bottom: 48px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pillar-card {
    background: rgba(10, 18, 40, 0.5);
    border: 1px solid rgba(100, 140, 255, 0.12);
    border-left: 3px solid #00bfff;
    border-radius: 0 12px 12px 0;
    padding: 28px 24px;
    text-align: left;
}

.pillar-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #e8eaf6;
    margin-bottom: 10px;
}

.pillar-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #c0ccff;
}

.about-teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 80px 5%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.about-teaser.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-teaser-image {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid rgba(100, 140, 255, 0.2);
}

.about-teaser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-teaser-content h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #00bfff;
    margin-bottom: 16px;
}

.about-teaser-content p {
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.8;
    color: #c0ccff;
    margin-bottom: 28px;
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 140px 5% 60px;
        text-align: center;
    }

    .hero-media {
        order: -1;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .about-teaser {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-teaser-image {
        order: -1;
    }
}

@media (max-width: 600px) {
    .featured-game,
    .pillars-section,
    .about-teaser {
        padding: 60px 5%;
    }

    .game-buttons {
        flex-direction: column;
        align-items: center;
    }

    .game-btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }
}