@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&family=Playfair+Display:wght@400;700&family=Inter:wght@300;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
header, #header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 25px 5%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s;
    border-bottom: 1px solid rgba(255, 20, 100, 0.3);
}

header.scrolled, #header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 5%;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Cinzel Decorative', cursive;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, #ff1493, #ff69b4, #ffd4e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
}

.logo-text {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff1493, #ff69b4, #ffd4e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav, nav#mainNav {
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a, nav#mainNav a {
    margin-left: 30px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

nav a:hover, nav#mainNav a:hover {
    color: #ff69b4;
}

.btn-primary, .btn-login {
    border: 2px solid #ff1493;
    padding: 10px 25px;
    border-radius: 50px;
    color: #ff1493 !important;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover, .btn-login:hover {
    background: #ff1493;
    color: #000 !important;
}

.btn-register, .btn-register-big {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: #000 !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ff69b4;
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-top: 1px solid rgba(255, 20, 147, 0.3);
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    color: #fff;
    padding: 15px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 105, 180, 0.2);
    font-weight: 500;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #ff69b4;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg-container, .hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image, .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-bg-image.active, .slide.active {
    opacity: 1;
}

.hero-overlay, .hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    max-width: 1000px;
    z-index: 10;
    position: relative;
    margin-top: 0;
    padding: 0 20px;
}

.hero-text-box {
    background: rgba(71, 21, 107, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 20, 147, 0.25);
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 8px 32px rgba(71, 21, 107, 0.3);
}

.hero-subtitle, .hero-badge {
    color: #ff69b4;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-text-box h1, h1 {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    line-height: 1.1;
    margin: 30px 0;
    font-weight: 700;
}

h1 .gradient {
    background: linear-gradient(135deg, #ff1493, #ff69b4, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text-box p, .hero-sub {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin: 30px 0 50px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gradient, .btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #47156B, #ff1493, #ff69b4);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    padding: 20px 60px;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 20px 50px rgba(71, 21, 107, 0.6);
    transition: all 0.4s;
    border: none;
    cursor: pointer;
}

.btn-gradient:hover, .btn-cta:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(255, 20, 147, 0.7);
}

.btn-secondary {
    background: rgba(71, 21, 107, 0.3);
    color: #fff;
    padding: 20px 50px;
    border: 2px solid #ff69b4;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255, 105, 180, 0.3);
    border-color: #47156B;
    transform: translateY(-5px);
}

