:root {
    --bg-color: #0a0a0c;
    --surface-color: #1a1a24;
    --surface-hover: #232332;
    --primary-color: #ff007f;
    --primary-glow: rgba(255, 0, 127, 0.4);
    --secondary-color: #ff4da6;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --star-color: #ffd700;
    --border-radius: 12px;
    --transition-speed: 0.3s;
}

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-glow);
}

.header {
    background-color: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 0, 127, 0.2);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-desktop {
    display: none;
    gap: 25px;
    align-items: center;
}

.nav-desktop a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-desktop a:hover {
    color: var(--primary-color);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--surface-color);
    border-top: 1px solid rgba(255, 0, 127, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 6px 0;
}

.nav-mobile a {
    padding: 11px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.2s, background 0.2s;
}

.nav-mobile a:hover {
    color: var(--primary-color);
    background: rgba(255, 0, 127, 0.05);
}

.nav-mobile.open {
    display: flex;
}

@media (min-width: 1000px) {
    .nav-desktop {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .nav-mobile {
        display: none !important;
    }
}

.hero {
    position: relative;
    min-height: 280px;
    padding: 28px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center top, rgba(255, 0, 127, 0.2) 0%, rgba(10, 10, 12, 1) 100%);
    z-index: -1;
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 5px;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
    margin-bottom: 25px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feat-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.hero-split {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 100px;
}

.hero-text {
    flex: 1;
    position: relative;
    z-index: 2;
    text-align: left;
    padding-right: 0;
}

.hero-image {
    position: absolute;
    right: -10px;
    bottom: -40px;
    width: 45%;
    max-width: 380px;
    z-index: 1;
    pointer-events: none;
}

.hero-girl-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
    filter: drop-shadow(-20px 0 40px rgba(255, 0, 127, 0.4));
}

.btn-hero-cta {
    margin-top: 15px;
    padding: 14px 30px;
    font-size: 1.05rem;
    display: inline-block;
}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding: 22px 0 0;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-text {
        text-align: center;
        margin-bottom: 20px;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image {
        display: block;
        width: 100%;
        height: 100%;
        max-width: none;
        right: 0;
        bottom: 0;
        opacity: 0.55;
        z-index: 0;
    }

    .hero-girl-img {
        mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
        -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
    }

    .header .age-notice-strip {
        display: block;
    }
}

@media (min-width: 768px) {
    .hero {
        min-height: 240px;
    }

    .hero-image {
        width: 40%;
        max-width: 340px;
        right: -15px;
        bottom: -139px;
    }

    .hero-text {
        max-width: 58%;
    }
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-box {
    background: var(--surface-color);
    border: 1px solid rgba(255, 0, 127, 0.4);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 0 60px rgba(255, 0, 127, 0.25);
    animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-heart {
    font-size: 3rem;
    margin-bottom: 15px;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.modal-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.modal-btn {
    width: 100%;
    padding: 14px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
}

.section-desc {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.carousel-section {
    padding: 20px 0;
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color) 0%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 14px;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 16px;
    cursor: grab;
}

.marquee-track::-webkit-scrollbar {
    display: none;
}

.model-card {
    flex: 0 0 200px;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    scroll-snap-align: start;
}

.model-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.model-card:hover img {
    transform: scale(1.05);
}

.model-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(10, 10, 12, 1), transparent);
    pointer-events: none;
}

.model-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    z-index: 2;
}

.live-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 0, 127, 0.9);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.model-info h3 {
    margin: 0 0 2px 0;
    font-size: 1rem;
    font-weight: 700;
}

.model-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.btn-play {
    padding: 10px;
    font-size: 0.9rem;
    position: static;
    z-index: 10;
}

.btn-play::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.comparison-section {
    padding: 40px 0;
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.compare-card {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding: 30px 20px;
    margin-top: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 35px rgba(255, 0, 127, 0.35);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed), border-color var(--transition-speed);
}

.compare-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 0, 127, 0.6);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7), 0 0 50px rgba(255, 0, 127, 0.6);
}

.compare-ribbon {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px var(--primary-glow);
}

.compare-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.compare-col-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.compare-col-logo img {
    max-width: 150px;
    max-height: 100%;
}

.logo-img {
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: filter 0.3s;
}

.compare-card:hover .logo-img {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(290deg);
}

