/* General Styling - 提升現代感 */
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f7f6;
    overflow-x: hidden; width: 100%;
}

/* Header & Navigation - 優化手機端排版 */
header {
    background: #1a1a1a;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* 手機端自動換行 */
}

.logo {
    font-size: 28px;
    color: #ff5733;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #ddd;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #ff5733;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/assets/images/Freespincard_banner_web.webp') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 6rem 1rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Button Styling */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ff6600 0%, #ff3300 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.6);
}

.secondary-button {
    display: inline-block;
    padding: 0.85rem 1.4rem;
    border: 1px solid rgba(255, 87, 51, 0.35);
    border-radius: 999px;
    color: #ff5733;
    background: #fff;
    text-decoration: none;
    font-weight: 700;
}

.secondary-button:hover {
    background: #fff3ee;
}

/* Overview / Features - 交錯佈局優化 */
.overview {
    padding: 4rem 0;
}

.index-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-item:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    max-width: 50%;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-text {
    flex: 1;
    padding: 2rem;
}

/* Casino Grid - 卡片式設計 */
.recommended-casinos {
    padding: 4rem 0;
    background: #edf2f4;
}

.online-casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.casino-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border-bottom: 4px solid #ff5733;
    transition: 0.3s;
}

.seo-section {
    padding: 4rem 0;
    background: #fff;
}

.seo-section.alt {
    background: #f4f7f6;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 2rem;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 0.75rem;
}

.answer-box {
    max-width: 880px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    border-left: 5px solid #ff5733;
    border-radius: 10px;
    background: #fff9f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.answer-box h2,
.answer-box h3 {
    margin-top: 0;
}

.toc-grid,
.topic-grid,
.trust-grid,
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.topic-card,
.trust-card,
.review-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 1.35rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.topic-card h3,
.trust-card h3,
.review-card h3 {
    margin-top: 0;
}

.card-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: #f3f4f6;
}

.logo-image {
    width: 96px;
    height: 96px;
    object-fit: contain;
    display: block;
    margin: 0 auto 1rem;
}

.provider-logo-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.provider-logo-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.provider-logo-card img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.wide-media {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    border-radius: 10px;
    margin: 1.25rem 0;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.topic-card a,
.review-card a {
    color: #ff5733;
    font-weight: 700;
    text-decoration: none;
}

.topic-grid + .comparison-table {
    margin-top: 1.5rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.comparison-table th,
.comparison-table td {
    padding: 0.95rem;
    border: 1px solid #e8e8e8;
    text-align: left;
    vertical-align: top;
}

.comparison-table th {
    background: #1a1a1a;
    color: #fff;
}

.review-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.85rem;
    margin: 1.5rem 0;
}

.summary-item {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
}

.summary-item strong {
    display: block;
    color: #111827;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.faq-item h3,
.faq-item h4 {
    margin-top: 0;
}

.notice {
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    background: #fef2f2;
    color: #7f1d1d;
    border: 1px solid #fecaca;
}

.site-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin: 1rem 0;
}

.site-footer-links a {
    color: #ddd;
    text-decoration: none;
}

.site-footer-links a:hover {
    color: #ff5733;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
}

/* Responsive - 行動裝置極致優化 */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-links {
        font-size: 0.85rem;
        gap: 0.8rem;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .feature-item, .feature-item:nth-child(even) {
        flex-direction: column;
    }
    .feature-image {
        max-width: 100%;
    }
    .hero {
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/assets/images/Freespincard_banner_mobile.webp') no-repeat center center/cover;
    }
    .online-casino-grid {
        grid-template-columns: 1fr; /* 手機版單欄排列 */
    }
    .feature-item {
        flex-direction: column; /* 手機版圖上文下 */
    }
    .feature-image img {
        max-width: 100%;
    }
}
/* 專屬於遊戲網格的容器 */
.online-casino-game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 自動適應寬度，每列最少280px */
    gap: 1.5rem;
    padding: 1rem 0;
}

/* 遊戲卡片主體 */
.casino-game-card {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column; /* 讓內容垂直排列 */
    justify-content: space-between; /* 確保按鈕在最下方對齊 */
    transition: transform 0.3s ease;
}

.casino-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* 統一遊戲圖片：解決大小不一的核心代碼 */
.casino-game-card img {
    width: 100%;
    height: 160px;           /* 固定高度 */
    object-fit: cover;       /* 裁切多餘部分而不變形 */
    object-position: center; /* 居中顯示 */
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* 遊戲標題樣式 */
.casino-game-card h4 {
    margin: 0.5rem 0 1rem;
    font-size: 1.1rem;
    color: #333;
    height: 2.4em;           /* 固定標題高度，避免長標題撐破排版 */
    overflow: hidden;
}

.game-cta {
    border: 0;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
}

.site-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.75);
}

