/* ============================================
   Frost Template — Icy Glassmorphism Theme
   Clean, Spacious, Dark Blue + Ice Blue
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-primary);
    background: linear-gradient(180deg, var(--bg-primary) 0%, #0b1520 50%, var(--bg-secondary) 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* --- Glass utility --- */
.glass {
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
}

.btn-primary {
    background: var(--btn-gradient);
    color: var(--btn-text);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    color: var(--btn-text);
    box-shadow: 0 6px 30px rgba(168, 216, 234, 0.45);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--border-glass-hover);
}

.btn-outline:hover {
    background: var(--bg-card);
    color: var(--accent-light);
    border-color: var(--accent);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
    border-radius: var(--radius);
    letter-spacing: 0.02em;
}

/* --- Header: Split Layout --- */
.frost-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 25, 35, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
}

.header-inner {
    display: flex;
    align-items: center;
    height: 68px;
    gap: 16px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 36px;
    width: auto;
}

.header-cta {
    /* Play Now button in header */
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-desktop a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
}

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

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
    border-radius: 1px;
}

.nav-desktop a:hover::after {
    width: 100%;
}

.header-login {
    /* Login outline button in header */
}

/* Mobile login button — hidden on desktop */
.btn-mobile-login {
    display: none;
}

/* --- Hamburger --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Menu (OUTSIDE header — backdrop-filter fix) --- */
.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 25, 35, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 999;
    padding: 36px 28px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav a {
    display: block;
    padding: 16px 18px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.mobile-nav a:hover {
    background: var(--bg-card);
    color: var(--accent-light);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border-glass);
}

.mobile-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
}

/* --- Hero --- */
.hero {
    position: relative;
    padding: 110px 0 90px;
    text-align: center;
    overflow: hidden;
}

.hero-frost-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Frost crystal — hexagonal CSS shape */
.frost-crystal {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    opacity: 0.04;
    background:
        linear-gradient(60deg, transparent 35%, rgba(168, 216, 234, 0.3) 35%, rgba(168, 216, 234, 0.3) 65%, transparent 65%),
        linear-gradient(-60deg, transparent 35%, rgba(168, 216, 234, 0.3) 35%, rgba(168, 216, 234, 0.3) 65%, transparent 65%),
        linear-gradient(0deg, transparent 35%, rgba(168, 216, 234, 0.3) 35%, rgba(168, 216, 234, 0.3) 65%, transparent 65%);
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
}

.frost-crystal::before {
    content: '';
    position: absolute;
    inset: 20%;
    background: radial-gradient(circle, rgba(168, 216, 234, 0.15) 0%, transparent 70%);
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
}

/* Frost particles — floating dots/snowflakes */
.frost-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(168, 216, 234, 0.3);
    animation: frost-float 12s ease-in-out infinite;
}

.frost-p1 {
    width: 4px;
    height: 4px;
    top: 15%;
    left: 12%;
    animation-delay: 0s;
    animation-duration: 14s;
}

.frost-p2 {
    width: 6px;
    height: 6px;
    top: 25%;
    right: 18%;
    animation-delay: -2s;
    animation-duration: 10s;
}

.frost-p3 {
    width: 3px;
    height: 3px;
    top: 60%;
    left: 22%;
    animation-delay: -4s;
    animation-duration: 16s;
}

.frost-p4 {
    width: 5px;
    height: 5px;
    top: 70%;
    right: 25%;
    animation-delay: -6s;
    animation-duration: 11s;
}

.frost-p5 {
    width: 3px;
    height: 3px;
    top: 40%;
    left: 75%;
    animation-delay: -8s;
    animation-duration: 13s;
}

.frost-p6 {
    width: 4px;
    height: 4px;
    top: 80%;
    left: 45%;
    animation-delay: -3s;
    animation-duration: 15s;
}

@keyframes frost-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(10px, -20px) scale(1.3);
        opacity: 0.6;
    }
    50% {
        transform: translate(-5px, -10px) scale(0.8);
        opacity: 0.2;
    }
    75% {
        transform: translate(15px, 5px) scale(1.1);
        opacity: 0.5;
    }
}