.compare-col-features {
    flex: 2;
    width: 100%;
}

.compare-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.compare-bullets li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.compare-bullets .check {
    color: var(--primary-color);
    font-weight: 800;
}

.compare-col-rating {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.score-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #9A2CD4;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
}

.score-circle-alt {
    background-color: var(--primary-color);
}

.score-text {
    font-size: 0.9rem;
    color: white;
    font-weight: 700;
}

.compare-col-cta {
    flex: 1;
    display: flex;
    align-items: center;
    width: 100%;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1.1rem;
    width: 100%;
}

.page-content {
    padding: 40px 16px;
    max-width: 800px;
    margin: 0 auto;
    min-height: 60vh;
}

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.page-content h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: white;
}

.page-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.page-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.page-content a {
    color: var(--primary-color);
}

.page-hero {
    position: relative;
    padding: 50px 0 40px;
    text-align: center;
    overflow: hidden;
}

.page-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-hero-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px 0 60px;
}

.contact-info-block,
.contact-form-block {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px;
}

.contact-info-block h2,
.contact-form-block h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.contact-info-block p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 0, 127, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 127, 0.1);
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-size: 0.9rem;
    color: white;
    margin-bottom: 4px;
}

.contact-detail a,
.contact-detail span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-detail a:hover {
    color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 16px;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

.form-group select option {
    background: var(--surface-color);
    color: white;
}

.form-group textarea {
    resize: vertical;
}

.btn-block {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
}

.form-success {
    text-align: center;
    color: #4caf50;
    font-weight: 600;
    margin-top: 5px;
}

.policy-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0 60px;
}

.policy-card {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px;
    transition: border-color 0.3s, transform 0.3s;
}

.policy-card:hover {
    border-color: rgba(255, 0, 127, 0.3);
    transform: translateY(-2px);
}

.policy-card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.policy-card h2 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 12px;
}

.policy-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .contact-layout {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-info-block {
        flex: 1;
    }

    .contact-form-block {
        flex: 1.2;
    }

    .policy-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

.btn {
    display: inline-block;
    text-align: center;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition-speed);
    cursor: pointer;
    border: none;
}

@keyframes btn-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 127, 0.8);
    }

    70% {
        box-shadow: 0 0 15px 15px rgba(255, 0, 127, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 127, 0);
    }
}

.btn-primary {
    background: linear-gradient(45deg, #ff007f, #9a2cd4);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
    animation: btn-pulse 2s infinite;
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 0, 127, 0.6);
}

.footer {
    background: #050505;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-footer {
    justify-content: center;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hero-age-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 127, 0.12);
    border: 1px solid rgba(255, 0, 127, 0.4);
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.15);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}
.hero-age-tag strong {
    color: #ff3385;
}

.age-notice-strip {
    background: linear-gradient(90deg, rgba(255, 0, 85, 0.18) 0%, rgba(154, 44, 212, 0.18) 100%);
    border-bottom: 1px solid rgba(255, 0, 127, 0.35);
    padding: 7px 0;
}

.age-notice-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.age-notice-text {
    font-weight: 600;
    color: #f1f1f1;
    font-size: 0.85rem;
}

.age-notice-text strong {
    color: #ff3385;
}