/* ===== SECTIONS ===== */
section {
    padding: 100px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff69b4, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header .sub {
    font-size: 20px;
    color: #ff69b4;
    margin-top: 20px;
}

/* ===== FEATURES ===== */
.rotating-features {
    background: linear-gradient(to bottom, #0a0015, #000);
    padding-top: 120px;
}

.rotating-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-slide {
    display: none;
}

.feature-slide.active {
    display: contents;
}

.feature-visual {
    position: relative;
}

.feature-mockup {
    background: rgba(71, 21, 107, 0.3);
    border: 1px solid rgba(255, 20, 147, 0.4);
    border-radius: 20px;
    padding: 40px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-mockup img {
    max-width: 100%;
    border-radius: 10px;
}

.feature-icon-float {
    position: absolute;
    background: linear-gradient(135deg, #47156B, #ff1493, #ff69b4);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(71, 21, 107, 0.6);
}

.feature-icon-float.icon-1 {
    top: 10%;
    right: -20px;
}

.feature-icon-float.icon-2 {
    bottom: 20%;
    left: -20px;
}

.feature-text {
    text-align: left;
}

.feature-label {
    color: #ff69b4;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.feature-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
    color: #fff;
}

.feature-text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== SERVICES ===== */
.services {
    background: #0f0f0f;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: rgba(71, 21, 107, 0.2);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #ff69b4;
    background: rgba(71, 21, 107, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(71, 21, 107, 0.5);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(71, 21, 107, 0.3);
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 24px;
    color: #ff69b4;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ===== SHOWCASE SECTION ===== */
.showcase {
    background: #0a0a0a;
    padding: 120px 5%;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

.showcase-card {
    background: linear-gradient(135deg, rgba(71, 21, 107, 0.2) 0%, rgba(255, 20, 147, 0.1) 100%);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    position: relative;
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(71, 21, 107, 0.6);
    border-color: #ff69b4;
}

.showcase-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.showcase-card:hover .showcase-image img {
    transform: scale(1.1);
}

.showcase-content {
    padding: 30px;
}

.showcase-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ff69b4;
    font-weight: 700;
}

.showcase-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

.btn-showcase {
    display: inline-block;
    background: linear-gradient(135deg, #47156B, #ff1493);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-showcase:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(71, 21, 107, 0.5);
}

/* ===== GENERATOR ===== */
.generator {
    padding: 140px 5% 100px;
    background: linear-gradient(to bottom, #0a0015, #000);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.generator h2 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff69b4, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.generator-box, .generator-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(71, 21, 107, 0.25);
    border: 1px solid rgba(255, 20, 147, 0.4);
    border-radius: 30px;
    padding: 50px;
    backdrop-filter: blur(15px);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff69b4;
}

.form-group textarea,
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="number"],
.form-group select,
textarea, select {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #ff69b4;
    border-radius: 20px;
    padding: 25px;
    color: #fff;
    font-size: 18px;
    transition: border-color 0.3s;
}

.form-group textarea:focus,
.form-group input:focus,
.form-group select:focus,
textarea:focus, select:focus {
    outline: none;
    border-color: #ff1493;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

.form-group textarea, textarea {
    min-height: 180px;
    resize: none;
}

.style-selector select {
    width: 100%;
    padding: 18px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #ff69b4;
    border-radius: 15px;
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
}

.credit-badge {
    background: rgba(255, 20, 147, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.credit-badge .amount {
    font-size: 32px;
    font-weight: 800;
    color: #ff69b4;
}

.btn-generate {
    width: 100%;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: #000;
    border: none;
    padding: 22px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s;
}

.btn-generate:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 20, 147, 0.6);
}

.generated-image, .result img {
    margin-top: 40px;
    border: 2px solid rgba(255, 20, 147, 0.5);
    border-radius: 25px;
    overflow: hidden;
}

.generated-image img, .result img {
    width: 100%;
    display: block;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.4);
}

.image-actions, .actions {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.image-actions a,
.image-actions button,
.btn-download,
.btn-again,
.btn-new {
    flex: 1;
    padding: 18px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-download {
    background: #ff1493;
    color: #fff;
}

.btn-download:hover {
    background: #ff69b4;
    transform: translateY(-3px);
}

.btn-again, .btn-new {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid #ff69b4;
}

.btn-again:hover, .btn-new:hover {
    background: rgba(255, 105, 180, 0.2);
    transform: translateY(-3px);
}

.guest-notice {
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 20, 147, 0.1);
    border: 2px dashed #ff69b4;
    border-radius: 25px;
    text-align: center;
}

/* ===== PRICING ===== */
.pricing {
    background: #0a0a0a;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(71, 21, 107, 0.2) 0%, rgba(255, 20, 147, 0.1) 100%);
    padding: 40px;
    border-radius: 25px;
    border: 2px solid rgba(255, 20, 147, 0.3);
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(71, 21, 107, 0.6);
    border-color: #ff69b4;
}

.pricing-card.featured {
    border-color: #47156B;
    background: linear-gradient(135deg, rgba(71, 21, 107, 0.3) 0%, rgba(255, 20, 147, 0.15) 100%);
    box-shadow: 0 10px 40px rgba(71, 21, 107, 0.4);
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #47156B, #ff1493, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.price {
    font-size: 48px;
    font-weight: bold;
    margin: 20px 0;
    color: #ffffff;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 30px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff69b4;
    font-weight: bold;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #47156B, #ff1493, #ff69b4);
    color: #fff;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(71, 21, 107, 0.6);
}

/* ===== FOOTER ===== */
footer {
    padding: 80px 5% 40px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    background: #050505;
    border-top: 1px solid rgba(255, 20, 147, 0.2);
}

footer a {
    color: #ff69b4;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #ff1493;
}

/* ===== AUTH PAGES ===== */
.auth-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0015 0%, #1a001a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-box {
    max-width: 450px;
    width: 100%;
    background: rgba(71, 21, 107, 0.4);
    border: 1px solid rgba(255, 20, 147, 0.4);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(15px);
}

.auth-box h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-error {
    background: rgba(255, 0, 100, 0.1);
    border: 1px solid rgba(255, 0, 100, 0.3);
    color: #ff6b9d;
}

.alert-success {
    background: rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.3);
    color: #ff69b4;
}

/* ===== DASHBOARD ===== */
.dashboard {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0015 0%, #1a001a 100%);
    padding-top: 100px;
}

.dashboard-header {
    background: rgba(71, 21, 107, 0.4);
    border: 1px solid rgba(255, 20, 147, 0.4);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

.tabs {
    display: flex;
    gap: 20px;
    border-bottom: 2px solid rgba(255, 105, 180, 0.2);
    margin-bottom: 40px;
}

.tab {
    padding: 15px 30px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.tab.active {
    color: #ff69b4;
    border-bottom-color: #ff69b4;
}

.tab:hover {
    color: #fff;
}

/* ===== ADMIN ===== */
.admin-table {
    width: 100%;
    background: rgba(71, 21, 107, 0.3);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 15px;
    overflow: hidden;
}

.admin-table table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 105, 180, 0.1);
}

.admin-table th {
    background: rgba(255, 20, 147, 0.2);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    color: #ff69b4;
}

.admin-table tr:hover {
    background: rgba(255, 20, 147, 0.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    h1, .hero-text-box h1 {
        font-size: 50px;
    }
    .hero-content {
        margin-top: 0;
        padding-top: 80px;
    }
    .hero-text-box {
        padding: 40px 30px;
    }
    .rotating-container {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    nav#mainNav {
        display: none !important;
    }
    .hamburger {
        display: flex !important;
    }
    .generator-form, .generator-box {
        padding: 30px;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .hero-text-box {
        padding: 30px 20px;
    }
    .hero-text-box h1, h1 {
        font-size: 36px;
    }
    .hero-text-box p, .hero-sub {
        font-size: 18px;
    }
    .btn-gradient, .btn-cta {
        font-size: 18px;
        padding: 15px 40px;
    }
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}
.mt-4 {
    margin-top: 2rem;
}
.mb-4 {
    margin-bottom: 2rem;
}
.hidden {
    display: none;
}
.showcase-item:hover {
    border-color: #ff69b4 !important;
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.3);
}

.showcase-item input:focus,
.showcase-item textarea:focus {
    outline: none;
    border-color: #ff69b4 !important;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.4);
}

code {
    background: rgba(255, 105, 180, 0.2);
    padding: 3px 8px;
    border-radius: 4px;
    color: #ff69b4;
    font-family: 'Courier New', monospace;
    font-size: 13px;
}
/* ===== NABIDKA PAGE - GALLERY ===== */
.rotating-container-full {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.gallery-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.gallery-slide.active {
    display: grid;
}

.gallery-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(255, 20, 147, 0.3);
    transition: all 0.3s;
}

.gallery-image:hover {
    border-color: #ff69b4;
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 20, 147, 0.4);
}

.gallery-image img {
    width: 100%;
    height: auto;
    display: block;
}

.zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(71, 21, 107, 0.8);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ff69b4;
    opacity: 0;
    transition: all 0.3s;
}

.gallery-image:hover .zoom-icon {
    opacity: 1;
}

.gallery-text {
    padding: 40px;
}

.gallery-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
    color: #fff;
}

.gallery-text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 105, 180, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover {
    background: rgba(255, 105, 180, 0.6);
}

.dot.active {
    background: #ff69b4;
    width: 40px;
    border-radius: 10px;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 10px 60px rgba(255, 20, 147, 0.5);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 48px;
    color: #ff69b4;
    cursor: pointer;
    transition: all 0.3s;
}

.close-lightbox:hover {
    color: #fff;
    transform: rotate(90deg);
}

/* ===== VIDEO SECTION ===== */
.video-section {
    padding: 120px 5%;
    background: #0a0a0a;
}

.video-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.video-thumb {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(255, 20, 147, 0.2);
    transition: all 0.3s;
}

.video-thumb:hover {
    border-color: #ff69b4;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
}

.video-thumb.active {
    border-color: #47156B;
    box-shadow: 0 0 30px rgba(71, 21, 107, 0.6);
}

.video-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(71, 21, 107, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.video-thumb:hover .play-overlay {
    background: rgba(71, 21, 107, 0.8);
}

.play-overlay i {
    font-size: 48px;
    color: #ff69b4;
}

.video-thumb p {
    padding: 15px;
    background: rgba(20, 20, 30, 0.8);
    text-align: center;
    font-weight: 600;
    color: #fff;
}

.video-player {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 20, 147, 0.3);
    box-shadow: 0 20px 60px rgba(71, 21, 107, 0.5);
}

.video-player video {
    width: 100%;
    display: block;
    background: #000;
}

/* ===== NABIDKA RESPONSIVE ===== */
@media (max-width: 968px) {
    .gallery-slide {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-text {
        padding: 20px;
        text-align: center;
    }
    
    .gallery-text h2 {
        font-size: 32px;
    }
    
    .video-selector {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .close-lightbox {
        top: 20px;
        right: 20px;
        font-size: 36px;
    }
}
/* ===== VIDEO SECTION ===== */
.video-section {
    padding: 120px 5%;
    background: #0a0a0a;
    overflow-x: hidden; /* DŮLEŽITÉ - zabrání horizontálnímu scrollu */
}

.video-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.video-thumb {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(255, 20, 147, 0.2);
    transition: all 0.3s;
    width: 100%; /* OPRAVA */
}

.video-thumb:hover {
    border-color: #ff69b4;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
}

.video-thumb.active {
    border-color: #47156B;
    box-shadow: 0 0 30px rgba(71, 21, 107, 0.6);
}

.video-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px; /* OPRAVA - fixní výška */
    background: rgba(71, 21, 107, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.video-thumb:hover .play-overlay {
    background: rgba(71, 21, 107, 0.8);
}

.play-overlay i {
    font-size: 48px;
    color: #ff69b4;
}

.video-thumb p {
    padding: 15px;
    background: rgba(20, 20, 30, 0.8);
    text-align: center;
    font-weight: 600;
    color: #fff;
}

.video-player {
    max-width: 1200px;
    width: 100%; /* OPRAVA */
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 20, 147, 0.3);
    box-shadow: 0 20px 60px rgba(71, 21, 107, 0.5);
}

.video-player video {
    width: 100%;
    max-width: 100%; /* OPRAVA */
    height: auto; /* OPRAVA */
    display: block;
    background: #000;
}

/* ===== NABIDKA RESPONSIVE ===== */
@media (max-width: 968px) {
    .gallery-slide {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-text {
        padding: 20px;
        text-align: center;
    }
    
    .gallery-text h2 {
        font-size: 32px;
    }
    
    .video-section {
        padding: 60px 3%; /* OPRAVA - menší padding */
    }
    
    .video-selector {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-thumb img {
        height: 180px; /* OPRAVA - menší na tabletu */
    }
    
    .play-overlay {
        height: 180px; /* OPRAVA */
    }
}

@media (max-width: 640px) {
    .close-lightbox {
        top: 20px;
        right: 20px;
        font-size: 36px;
    }
    
    .video-section {
        padding: 40px 2%; /* OPRAVA - ještě menší na mobilu */
    }
    
    .video-thumb img {
        height: 150px; /* OPRAVA - menší na mobilu */
    }
    
    .play-overlay {
        height: 150px; /* OPRAVA */
    }
    
    .play-overlay i {
        font-size: 36px; /* OPRAVA - menší ikona */
    }
    
    .video-player {
        border-radius: 10px; /* OPRAVA - menší zaoblení */
    }
}
/* ===================================================================
   AI GIRLS GENERATOR - Přidej na konec style.css
   =================================================================== */

/* Builder Container */
.builder-container {
    max-width: 1200px;
    margin: 50px auto 50px;
    padding: 40px 20px;
}

.builder-section {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
}

.builder-title {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 42px;
    text-align: center;
    background: linear-gradient(135deg, #ff1493, #ff69b4, #ffd4e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
}

/* Configuration Grid */
.config-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.config-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s;
}

.config-option:hover {
    border-color: #ff69b4;
    background: rgba(255, 105, 180, 0.1);
    transform: translateY(-2px);
}

.config-option label {
    display: block;
    color: #ff69b4;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
}

.config-option select {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.config-option select:focus {
    outline: none;
    border-color: #ff69b4;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

.config-option select option {
    background: #1a1a1a;
    color: #fff;
    padding: 10px;
}

/* Generate Button */
.generate-btn {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    border: none;
    padding: 20px 60px;
    border-radius: 50px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
}

.generate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.6);
}

.generate-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Loading Message */
.loading-message {
    text-align: center;
    padding: 60px 20px;
    display: none;
}

.loading-message.active {
    display: block;
}

.loading-message h2 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 36px;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.loading-message p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin: 10px 0;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 105, 180, 0.2);
    border-top-color: #ff69b4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 30px auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Result Container */
.result-container {
    display: none;
    margin-top: 50px;
}

.result-container.active {
    display: block;
}

.girl-display {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid rgba(255, 105, 180, 0.5);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.girl-image {
    max-width: 100%;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.5);
}

/* Chat Section */
.chat-section {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
    max-height: 600px;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    min-height: 300px;
}

.chat-message {
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 15px;
    max-width: 80%;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-message.user {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    margin-left: auto;
    text-align: right;
}

.chat-message.assistant {
    background: rgba(255, 255, 255, 0.1);
    margin-right: auto;
}

.chat-message.typing-indicator {
    opacity: 0.7;
    font-style: italic;
    animation: pulse 1.5s ease-in-out infinite;
}

.chat-message.typing-indicator span:first-child {
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.chat-input-area {
    display: flex;
    gap: 15px;
}

.chat-input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
}

.chat-input:focus {
    outline: none;
    border-color: #ff69b4;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

.chat-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-send-btn {
    padding: 15px 35px;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.chat-send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.4);
}

.chat-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Premium CTA */
.premium-cta {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 30px;
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.3);
}

.premium-cta h3 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
}

.premium-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    margin: 15px 0;
}

.premium-cta-btn {
    background: #000;
    color: #ff69b4;
    border: 2px solid #ff69b4;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    text-decoration: none;
    display: inline-block;
}

.premium-cta-btn:hover {
    background: #ff69b4;
    color: #000;
    transform: scale(1.05);
}

/* Free Limit Warning */
.free-limit-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.5);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
}

.free-limit-warning h3 {
    color: #ffc107;
    font-size: 24px;
    margin-bottom: 15px;
}

.free-limit-warning p {
    color: rgba(255, 255, 255, 0.8);
    margin: 10px 0;
}

.free-limit-warning .btn-register {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    transition: all 0.3s;
}

.free-limit-warning .btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.4);
}

/* Locked Overlay */
.locked-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 15px;
}

