* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
}

body {
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a2e 0%, #16213e 100%);
}

.container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
}

/* Top Section */
.top-section {
    flex: 0.25;
    background: linear-gradient(90deg, #0f3460 0%, #16213e 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.main-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tagline {
    font-size: 20px;
    color: #00d4ff;
    font-weight: bold;
}

/* Center Section */
.center-section {
    flex: 0.5;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #1a0a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

/* Falling Photos */
.falling-photos-left,
.falling-photos-right {
    position: absolute;
    top: 0;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}

.falling-photos-left {
    left: 0;
    right: calc(50% + 180px); /* From left edge to left of carousel (300px/2 + 30px gap) */
}

.falling-photos-right {
    left: calc(50% + 180px); /* From right of carousel to right edge */
    right: 0;
}

.falling-photo {
    position: absolute;
    width: 140px;
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    opacity: 0.5;
    filter: blur(2px);
    animation: fall linear;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
    cursor: pointer;
    pointer-events: auto;
}

.falling-photo:hover {
    animation-play-state: paused;
    opacity: 0.8;
}

@keyframes fall {
    0% {
        top: -200px;
        transform: rotate(0deg);
    }
    100% {
        top: 100%;
        transform: rotate(360deg);
    }
}

.image-container {
    position: relative;
    flex-shrink: 0;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: 2px solid #00d4ff;
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    font-size: 26px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-nav.prev-nav {
    left: 10px;
}

.carousel-nav.next-nav {
    right: 10px;
}

.carousel-nav:hover {
    background: #00d4ff;
    color: #000;
    transform: translateY(-50%) scale(1.15);
}

.image-carousel {
    position: relative;
    width: 300px;
    height: 380px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #00d4ff;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.carousel-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: all 0.8s ease;
    filter: blur(10px);
}

.carousel-image.active {
    opacity: 1;
}

.image-carousel:hover .carousel-image {
    filter: blur(1px);
}

.image-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(90deg, #00d4ff, #0099ff);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.info-box {
    background: rgba(0, 212, 255, 0.1);
    border-left: 4px solid #00d4ff;
    padding: 20px;
    border-radius: 8px;
}

.info-number {
    font-size: 28px;
    font-weight: 900;
    color: #00d4ff;
    margin-bottom: 5px;
    font-family: 'Courier New', monospace;
}

.info-text {
    font-size: 12px;
    color: #aaa;
    text-transform: uppercase;
}

/* Bottom Section */
.bottom-section {
    flex: 0.25;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(90deg, #0f3460 0%, #16213e 100%);
}

.description {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(90deg, #00d4ff, #0099ff);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
}

/* Age Verification */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.age-verification:target {
    opacity: 1;
    pointer-events: all;
}

.age-modal {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.7);
}

.age-modal h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 900;
    color: #000;
}

.age-modal p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #000;
}

.age-buttons {
    display: flex;
    gap: 15px;
}

.btn-yes, .btn-no {
    flex: 1;
    padding: 16px 30px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-yes {
    background: #00ff00;
    color: #000;
}

.btn-yes:hover {
    background: #00dd00;
    transform: scale(1.05);
}

.btn-no {
    background: #ff0000;
    color: #fff;
}

.btn-no:hover {
    background: #dd0000;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .center-section {
        flex-direction: column;
        gap: 20px;
    }

    .center-image {
        width: 250px;
        height: 320px;
    }

    .main-title {
        font-size: 32px;
    }
}