.age-notice-link {
    font-size: 0.8rem;
    color: var(--primary-color);
    text-decoration: underline;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.age-notice-link:hover {
    opacity: 0.8;
}

.disclaimer-card {
    background: rgba(20, 20, 28, 0.85);
    border: 1px solid rgba(255, 0, 127, 0.35);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 0, 127, 0.1);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
    text-align: left;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.age-badge {
    background: linear-gradient(135deg, #ff0055 0%, #ff007f 100%);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(255, 0, 85, 0.4);
    letter-spacing: 0.5px;
}

.disclaimer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.disclaimer-text {
    font-size: 0.85rem;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.disclaimer-text strong {
    color: #ffffff;
}

.age-highlight {
    color: #ff3385 !important;
    font-weight: 700;
    background: rgba(255, 0, 127, 0.12);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(255, 0, 127, 0.3);
}

.disclaimer {
    background: rgba(20, 20, 28, 0.85);
    border: 1px solid rgba(255, 0, 127, 0.35);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #cccccc;
    line-height: 1.6;
    text-align: left;
}

.seo-text-section {
    padding: 40px 0;
}

.seo-text-content {
    background: var(--surface-color);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.seo-text-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.seo-text-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
}

.faq-section {
    padding: 20px 0 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item[open] {
    border-color: rgba(255, 0, 127, 0.3);
}

.faq-question {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    cursor: pointer;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-arrow {
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item[open] .faq-arrow {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 20px 18px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .sticky-banner-inner {
        flex-wrap: nowrap;
    }



    .compare-body {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .compare-col-logo {
        justify-content: flex-start;
    }

    .compare-col-features {
        padding: 0 20px;
    }

    .compare-col-cta {
        width: auto;
    }

    .btn-lg {
        width: auto;
    }

    .carousel-container {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 767px) {

    h1,
    .hero-title {
        font-size: 1.6rem !important;
        line-height: 1.15;
    }

    h2,
    .section-title {
        font-size: 1.35rem !important;
        margin-bottom: 4px;
    }

    h3 {
        font-size: 1.25rem !important;
    }

    h4 {
        font-size: 1.1rem !important;
    }

    p,
    li {
        font-size: 1rem !important;
        line-height: 1.5;
    }

    .section-desc {
        font-size: 1rem !important;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 1.05rem !important;
        margin-bottom: 10px;
    }

    .hero-features {
        gap: 6px;
        margin-bottom: 12px;
    }

    .feature-item {
        padding: 5px 9px;
        gap: 5px;
        font-size: 12px;
    }

    .feat-icon {
        width: 15px;
        height: 15px;
    }

    .carousel-section {
        padding: 10px 0;
    }

    .seo-text-section {
        padding: 12px 0;
    }

    .faq-section {
        padding: 12px 0;
    }

    .comparison-section {
        padding: 10px 0;
    }

    section.container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .compare-card {
        margin-bottom: 10px;
        border-radius: 10px;
        padding: 15px 5px;
    }

    .compare-body {
        padding: 8px 10px;
        gap: 6px;
    }

    .compare-col-rating {
        position: absolute;
        top: 15px;
        right: 15px;
        align-items: flex-end;
    }

    .compare-ribbon {
        font-size: 0.85rem !important;
        padding: 3px 8px;
    }

    .compare-bullets {
        gap: 3px;
    }

    .compare-bullets li {
        font-size: 0.95rem !important;
        padding: 2px 0;
    }

    .score-num {
        font-size: 1.25rem !important;
    }

    .score-circle {
        width: 44px;
        height: 44px;
    }

    .score-text {
        font-size: 0.85rem !important;
    }

    .logo-img {
        max-width: 80px;
        max-height: 30px;
    }

    .btn-lg {
        font-size: 1rem !important;
        padding: 8px 14px !important;
    }

    .model-card {
        flex: 0 0 140px;
        height: 230px;
        border-radius: 10px;
    }

    .model-info {
        padding: 8px !important;
    }

    .model-info h3 {
        font-size: 1rem !important;
        margin-bottom: 1px;
    }

    .model-info p {
        font-size: 0.85rem !important;
        margin-bottom: 6px;
    }

    .btn-play {
        font-size: 0.85rem !important;
        padding: 4px 8px !important;
    }

    .live-badge {
        font-size: 0.8rem;
        padding: 2px 6px;
        top: 6px;
        right: 6px;
    }

    .faq-section summary {
        font-size: 1.05rem !important;
        padding: 10px 12px;
    }

    .faq-section details p {
        font-size: 1rem !important;
        padding: 0 12px 10px;
    }

    .age-notice-inner {
        padding: 6px 12px;
        gap: 8px;
    }

    .age-notice-text {
        font-size: 0.8rem !important;
    }

    .age-notice-link {
        font-size: 0.78rem !important;
    }

    .footer {
        padding: 16px 0 10px;
    }

    .footer-links {
        gap: 6px 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links a {
        font-size: 0.95rem !important;
    }

    .disclaimer {
        font-size: 0.86rem !important;
        line-height: 1.45;
        margin-top: 8px;
    }

    .copyright {
        font-size: 0.86rem !important;
        margin-top: 6px;
    }

    .seo-text-content h2 {
        font-size: 1rem !important;
        margin-bottom: 4px;
    }

    .seo-text-content p {
        font-size: 0.78rem !important;
    }
}