: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 10px;
    }
    .hero-text {
        text-align: center;
    }
    .hero-features {
        justify-content: center;
    }
    .hero-image {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 55%;
        max-width: 200px;
    }
    .header .offer-strip,
    .countdown-banner:not(.mobile-promo .countdown-banner) {
        display: none;
    }
    .mobile-promo {
        display: block;
    }
}
@media (min-width: 768px) {
    .mobile-promo {
        display: none;
    }
}
@media (min-width: 768px) {
    .hero {
        min-height: 240px;
    }
    .hero-image {
        width: 40%;
        max-width: 340px;
        right: -15px;
        bottom: -30px;
    }
    .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%;
    overflow: hidden;
    position: relative;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    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%);
}
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.marquee-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: marquee 35s linear infinite;
    will-change: transform;
}
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}
.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);
}
.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.05);
    position: relative;
    padding: 30px 20px;
    margin-top: 15px;
    transition: transform var(--transition-speed);
}
.compare-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 0, 127, 0.3);
}
.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;
}
.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}
.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;
}
.disclaimer {
    font-size: 0.75rem;
    color: #666;
    text-align: justify;
    margin-bottom: 15px;
}
.copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #555;
}
.offer-strip {
    background: linear-gradient(90deg, rgba(255, 0, 127, 0.15) 0%, rgba(154, 44, 212, 0.15) 100%);
    border-bottom: 1px solid rgba(255, 0, 127, 0.25);
    padding: 6px 0;
}
.offer-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.offer-text {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.85rem;
    animation: pulse 2s infinite;
}
.offer-btn {
    padding: 4px 14px;
    font-size: 0.8rem;
}
.cd-sep {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    opacity: 0.7;
    margin: 0 2px;
}
.countdown-banner {
    background: linear-gradient(90deg, #ff007f 0%, #9A2CD4 100%);
    padding: 10px 0;
    text-align: center;
}
.countdown-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.countdown-title {
    font-weight: 700;
    font-size: 1rem;
    color: white;
}
.countdown-timer {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
}
.time-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 6px;
    min-width: 45px;
}
.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;
    }
    .countdown-inner {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    .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.35rem !important;
        line-height: 1.15;
    }
    h2,
    .section-title {
        font-size: 1.1rem !important;
        margin-bottom: 4px;
    }
    h3 {
        font-size: 1rem !important;
    }
    h4 {
        font-size: 0.88rem !important;
    }
    p,
    li {
        font-size: 0.8rem !important;
        line-height: 1.5;
    }
    .section-desc {
        font-size: 0.78rem !important;
        margin-bottom: 14px;
    }
    .hero-subtitle {
        font-size: 0.82rem !important;
        margin-bottom: 10px;
    }
    .hero-features {
        gap: 6px;
        margin-bottom: 12px;
    }
    .feature-item {
        font-size: 0.72rem !important;
        padding: 5px 9px;
        gap: 5px;
    }
    .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;
    }
    .compare-body {
        padding: 8px 10px;
        gap: 6px;
    }
    .compare-ribbon {
        font-size: 0.65rem !important;
        padding: 3px 8px;
    }
    .compare-bullets li {
        font-size: 0.74rem !important;
        padding: 2px 0;
    }
    .score-num {
        font-size: 1rem !important;
    }
    .score-circle {
        width: 44px;
        height: 44px;
    }
    .score-text {
        font-size: 0.65rem !important;
    }
    .logo-img {
        max-width: 80px;
        max-height: 30px;
    }
    .btn-lg {
        font-size: 0.8rem !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: 0.8rem !important;
        margin-bottom: 1px;
    }
    .model-info p {
        font-size: 0.65rem !important;
        margin-bottom: 6px;
    }
    .btn-play {
        font-size: 0.65rem !important;
        padding: 4px 8px !important;
    }
    .live-badge {
        font-size: 0.6rem;
        padding: 2px 6px;
        top: 6px;
        right: 6px;
    }
    .faq-section summary {
        font-size: 0.82rem !important;
        padding: 10px 12px;
    }
    .faq-section details p {
        font-size: 0.76rem !important;
        padding: 0 12px 10px;
    }
    .countdown-title {
        font-size: 0.75rem !important;
    }
    .countdown-inner {
        gap: 8px;
        padding: 6px 12px;
        flex-wrap: wrap;
    }
    .time-box {
        font-size: 0.95rem !important;
        padding: 3px 7px;
        min-width: 32px;
    }
    .offer-strip-inner {
        padding: 6px 12px;
        gap: 8px;
    }
    .offer-text {
        font-size: 0.75rem !important;
    }
    .offer-btn {
        font-size: 0.72rem !important;
        padding: 4px 10px !important;
    }
    .footer {
        padding: 16px 0 10px;
    }
    .footer-links {
        gap: 6px 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-links a {
        font-size: 0.72rem !important;
    }
    .disclaimer {
        font-size: 0.66rem !important;
        line-height: 1.45;
        margin-top: 8px;
    }
    .copyright {
        font-size: 0.66rem !important;
        margin-top: 6px;
    }
    .seo-text-content h2 {
        font-size: 1rem !important;
        margin-bottom: 4px;
    }
    .seo-text-content p {
        font-size: 0.78rem !important;
    }
}