/* ==========================================================================
   PGC88 Theme - Main Stylesheet v3.9.0
   Color Scheme: Chokhdi88 — black + electric blue / cyan (logo match)
   Layout: Matches reference design (topbar, 8-icon nav, hero, feature strip,
           jackpot, 3-col game section, footer SEO, footer bottom)
   AMP Compliant: No external fonts, no @import, < 75KB
   ========================================================================== */

:root {
    --accent: #00b4ff;
    --accent-soft: #3d8bfd;
    --accent-bright: #7dd3fc;
    --accent-deep: #0057d9;
    --accent-glow: rgba(0, 180, 255, 0.45);
    --accent-bg: rgba(0, 180, 255, 0.12);
    --sidebar-active-bg: #0a1a2e;
    --sidebar-active-border: #00b4ff;
    --bg-main: #000000;
    --bg-panel: #000000;
    --bg-card: #0a0f16;
    --border: #1a2433;
    --text-muted: #8a9bb0;
}

/* --------------------------------------------------------------------------
   1. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    margin-top: 0 !important;
    scroll-padding-top: 0;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-main);
    color: #fff;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    margin: 0 !important;
    padding: 0 !important;
}
html.admin-bar,
body.admin-bar {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
#wpadminbar {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
}
#main-content {
    margin: 0;
    padding: 0;
}
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-soft); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.3; margin-top: 0; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
[hidden] { display: none; }

/* --------------------------------------------------------------------------
   2. UTILITIES
   -------------------------------------------------------------------------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; width: 100%; }
.desktop-only { display: none; }
.mobile-only { display: block; }

@media (min-width: 769px) {
    .desktop-only { display: flex; }
    .mobile-only { display: none; }
}

/* --------------------------------------------------------------------------
   3. TOPBAR
   -------------------------------------------------------------------------- */
.topbar {
    background: var(--bg-panel);
    padding: 6px 0;
    font-size: 0.78rem;
    border-bottom: none;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.topbar-link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #e0d0d8;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 3px;
    transition: all 0.2s;
}
.topbar-link:first-child {
    background: linear-gradient(135deg, var(--accent-soft), var(--accent));
    color: #fff;
    font-weight: 600;
}
.topbar-link:hover { color: var(--accent); }
.topbar-icon { display: inline-flex; align-items: center; width: 16px; height: 16px; }
.topbar-icon svg { width: 14px; height: 14px; fill: currentColor; }
.topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}
.topbar-btn {
    padding: 5px 16px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
}
.topbar-btn.btn-login {
    border: 1px solid #3a5570;
    color: #fff;
    background: transparent;
}
.topbar-btn.btn-login:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-bg); }
.topbar-btn.btn-register {
    background: linear-gradient(135deg, var(--accent-soft), var(--accent));
    color: #fff;
}
.topbar-btn.btn-register:hover { background: linear-gradient(135deg, var(--accent-deep), var(--accent-soft)); }

/* Mobile topbar — neat equal buttons */
@media (max-width: 768px) {
    .topbar {
        padding: 8px 0;
    }
    .topbar .container {
        padding: 0 8px;
    }
    .topbar-inner {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
        align-items: stretch;
    }
    .topbar-left,
    .topbar-right {
        display: contents;
    }
    .topbar-link,
    .topbar-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        min-height: 36px;
        padding: 6px 4px;
        font-size: 0.65rem;
        font-weight: 600;
        line-height: 1.15;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        border-radius: 6px;
        box-sizing: border-box;
    }
    .topbar-link:first-child {
        background: linear-gradient(135deg, var(--accent-soft), var(--accent));
        color: #fff;
    }
    .topbar-link:not(:first-child) {
        border: 1px solid #3a5570;
        background: transparent;
        color: #fff;
        padding-left: 4px;
        padding-right: 4px;
    }
    .topbar-link:not(:first-child):hover {
        border-color: var(--accent);
        color: var(--accent);
    }
    .topbar-icon {
        flex-shrink: 0;
        width: 12px;
        height: 12px;
    }
    .topbar-icon svg {
        width: 12px;
        height: 12px;
    }
    .topbar-btn.btn-login {
        border: 1px solid var(--accent);
        color: #fff;
    }
    .topbar-btn.btn-register {
        background: linear-gradient(135deg, var(--accent-soft), var(--accent));
        color: #fff;
        border: none;
    }
}

