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

body, html {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #2d1b3d 0%, #3d2847 100%);
    background-attachment: fixed;
    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;
    padding-top: 40px;
    transition: opacity 0.5s ease-in;
    width: 100%;
    flex-direction: row;
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .slideshow-container {
        flex-direction: column;
        padding-top: 30px;
    }
}

.slideshow-container.hidden {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.slideshow-wrapper {
    max-width: 700px;
    width: 100%;
    text-align: center;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
    align-self: flex-start;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 50px;
}

@media (max-width: 1200px) {
    .slideshow-wrapper {
        max-width: 900px;
        position: static;
        max-height: none;
        overflow-y: visible;
    }
}

/* 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 h2 {
    color: #ff1493;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(255, 20, 147, 0.3);
}

.game-title p {
    color: #e0e0e0;
    font-size: 18px;
    font-weight: 300;
}

.subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: -10px;
}

/* 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: 340px;
    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;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff1493, #d1477a);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.links-row {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.text-link {
    color: #ff8fb3;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.text-link:hover {
    color: #ff69b4;
    text-decoration: underline;
}

.link-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* Content Section */
.content-section {
    background: transparent;
    padding: 40px 20px;
    color: #fff;
    width: 100%;
    max-width: 900px;
}

@media (max-width: 1200px) {
    .content-section {
        max-width: 100%;
        padding: 60px 20px;
    }
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.content-section section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff6b9d;
    text-align: center;
}

.content-section h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ff8fb3;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    text-align: left;
    margin: 0 0 20px;
}

.content-warning {
    background: rgba(255, 107, 157, 0.15);
    border-left: 4px solid #ff6b9d;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 25px !important;
    font-size: 1rem !important;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background: rgba(255, 107, 157, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 157, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.feature h3 {
    text-align: center;
    margin-bottom: 15px;
}

.feature p {
    font-size: 1rem;
    text-align: left;
}

/* Screenshots Section */
.screenshots-section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.screenshots-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 40px;
}

.phone-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.phone-mockup {
    flex: 0 0 auto;
}

.phone-frame {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 35px;
    padding: 15px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 8px #0a0a0a,
        0 0 0 10px #3a3a3a;
    position: relative;
    width: 280px;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: #1a1a1a;
    border-radius: 10px;
    z-index: 10;
}

.phone-frame img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    display: block;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .phone-gallery {
        gap: 30px;
    }
    
    .phone-frame {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .phone-gallery {
        gap: 35px;
    }
    
    .phone-frame {
        width: 200px;
    }
}

/* 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;
        padding-top: 40px;
    }
    
    .game-title h1 {
        font-size: 36px;
    }
    
    .game-title h2 {
        font-size: 20px;
    }
    
    .game-title p {
        font-size: 16px;
    }
    
    .btn-primary {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
    
    .btn-secondary {
        padding: 10px 30px;
        font-size: 0.95rem;
    }
    
    .text-link {
        font-size: 0.9rem;
    }
    
    .slide img {
        min-height: 250px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .slideshow-wrapper {
        padding: 0 10px;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .game-title h1 {
        font-size: 28px;
    }
    
    .game-title h2 {
        font-size: 18px;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .btn-secondary {
        padding: 8px 25px;
        font-size: 0.85rem;
    }
    
    .links-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .link-separator {
        display: none;
    }
    
    .text-link {
        font-size: 0.85rem;
    }
    
    .phone-gallery {
        gap: 30px;
    }
    
    .phone-frame {
        width: 180px;
    }
    
    .slide img {
        min-height: 200px;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .phone-frame {
        width: 160px;
    }
    
    .screenshots-intro {
        font-size: 1rem;
    }
} 