header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem 2rem;
    background: #1e1e1e;
    height: 70px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

header .logo {
    max-width: 100px;
    margin-top: 45px;
    height: auto;
    transition: transform 0.2s ease;
}

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

.game-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

/* Hero section with enhanced styling */
.hero {
    flex: none;
    max-width: 100%;
    text-align: center;
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Carousel container */
.carousel-contain {
    position: relative;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide {
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-image {
    height: 520px;
    width: auto;
    display: block;
    border-radius: 0.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    max-width: 100%;
}

/* Carousel navigation arrows */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(212, 175, 55, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

/* Carousel dots */
.dots {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 0.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover,
.carousel-dot.active {
    background: #D4AF37;
    transform: scale(1.2);
}



/* Enhanced content capsule */
.capsule {
    background: linear-gradient(135deg, #fdfbf7 0%, #f5f1e8 100%);
    border-radius: 1.25rem;
    padding: 2rem 3rem 2.5rem;
    flex: none;
    max-width: 800px;
    width: 800px;
    box-sizing: border-box;
    color: #2b2b2b;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.capsule::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    border-radius: 1.25rem 1.25rem 0 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .game-page {
        margin: 2rem auto;
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .hero {
        padding: 1rem;
    }
    
    .slide {
        min-height: 400px;
    }
    
    .hero-image {
        max-width: calc(100vw - 4rem);
        width: auto;
        height: auto;
        max-height: 400px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .capsule {
        max-width: calc(100vw - 2rem);
        width: calc(100vw - 2rem);
        padding: 1.5rem;
    }
}

.capsule h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.game-description p {
    font-size: 1.15rem;     
    line-height: 1.6;      
    font-weight: 400;        
    color: #444;           
    letter-spacing: 0.3px;  
    max-width: 680px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    margin-bottom: 2.5rem;
}

.game-features {
    font-family: "Helvetica Neue", Arial, sans-serif;
    margin-bottom: 2.5rem;
    background: rgba(212, 175, 55, 0.12);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid #D4AF37;
}

.game-features h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.game-features ul {
    margin: 0;
    padding-left: 1.5rem;
}

.game-features li {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0.5rem;
}

.play-button {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
}

.play-link {
    font-family: "Helvetica Neue", Arial, sans-serif;
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fdf6e3;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.play-link:hover::before {
    left: 100%;
}

.play-link:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #b8941f 100%);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border-color: #D4AF37;
}