* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Verification Overlay */
.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 182, 193, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.5s ease-in;
}

.age-content {
    background: linear-gradient(135deg, #fff 0%, #ffeef8 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.3);
    border: 2px solid #ff69b4;
    max-width: 400px;
    width: 90%;
}

.age-content h2 {
    color: #d1477a;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.age-content p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-enter, .btn-leave {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.btn-enter {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
}

.btn-enter:hover {
    background: linear-gradient(135deg, #ff1493, #d1477a);
    transform: translateY(-2px);
}

.btn-leave {
    background: #f0f0f0;
    color: #666;
    border: 2px solid #ddd;
}

.btn-leave:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

/* Slideshow Container */
.slideshow-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: opacity 0.5s ease-in;
    width: 100%;
}

.slideshow-container.hidden {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.slideshow-wrapper {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

/* Game Title */
.game-title {
    margin-bottom: 40px;
}

.game-title h1 {
    color: #ff69b4;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.game-title p {
    color: #666;
    font-size: 18px;
    font-weight: 300;
}

/* Slideshow */
.slideshow {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(255, 105, 180, 0.4);
}

.slide {
    display: none;
    width: 100%;
    animation: slideIn 0.5s ease-in-out;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

/* Slideshow Navigation Dots */
.slideshow-dots {
    text-align: center;
    margin-bottom: 40px;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #ff69b4;
}

.dot.active,
.dot:hover {
    background-color: #ff69b4;
    transform: scale(1.2);
}

/* Play Button */
.play-button-container {
    margin-top: 30px;
}

.play-button {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
    border: none;
    cursor: pointer;
}

.play-button:hover {
    background: linear-gradient(135deg, #ff1493, #d1477a);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.5);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateX(30px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .slideshow-container {
        padding: 10px;
    }
    
    .game-title h1 {
        font-size: 36px;
    }
    
    .game-title p {
        font-size: 16px;
    }
    
    .play-button {
        padding: 15px 35px;
        font-size: 20px;
    }
    
    .slide img {
        min-height: 250px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .slideshow-wrapper {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .game-title h1 {
        font-size: 28px;
    }
    
    .play-button {
        padding: 12px 25px;
        font-size: 18px;
    }
    
    .slide img {
        min-height: 200px;
    }
} 