/* Hero radial glow background */
.hero-frost-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 40%, rgba(168, 216, 234, 0.06) 0%, transparent 70%),
        radial-gradient(circle at 20% 30%, rgba(168, 216, 234, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(224, 240, 255, 0.03) 0%, transparent 50%);
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #a8d8ea 50%, #e0f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

/* --- Features: 2x2 Glass Grid --- */
.features {
    padding: 40px 0 72px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    transition: all var(--transition);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glass-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(168, 216, 234, 0.1);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(168, 216, 234, 0.1);
    border: 1px solid rgba(168, 216, 234, 0.2);
    color: var(--accent);
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Sections --- */
.section {
    padding: 76px 0;
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.01em;
}

/* --- Slot Grid: Glass-morphism Cards --- */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.slot-card {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    text-decoration: none;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
}

.slot-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glass-hover);
    box-shadow: 0 8px 36px var(--accent-glow);
    transform: translateY(-4px);
}

.slot-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: rgba(15, 25, 35, 0.5);
}

.slot-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.slot-card:hover .slot-img img {
    transform: scale(1.06);
}

.slot-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
}

.slot-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    margin-right: 8px;
}

.slot-play {
    font-size: 12px;
    font-weight: 600;
    color: var(--btn-text);
    background: var(--btn-gradient);
    padding: 5px 14px;
    border-radius: 20px;
    flex-shrink: 0;
    transition: box-shadow var(--transition);
}

.slot-card:hover .slot-play {
    box-shadow: 0 2px 14px var(--accent-glow);
}

/* --- Providers: Glass Cards --- */
.providers-section {
    background: rgba(168, 216, 234, 0.02);
}

.providers-glass-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.provider-glass-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    transition: all var(--transition);
    text-decoration: none;
}

.provider-glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glass-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(168, 216, 234, 0.08);
}

.provider-glass-card img {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(30%) brightness(1.1);
    transition: filter var(--transition);
}

.provider-glass-card:hover img {
    filter: grayscale(0%) brightness(1.2);
}

/* --- Content Section (BCR) --- */
.content-section {
    padding: 52px 0;
}

/* BCR nav pills */
.content-section .bcr-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 22px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border-glass);
}

.content-section .bcr-nav a {
    display: inline-block;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    transition: all var(--transition);
}

.content-section .bcr-nav a:hover,
.content-section .bcr-nav a.active {
    background: var(--bg-card-hover);
    border-color: var(--accent);
    color: var(--accent-light);
}

/* Content body styling */
.content-section .content-block {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
}

.content-section .content-body {
    line-height: 1.7;
    color: var(--text-primary);
}

.content-section .content-body h2,
.content-section .content-body h3,
.content-section .content-body h4 {
    color: var(--text-heading);
    margin-top: 28px;
    margin-bottom: 14px;
}

.content-section .content-body p {
    margin-bottom: 14px;
    color: var(--text-primary);
}

.content-section .content-body a {
    color: var(--accent);
}

.content-section .content-body ul,
.content-section .content-body ol {
    margin-bottom: 14px;
    padding-left: 20px;
}

.content-section .content-body li {
    color: var(--text-primary);
    margin-bottom: 6px;
}

/* Tables in content */
.content-section table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}

.content-section table th {
    white-space: nowrap;
    color: var(--text-heading);
    background: rgba(168, 216, 234, 0.06);
}

.content-section table td {
    color: var(--text-primary);
}

.content-section table th,
.content-section table td {
    border-color: var(--border-glass);
    padding: 10px 14px;
}

/* BCR block/spoiler items */
.content-section .bcr-block {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
}

.content-section .faq-item {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    margin-bottom: 8px;
    transition: border-color var(--transition);
}

.content-section .faq-item:hover {
    border-color: var(--border-glass-hover);
}

.content-section .faq-question h3 {
    color: var(--text-heading);
    font-size: 15px;
}

.content-section .faq-arrow {
    color: var(--accent);
    opacity: 0.6;
}

.content-section .faq-answer,
.content-section .faq-answer p {
    color: var(--text-primary);
    line-height: 1.7;
}

.content-section .faq-answer a {
    color: var(--accent);
}

.content-section .faq-answer h2,
.content-section .faq-answer h3,
.content-section .faq-answer h4 {
    color: var(--text-heading);
}

.content-section .faq-answer table th {
    color: var(--text-heading);
    background: rgba(168, 216, 234, 0.06);
}

.content-section .faq-answer table td {
    color: var(--text-primary);
}

.content-section .faq-answer table th,
.content-section .faq-answer table td {
    border-color: var(--border-glass);
}

.content-section .faq-answer li {
    color: var(--text-primary);
}

/* --- FAQ Section --- */
.faq-section {
    padding: 76px 0;
}

.faq-section .faq-item {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    margin-bottom: 10px;
    transition: border-color var(--transition);
}