.site-modal.active {
    display: flex;
}

.site-modal-panel {
    width: min(420px, 100%);
    position: relative;
    padding: 1.75rem;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

.site-modal-panel h3 {
    margin: 0 2rem 0.5rem 0;
}

.site-modal-panel p {
    margin-top: 0;
    color: #555;
}

.site-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.9rem;
    border: 0;
    background: transparent;
    color: #666;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
}

.site-modal-links {
    display: grid;
    gap: 0.75rem;
}

.site-modal-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0.9rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f8fafc;
    color: #222;
    font-weight: 700;
    text-decoration: none;
}

.site-modal-links a:hover {
    border-color: #ff5733;
    background: #fff7ed;
}

.site-modal-links img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* 手機端微調 */
@media (max-width: 480px) {
    .online-casino-game-grid {
        grid-template-columns: 1fr; /* 手機端單欄 */
    }
    .casino-game-card img {
        height: 180px; /* 手機端圖片稍微放大一點比較好看 */
    }
}

/* 新增：活動與遊戲列表樣式 */
.bonus-info-section {
    padding: 3rem 0;
    background-color: #ffffff;
}
.promo-box {
    background: #fff9f0;
    border-left: 5px solid #ff5733;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
}
.game-support-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: white;
}
.game-support-table th, .game-support-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}
.game-support-table th {
    background-color: #f8f8f8;
    color: #333;
}
.keyword-highlight {
    color: #ff5733;
    font-weight: bold;
}
/* --- Free Spin Experience Page 專屬強化 --- */

/* 複製代碼的小盒子 */
.copy-box {
    background: #f8f8f8;
    border: 1px dashed #ff5733;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

.copy-box code {
    font-size: 1.2rem;
    color: #ff5733;
    font-weight: bold;
    letter-spacing: 1px;
}

.copy-box button {
    background: #333;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
}

.copy-box button:hover { background: #ff5733; }

/* Step-by-Step 樣式 */
.step-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    text-align: center;
    padding: 20px;
}

.step-num {
    width: 40px;
    height: 40px;
    background: #ff5733;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 1.2rem;
}

/* FAQ 樣式 */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-item h4 {
    margin-top: 0;
    color: #ff5733;
}

/* --- 手機版 (UX/UI) 最佳化 --- */
@media (max-width: 768px) {
    .fsc-experience-page .hero h1 {
        font-size: 1.8rem; /* 標題在手機上縮小避免跑位 */
        padding: 0 10px;
    }
    
    .copy-box {
        flex-direction: column; /* 窄螢幕下按鈕往下排 */
        gap: 10px;
    }

    .step-item {
        border-bottom: 1px solid #eee;
    }
    
    .step-item:last-child {
        border-bottom: none;
    }
}
/* --- Free Spin Experience Hero 背景圖優化 --- */

/* 預設：網頁版 (電腦看的時候) */
.fsc-experience-page .hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('/assets/images/Getfreespin_banner_web.webp') no-repeat center center/cover !important;
    padding: 8rem 1rem; /* 增加一點高度感 */
}

/* 自動偵測：當螢幕寬度小於 768px 時 (手機/平板看的時候) */
@media (max-width: 768px) {
    .fsc-experience-page .hero {
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                    url('/assets/images/Getfreespin_banner_mob.webp') no-repeat center center/cover !important;
        padding: 5rem 1rem; /* 手機版縮短高度，讓用戶一眼看到下方的卡片 */
    }
}
/* 賭場群組容器 */
.casino-group {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.group-header {
    text-align: center;
    border-bottom: 2px solid #f4f7f6;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

/* 等級標籤 */
.level-tag {
    display: inline-block;
    background: #eee;
    color: #666;
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.level-tag.gold {
    background: #ff5733;
    color: #fff;
}

/* 獎勵文字 */
.reward-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #333;
    margin: 5px 0;
}

.reward-desc {
    color: #ff5733;
    font-weight: bold;
    font-size: 1rem;
}

.terms-text {
    font-size: 0.75rem;
    color: #999;
    line-height: 1.2;
}

/* 群組按鈕 */
.group-cta {
    width: 100% !important;
    box-sizing: border-box;
    text-align: center;
}

/* 手機版適配 */
@media (max-width: 768px) {
    .online-casino-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
}
/* 活動時間與每日標籤容器 */
.event-meta {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.meta-tag {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.meta-tag.daily {
    background: #eef2ff;
    color: #4338ca;
    border: 1px solid #c7d2fe;
}

.meta-tag.time {
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #fdba74;
}

/* 強化版卡片：如果是 LV3 進階版，我們可以加一個發光邊框 */
.casino-card.featured {
    border: 2px solid #ff5733 !important;
    position: relative;
}
@media (max-width: 768px) {
    /* 漢堡按鈕顯示 */
    .menu-toggle {
        display: flex !important;
    }

    /* 手機版選單容器 */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center; /* 水平置中核心 */
        justify-content: center; /* 垂直置中核心 */
        position: fixed; /* 改用 fixed 覆蓋全螢幕更專業 */
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98); /* 稍微透明的黑色深邃感 */
        padding: 0;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    .nav-links li a {
        font-size: 1.5rem; /* 手機版選單字體大一點更好點 */
    }
}
}

    @media (max-width: 768px) {
    /* 讓 X 按鈕只在手機版顯示 */
    .mobile-close {
        display: block !important;
        list-style: none;
    }

    /* 確保選單全螢幕置中 */
    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed; /* 改用 fixed 更穩定 */
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98); /* 加深背景色 */
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
}

/* Main navigation refinement */
.navbar {
    gap: 1rem;
}

.seo-nav {
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.45rem;
    max-width: 860px;
}

.seo-nav li {
    display: flex;
}

.seo-nav li a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.45rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #f3f4f6;
    font-size: 0.84rem;
    line-height: 1.2;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.04);
}

