* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Arial', sans-serif;
    color: #fff;
}

body {
    overflow: hidden;
}

.container {
    display: flex;
    width: 100%;
    height: 100vh;
    position: relative;
}

/* Image Side */
.image-side {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 3;
}

/* Blurred Background Images - Left Side (removed) */
.bg-image {
    display: none;
}

/* Content Side */
.content-side {
    flex: 1;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

/* Blurred Background Photos - Right Side */
.bg-photo {
    position: absolute;
    opacity: 0.2;
    filter: blur(2px);
    z-index: 0;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
}

.photo-1 {
    width: 140px;
    height: 180px;
    background-image: url('./mini/1.webp');
    top: 5%;
    left: 3%;
    transform: rotate(-8deg);
}

.photo-2 {
    width: 160px;
    height: 200px;
    background-image: url('./mini/2.webp');
    top: 8%;
    right: 5%;
    transform: rotate(12deg);
}

.photo-3 {
    width: 130px;
    height: 170px;
    background-image: url('./mini/3.webp');
    top: 35%;
    left: 8%;
    transform: rotate(-15deg);
}

.photo-4 {
    width: 150px;
    height: 190px;
    background-image: url('./mini/4.webp');
    top: 28%;
    right: 3%;
    transform: rotate(6deg);
}

.photo-5 {
    width: 145px;
    height: 185px;
    background-image: url('./mini/5.webp');
    bottom: 25%;
    left: 5%;
    transform: rotate(10deg);
}

.photo-6 {
    width: 135px;
    height: 175px;
    background-image: url('./mini/6.webp');
    bottom: 8%;
    right: 8%;
    transform: rotate(-12deg);
}

.photo-7 {
    width: 155px;
    height: 195px;
    background-image: url('./mini/7.webp');
    top: 18%;
    left: 25%;
    transform: rotate(8deg);
}

.photo-8 {
    width: 140px;
    height: 180px;
    background-image: url('./mini/8.webp');
    top: 55%;
    right: 15%;
    transform: rotate(-10deg);
}

.photo-9 {
    width: 150px;
    height: 190px;
    background-image: url('./mini/9.webp');
    bottom: 35%;
    left: 20%;
    transform: rotate(14deg);
}

.photo-10 {
    width: 145px;
    height: 185px;
    background-image: url('./mini/10.webp');
    bottom: 15%;
    right: 25%;
    transform: rotate(-7deg);
}

.content-wrapper {
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 24px;
    color: #ff1744;
    margin-bottom: 30px;
    font-weight: bold;
}

.stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: #ff1744;
}

.stat-label {
    font-size: 12px;
    color: #aaa;
    text-transform: uppercase;
    margin-top: 5px;
}

.timer-block {
    background: rgba(255, 23, 68, 0.15);
    border-left: 4px solid #ff1744;
    padding: 20px;
    margin-bottom: 30px;
}

.timer-label {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 8px;
}

.timer {
    font-size: 36px;
    font-weight: 900;
    color: #ff1744;
    font-family: 'Courier New', monospace;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.description {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 30px;
}

/* Content Teasers */
.content-teasers {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

.teaser-item {
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.teaser-item:hover {
    transform: scale(1.2);
}

.teaser-preview {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-bottom: 8px;
    filter: blur(8px);
    transition: all 0.3s ease;
    border: 2px solid #ff1744;
    background-size: cover;
    background-position: center;
}

.teaser-item[data-type="nude"] .teaser-preview {
    background-image: url('./4.webp');
}

.teaser-item[data-type="ppv"] .teaser-preview {
    background-image: url('./1.gif');
}

.teaser-item[data-type="custom"] .teaser-preview {
    background-image: url('./2.webp');
}

.teaser-item:hover .teaser-preview {
    filter: blur(1px);
    box-shadow: 0 5px 15px rgba(255, 23, 68, 0.5);
}

.teaser-label {
    font-size: 12px;
    color: #ccc;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    padding: 20px 55px;
    background: linear-gradient(90deg, #ff1744, #ff6e40);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(255, 23, 68, 0.5);
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 23, 68, 0.7);
}

/* Reviews Slider */
.reviews-slider {
    margin-top: 40px;
    position: relative;
    min-height: 140px;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.2), rgba(255, 110, 64, 0.1));
    border: 2px solid #ff1744;
    border-radius: 12px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.review-item {
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    width: 100%;
    text-align: center;
}

.review-item.active {
    opacity: 1;
    position: relative;
}

.review-text {
    font-size: 20px;
    color: #fff;
    font-style: italic;
    margin-bottom: 12px;
    font-weight: 500;
}

.review-author {
    font-size: 16px;
    color: #ffb300;
    font-weight: bold;
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff1744;
    width: 28px;
    border-radius: 5px;
}

/* 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, #ff1744 0%, #d32f2f 100%);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(255, 23, 68, 0.7);
}

.age-modal h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 900;
}

.age-modal p {
    font-size: 18px;
    margin-bottom: 35px;
}

.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) {
    .container {
        flex-direction: column;
    }

    .image-side {
        height: 40%;
    }

    .content-side {
        height: 60%;
    }

    .title {
        font-size: 36px;
    }

    .subtitle {
        font-size: 18px;
    }
}