/* --------------------------------------------------------------------------
   4. HEADER MAIN (Logo + 8 Nav Icons)
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-panel);
    margin: 0;
    padding: 0;
    border-bottom: none;
}
.header-main {
    background: var(--bg-panel);
    padding: 10px 0;
    border-bottom: none;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-logo img { display: block; height: auto; }
.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.2s;
    min-width: 55px;
    color: #e0d0d8;
    font-size: 0.65rem;
}
.nav-item:hover { background: var(--accent-bg); color: var(--accent); }
.nav-item span { white-space: nowrap; }

/* Mobile Menu Toggle */
.menu-toggle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}
.hamburger-icon {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    position: relative;
}
.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: #fff;
    left: 0;
}
.hamburger-icon::before { top: -7px; }
.hamburger-icon::after { top: 7px; }

/* --------------------------------------------------------------------------
   5. MOBILE SIDEBAR
   -------------------------------------------------------------------------- */
.mobile-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}
.mobile-sidebar-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85vw;
    height: 100%;
    background: var(--bg-panel);
    z-index: 10001;
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
}
.mobile-sidebar.is-open {
    transform: translateX(0);
}
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid var(--border);
}
.sidebar-close {
    font-size: 1.4rem;
    color: #fff;
    padding: 5px;
}
.sidebar-nav {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #eadce4;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s;
}
.sidebar-link:hover { background: var(--accent-bg); color: var(--accent-soft); }
.sidebar-actions {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--border);
}
.sidebar-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
}
.sidebar-btn.btn-login { border: 1px solid #3a5570; color: #fff; }
.sidebar-btn.btn-register { background: var(--accent-soft); color: #fff; }

/* --------------------------------------------------------------------------
   6. HERO BANNER (ใช้ AMP media attribute สำหรับ responsive)
   -------------------------------------------------------------------------- */
.hero-banner {
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    line-height: 0;
}
.hero-banner a { display: block; margin: 0; padding: 0; }
.hero-banner img { width: 100%; height: auto; margin: 0; padding: 0; vertical-align: top; }
.hero-banner img.banner-desktop { display: none; }
.hero-banner img.banner-mobile { display: block; }
@media (min-width: 769px) {
    .hero-banner img.banner-desktop { display: block; }
    .hero-banner img.banner-mobile { display: none; }
}
.tab-content[hidden] { display: none; }

@media (max-width: 768px) {
    .hero-banner {
        max-height: 55vh;
        overflow: hidden;
    }
    .hero-banner a {
        display: block;
        max-height: 55vh;
        overflow: hidden;
    }
}

/* --------------------------------------------------------------------------
   7. FEATURE STRIP (5 Columns with Gold Border)
   -------------------------------------------------------------------------- */
.feature-strip {
    background: var(--bg-panel);
    padding: 18px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 10px;
    border: 1px solid rgba(0, 180, 255, 0.45);
    border-radius: 8px;
    background: var(--accent-bg);
    transition: all 0.2s;
}
.feature-item:hover {
    border-color: var(--accent-soft);
    box-shadow: 0 0 12px var(--accent-glow);
}
.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon svg { width: 36px; height: 36px; fill: var(--accent); }
.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.feature-text strong {
    font-size: 0.78rem;
    color: var(--accent);
    line-height: 1.3;
}
.feature-text span {
    font-size: 0.68rem;
    color: #9a8090;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .feature-item {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 12px 8px;
        gap: 8px;
    }
    .feature-item:last-child { grid-column: span 2; }
    .feature-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto;
    }
    .feature-text {
        align-items: center;
        width: 100%;
    }
    .feature-text strong {
        font-size: 0.72rem;
        text-align: center;
    }
    .feature-text span {
        text-align: center;
    }
}

/* --------------------------------------------------------------------------
   8. JACKPOT SECTION (Simple centered text)
   -------------------------------------------------------------------------- */
.jackpot-section {
    padding: 22px 0;
    text-align: center;
}
.jackpot-display {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
}
.jackpot-currency {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
}
.jackpot-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    text-shadow: 0 0 15px var(--accent-glow);
}

@media (min-width: 769px) {
    .jackpot-number { font-size: 2.5rem; }
    .jackpot-currency { font-size: 1.3rem; }
}