.faq-section .faq-item:hover {
    border-color: var(--border-glass-hover);
}

.faq-section .faq-question {
    padding: 18px 20px;
}

.faq-section .faq-question h3 {
    color: var(--text-heading);
    font-size: 15px;
    font-weight: 600;
}

.faq-section .faq-arrow {
    color: var(--accent);
    opacity: 0.7;
}

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

.faq-section .faq-item.faq-open .faq-answer {
    padding: 0 20px 18px;
}

.faq-section .faq-answer,
.faq-section .faq-answer p {
    color: var(--text-primary);
    line-height: 1.75;
    font-size: 14px;
}

.faq-section .faq-answer a {
    color: var(--accent);
}

/* --- Reviews Section --- */
.reviews-section {
    padding: 76px 0;
}

.reviews-section .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.reviews-section .review-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color var(--transition);
}

.reviews-section .review-card:hover {
    border-color: var(--border-glass-hover);
}

.reviews-section .review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.reviews-section .review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-light);
    background: rgba(168, 216, 234, 0.12);
    border: 1px solid var(--border-glass);
    flex-shrink: 0;
}

.reviews-section .review-name {
    color: var(--text-heading);
    font-weight: 600;
    font-size: 15px;
}

.reviews-section .review-stars {
    margin-bottom: 12px;
}

.reviews-section .review-stars .star {
    color: var(--accent);
    font-size: 16px;
}

.reviews-section .review-text {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 14px;
}

/* --- Footer --- */
.frost-footer {
    background: rgba(8, 14, 22, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid var(--border-glass);
    padding: 48px 0;
    margin-top: 48px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo img {
    height: 28px;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.footer-logo:hover img {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-glass);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ============================================
   Wide screens: 5 slots per row
   ============================================ */
@media (min-width: 1400px) {
    .slots-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .providers-glass-grid {
        grid-template-columns: repeat(7, 1fr);
    }
}

/* ============================================
   Responsive: Tablet (768px)
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-inner {
        gap: 10px;
    }

    /* Split header mobile: logo gets margin-right: auto */
    .header-left {
        margin-right: auto;
    }

    .header-left .header-cta {
        display: none;
    }

    .header-right {
        display: none;
    }

    /* Show mobile-only elements */
    .btn-mobile-login {
        display: inline-flex;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        padding: 76px 0 60px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-desc {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .frost-crystal {
        width: 280px;
        height: 280px;
    }

    .features {
        padding: 28px 0 52px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .feature-card {
        padding: 24px 18px;
    }

    .section {
        padding: 52px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .providers-glass-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .footer-top {
        flex-direction: column;
        gap: 18px;
    }

    .frost-footer {
        padding: 36px 0;
    }
}

/* ============================================
   Responsive: Mobile (480px)
   ============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header-inner {
        height: 56px;
        gap: 8px;
    }

    .logo img {
        height: 28px;
    }

    .mobile-menu {
        top: 56px;
        padding: 28px 16px;
    }

    .hero {
        padding: 56px 0 44px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-desc {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .btn-lg {
        padding: 14px 32px;
        font-size: 15px;
    }

    .frost-crystal {
        width: 200px;
        height: 200px;
    }

    .features {
        padding: 20px 0 40px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .feature-card {
        padding: 20px 14px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
    }

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .feature-card h3 {
        font-size: 14px;
    }

    .feature-card p {
        font-size: 13px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 21px;
        margin-bottom: 24px;
    }

    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .providers-glass-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .slot-info {
        padding: 10px 12px;
    }

    .slot-name {
        font-size: 12px;
    }

    .slot-play {
        font-size: 11px;
        padding: 4px 10px;
    }

    .provider-glass-card {
        padding: 14px 8px;
    }

    .provider-glass-card img {
        height: 32px;
    }

    .frost-footer {
        padding: 28px 0;
        margin-top: 32px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .reviews-section .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-section .review-card {
        padding: 18px;
    }

    .faq-section .faq-question {
        padding: 14px 16px;
    }

    .faq-section .faq-answer {
        padding: 0 16px 14px;
    }
}

/* Slot image type: vertical */
[data-slot-type="vertical"] .slot-img { aspect-ratio: 3/4; }
[data-slot-type="vertical"] .slot-img img { object-fit: cover; }

/* Slot image type: horizontal */
[data-slot-type="horizontal"] .slot-img { aspect-ratio: 16/9; }
[data-slot-type="horizontal"] .slot-img img { object-fit: cover; }