.locked-overlay.active {
    display: flex;
}

.locked-content {
    text-align: center;
    padding: 40px;
    max-width: 500px;
}

.locked-content i {
    font-size: 80px;
    color: #ffc107;
    margin-bottom: 20px;
}

.locked-content h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
}

.locked-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 25px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .builder-title {
        font-size: 28px;
    }

    .config-grid {
        grid-template-columns: 1fr;
    }

    .generate-btn {
        padding: 15px 40px;
        font-size: 18px;
    }

    .loading-message h2 {
        font-size: 24px;
    }

    .chat-message {
        max-width: 90%;
    }

    .premium-cta {
        padding: 30px 20px;
    }

    .premium-cta h3 {
        font-size: 24px;
    }
}
/* ===================================================================
   AGE VERIFICATION & COOKIE CONSENT
   Přidej na konec style.css
   =================================================================== */

/* Age Verification Popup */
#ageVerificationPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.age-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.age-popup {
    position: relative;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.98), rgba(10, 10, 20, 0.98));
    border: 3px solid #ff69b4;
    border-radius: 25px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.5);
    animation: popIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes popIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.age-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.age-popup h2 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 32px;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.age-popup p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.age-popup p strong {
    color: #ff69b4;
    font-size: 20px;
}

.age-buttons {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.age-btn {
    flex: 1;
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.age-btn-yes {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: #fff;
}

.age-btn-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.5);
}

.age-btn-no {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.age-btn-no:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.age-disclaimer {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Consent Banner */
#cookieConsent {
    position: fixed;
    bottom: -300px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.98), rgba(10, 10, 20, 0.98));
    border-top: 3px solid #ff69b4;
    padding: 25px;
    z-index: 99998;
    box-shadow: 0 -10px 40px rgba(255, 20, 147, 0.3);
    transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
}

#cookieConsent.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 50px;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    color: #ff69b4;
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: #fff;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.4);
}

.cookie-btn-reject {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .age-popup {
        padding: 40px 25px;
        max-width: 95%;
    }
    
    .age-popup h2 {
        font-size: 24px;
    }
    
    .age-icon {
        font-size: 60px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .age-btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-text {
        min-width: 100%;
    }
    
    .cookie-text h3 {
        font-size: 18px;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    #cookieConsent {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .age-popup {
        padding: 30px 20px;
    }
    
    .age-popup h2 {
        font-size: 20px;
    }
    
    .age-popup p {
        font-size: 14px;
    }
    
    .age-popup p strong {
        font-size: 16px;
    }
    
    .age-disclaimer {
        font-size: 11px !important;
    }
}