/* --------------------------------------------------------------------------
   9. GAME SECTION (3-Column Layout: Sidebar | Grid | Ad)
   -------------------------------------------------------------------------- */
.game-section {
    padding: 15px 0 30px;
    background: var(--bg-main);
}
.game-layout {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) 220px;
    gap: 10px;
    align-items: stretch;
    min-height: 380px;
}

/* Left Sidebar */
.game-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}
.sidebar-tabs {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sidebar-tab-btn {
    padding: 12px 10px;
    text-align: left;
    font-size: 0.82rem;
    color: var(--accent);
    background: transparent;
    border-left: 3px solid transparent;
    transition: all 0.2s;
    font-weight: 500;
    line-height: 1.3;
}
.sidebar-tab-btn.active,
.sidebar-tab-btn:hover {
    background: var(--sidebar-active-bg);
    border-left-color: var(--sidebar-active-border);
    color: #fff;
}
.sidebar-link-btn {
    display: block;
    padding: 10px 8px;
    border: 1px solid #333;
    border-radius: 4px;
    text-align: center;
    font-size: 0.72rem;
    color: #ccc;
    margin-top: auto;
    transition: all 0.2s;
}
.sidebar-link-btn:hover { border-color: var(--accent); color: var(--accent); }

/* Center: Game Grid */
.game-center {
    background: transparent;
    border-radius: 0;
    padding: 0 6px;
    border: none;
    min-width: 0;
}
.provider-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.provider-tab {
    padding: 6px 14px;
    border: 1px solid #333;
    border-radius: 6px;
    font-size: 0.72rem;
    color: #666;
    transition: all 0.2s;
    white-space: nowrap;
    background: transparent;
}
.provider-tab.active,
.provider-tab:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: transparent;
}
.game-section-label {
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 12px;
}
.game-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.game-item {
    min-width: 0;
}
.game-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 8px;
    border: 1px solid transparent;
    border-radius: 10px;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.game-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
}
.game-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 3 / 4;
    background: #0a0a0a;
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
}
.game-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.game-name {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.72rem;
    color: #bbb;
    padding: 8px 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.game-card:hover .game-name {
    color: #ddd;
}

/* Right: Ad Banner */
.game-ad-banner {
    display: flex;
    align-items: stretch;
    min-width: 0;
}
.ad-banner-link {
    display: block;
    width: 100%;
    border: 2px solid var(--accent);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.ad-banner-link:hover { box-shadow: 0 0 12px var(--accent-glow); }
.ad-banner-link img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
}
.ad-placeholder {
    width: 100%;
    border: 2px solid var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #555;
    background: var(--bg-main);
    min-height: 380px;
}

@media (min-width: 769px) {
    .game-layout {
        display: grid;
        grid-template-columns: 150px minmax(0, 1fr) 220px;
    }
    .game-sidebar {
        display: flex;
    }
    .game-ad-banner {
        display: flex;
    }
}

@media (max-width: 768px) {
    .game-layout { grid-template-columns: 1fr; gap: 10px; }
    .game-sidebar { flex-direction: row; overflow-x: auto; gap: 4px; padding-bottom: 5px; }
    .sidebar-tabs { flex-direction: row; width: 100%; }
    .sidebar-tab-btn {
        white-space: nowrap;
        border-left: none;
        border-bottom: 2px solid transparent;
        padding: 8px 12px;
        font-size: 0.78rem;
        flex: 1;
        text-align: center;
    }
    .sidebar-tab-btn.active,
    .sidebar-tab-btn:hover {
        border-bottom-color: var(--accent);
        border-left-color: transparent;
    }
    .sidebar-link-btn { display: none; }
    .game-ad-banner { display: none; }
    .game-center { padding: 0; }
    .game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
    .game-card { padding: 6px; border-radius: 8px; }
    .game-name { font-size: 0.62rem; padding: 6px 2px 0; }
}

/* --------------------------------------------------------------------------
   10. SEO CONTENT SECTION
   -------------------------------------------------------------------------- */
.seo-content-section {
    background: var(--bg-panel);
    padding: 28px 0;
    border-top: 1px solid var(--border);
}
.seo-content-inner { max-width: 900px; }
.breadcrumbs-title {
    font-size: 0.78rem;
    color: #8a7080;
    margin-bottom: 10px;
}
.breadcrumbs-title a,
.breadcrumbs-link {
    color: var(--accent-soft);
    text-decoration: underline;
}
.seo-content-inner h1 {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 14px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.seo-article {
    font-size: 0.82rem;
    color: #aaa;
    line-height: 1.7;
}
.seo-article p { margin-bottom: 12px; }
.seo-article a { color: var(--accent-soft); text-decoration: underline; }

/* --------------------------------------------------------------------------
   11. FOOTER: BOTTOM BAR
   -------------------------------------------------------------------------- */
.site-footer-body {
    background: var(--bg-panel);
    padding: 18px 0;
    border-top: 1px solid var(--border);
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-copyright p {
    font-size: 0.8rem;
    color: #9a8090;
}
.footer-copyright strong { color: #fff; }
.footer-certs {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-social-title {
    font-size: 0.78rem;
    color: #9a8090;
}
.social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.social-icons a:hover { opacity: 1; }

@media (max-width: 768px) {
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* --------------------------------------------------------------------------
   12. FIXED MOBILE FOOTER
   -------------------------------------------------------------------------- */
.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-panel);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    z-index: 9999;
}
.fixed-footer a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: #8a7080;
    font-size: 0.62rem;
    text-decoration: none;
    transition: color 0.2s;
}
.fixed-footer a[data-active="true"] { color: var(--accent-soft); }
.fixed-footer a:hover { color: var(--accent-soft); }
.fixed-footer-icon { width: 20px; height: 20px; }
.fixed-footer-icon svg { width: 100%; height: 100%; fill: currentColor; }

@media (max-width: 768px) {
    body { padding-bottom: 58px; }
}

/* --------------------------------------------------------------------------
   13. SINGLE PAGE / POST
   -------------------------------------------------------------------------- */
.page-content,
.post-content { padding: 30px 0; }
.page-content h1,
.post-content h1 { font-size: 1.4rem; color: var(--accent); margin-bottom: 15px; }
.page-content .entry-content,
.post-content .entry-content { font-size: 0.88rem; color: #eadce4; line-height: 1.8; }
.page-content .entry-content p,
.post-content .entry-content p { margin-bottom: 15px; }

/* --------------------------------------------------------------------------
   14. 404 PAGE
   -------------------------------------------------------------------------- */
.error-404 { text-align: center; padding: 60px 15px; }
.error-404 h1 { font-size: 4rem; color: var(--accent-soft); margin-bottom: 10px; }
.error-404 p { font-size: 1.1rem; color: #9a8090; margin-bottom: 20px; }
.error-404 a {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-soft);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   15. MOBILE LAYOUT V2 (CTA + Icon Menu Grid)
   แสดงเฉพาะ mobile เมื่อเลือก mobile_layout_version = v2
   -------------------------------------------------------------------------- */

/* CTA Buttons (ลงทะเบียน / เข้าสู่ระบบ) */
.mobile-v2-cta {
    padding: 12px 0 8px;
    background: var(--bg-main);
}
.cta-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 10px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
}
.cta-btn.cta-register {
    background: linear-gradient(135deg, var(--accent-soft), var(--accent));
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-glow);
}
.cta-btn.cta-register:hover {
    background: linear-gradient(135deg, var(--accent-deep), var(--accent-soft));
    box-shadow: 0 4px 20px var(--accent-glow);
}
.cta-btn.cta-login {
    background: linear-gradient(135deg, #222, #333);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.cta-btn.cta-login:hover {
    background: linear-gradient(135deg, #111, #222);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

/* Icon Menu Grid (2 rows x 4 columns) */
.mobile-v2-menu {
    padding: 12px 0 16px;
    background: var(--bg-panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.icon-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 8px;
}
.icon-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: transform 0.2s;
}
.icon-menu-item:hover {
    transform: translateY(-2px);
}
.icon-menu-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-glow);
    background: var(--accent-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.icon-menu-item:hover .icon-menu-circle {
    border-color: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
    background: var(--accent-bg);
}
.icon-menu-label {
    font-size: 0.72rem;
    color: #e0d0d8;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70px;
}
.icon-menu-item:hover .icon-menu-label {
    color: var(--accent);
}

/* Desktop: ซ่อน mobile-v2 sections */
@media (min-width: 769px) {
    .mobile-v2-cta,
    .mobile-v2-menu {
        display: none;
    }
}