.seo-nav li a:hover,
.seo-nav li a.active {
    color: #fff;
    border-color: rgba(255, 87, 51, 0.55);
    background: rgba(255, 87, 51, 0.18);
}

.seo-nav .lang-switcher a {
    color: #1a1a1a;
    border-color: #ffb199;
    background: #ffdfd5;
    font-weight: 800;
}

.seo-nav .lang-switcher a:hover {
    color: #1a1a1a;
    background: #ffd0c1;
}

@media (max-width: 1180px) and (min-width: 769px) {
    .navbar {
        justify-content: center;
    }

    .logo {
        width: 100%;
        text-align: center;
    }

    .seo-nav {
        justify-content: center;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        gap: 0.75rem;
    }

    .logo {
        font-size: 1.45rem;
        letter-spacing: 0;
    }

    .seo-nav {
        flex-wrap: nowrap;
        gap: 0.75rem;
        max-width: none;
        padding: 5rem 1.25rem 2rem;
        box-sizing: border-box;
    }

    .seo-nav li {
        width: min(100%, 340px);
        justify-content: center;
        margin: 0.25rem 0;
    }

    .seo-nav li a {
        width: 100%;
        min-height: 48px;
        justify-content: center;
        padding: 0.7rem 1rem;
        border-radius: 12px;
        font-size: clamp(1rem, 4vw, 1.2rem);
        line-height: 1.25;
        text-align: center;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .seo-nav .mobile-close {
        width: auto;
        margin: 0;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* Unified navigation overrides */
header .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

header .logo {
    flex: 0 0 auto;
    white-space: nowrap;
    letter-spacing: 0;
}

header .seo-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

header .seo-nav li {
    display: flex;
    margin: 0;
}

header .seo-nav li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.45rem 0.72rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    color: #f3f4f6;
    font-size: 0.84rem;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

header .seo-nav li a:hover,
header .seo-nav li a.active {
    color: #fff;
    border-color: rgba(255,87,51,0.55);
    background: rgba(255,87,51,0.18);
}

header .seo-nav .lang-switcher a {
    color: #1a1a1a;
    border-color: #ffb199;
    background: #ffdfd5;
    font-weight: 800;
}

@media (max-width: 1180px) and (min-width: 769px) {
    header .navbar {
        justify-content: center;
    }

    header .logo {
        width: 100%;
        text-align: center;
    }

    header .seo-nav {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    header .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    header .logo {
        width: auto;
        max-width: calc(100% - 56px);
        font-size: 1.45rem;
    }

    header .menu-toggle {
        display: flex !important;
        flex: 0 0 auto;
    }

    header .seo-nav {
        display: none;
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        z-index: 1000;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 5rem 1.25rem 2rem;
        box-sizing: border-box;
        background: rgba(26,26,26,0.98);
    }

    header .seo-nav.active {
        display: flex;
    }

    header .seo-nav li {
        width: min(100%, 340px);
        justify-content: center;
    }

    header .seo-nav li a {
        width: 100%;
        min-height: 48px;
        padding: 0.7rem 1rem;
        border-radius: 12px;
        font-size: clamp(1rem, 4vw, 1.16rem);
        white-space: normal;
        overflow-wrap: anywhere;
    }

    header .seo-nav .mobile-close {
        display: block !important;
        position: absolute;
        top: 18px;
        right: 24px;
        width: auto;
    }
}
