/*
 * X8Poker Main Stylesheet
 * Based on x8.helloseo.net design system
 * Dark crypto casino theme
 */

/* ============================================================
   1. CSS Variables (Design Tokens)
   ============================================================ */

:root {
    --color-base: #0A0B10;
    --color-surface: #171b2d;
    --color-panel: #1B1E2B;
    --color-hover-panel: #232736;
    --color-accent: #d0ff00;
    --color-accent-hover: #b8e600;
    --color-text-main: #FFFFFF;
    --color-text-muted: #848B9D;
    --color-border: #25293A;
    --color-border-hover: #848B9D;
    --color-placeholder: #4A5063;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --sidebar-width: 260px;
    --sidebar-collapsed-width: 60px;
    --header-height: 80px;
    --mobile-nav-height: 72px;
}

/* ============================================================
   2. Reset & Base
   ============================================================ */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4;
    font-family: var(--font-family);
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--color-base);
    color: var(--color-text-muted);
    font-family: var(--font-family);
    font-size: 0.875rem;
    overflow: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

p {
    margin: 0;
}

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

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

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    border: none;
    background: transparent;
}

input {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================================
   3. Layout: App Shell
   ============================================================ */

.app-shell {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* ============================================================
   4. Sidebar
   ============================================================ */

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--sidebar-width);
    background-color: var(--color-surface);
    display: flex;
    flex-direction: column;
    z-index: 50;
    border-right: 1px solid var(--color-border);
    transition: width 0.3s ease-in-out, transform 0.3s ease-in-out;
    flex-shrink: 0;
}

.sidebar-brand {
    padding: 1rem;
    flex-shrink: 0;
}

.sidebar-toggle-buttons {
    display: flex;
    background-color: var(--color-base);
    border-radius: 0.5rem;
    padding: 0.25rem;
    border: 1px solid var(--color-border);
}

.sidebar-toggle-btn {
    flex: 1;
    padding: 0.5rem 0;
    border-radius: 0.375rem;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.15s ease;
}

.sidebar-toggle-btn.active {
    background-color: var(--color-accent);
    color: #000;
}

.sidebar-toggle-btn.inactive {
    color: var(--color-text-muted);
}

.sidebar-toggle-btn.inactive:hover {
    color: var(--color-text-main);
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem;
}

/* Custom scrollbar for sidebar */
.sidebar-nav::-webkit-scrollbar {
    width: 6px;
}

.sidebar-nav::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-nav::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 10px;
}

.sidebar-nav::-webkit-scrollbar-thumb:hover {
    background: #3f4559;
}

.nav-divider {
    margin: 0.75rem 0;
    border-top: 1px solid var(--color-border);
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 0.625rem 0.75rem;
    color: var(--color-text-muted);
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.15s ease;
}

.nav-item:hover {
    background-color: var(--color-hover-panel);
    color: var(--color-text-main);
}

.nav-item.active {
    color: var(--color-accent);
    font-weight: 700;
}

.nav-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-text {
    margin-left: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
}

.sidebar-ad {
    margin-top: 1.5rem;
    padding: 0 0.75rem;
}

.sidebar-ad img {
    width: 100%;
    height: 6rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.sidebar-bottom {
    padding: 1rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    flex-shrink: 0;
}

.sidebar-bottom-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background-color: var(--color-panel);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: color 0.15s ease;
}

.sidebar-bottom-btn:hover {
    color: var(--color-text-main);
}

/* Sidebar collapse button (desktop) */
.sidebar-collapse-btn {
    display: none;
    position: absolute;
    left: auto;
    right: -0.75rem;
    top: 5rem;
    width: 34px;
    height: 34px;
    background-color: var(--color-border);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--color-text-main);
    border: 1px solid var(--color-base);
    z-index: 50;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.sidebar-collapse-btn:hover {
    background-color: var(--color-text-muted);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

/* Collapsed state */
.sidebar.sidebar-collapsed {
    width: var(--sidebar-collapsed-width);
}

.sidebar.sidebar-collapsed .nav-text {
    display: none;
}

.sidebar.sidebar-collapsed .nav-item {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
}

.sidebar.sidebar-collapsed .sidebar-brand,
.sidebar.sidebar-collapsed .nav-divider,
.sidebar.sidebar-collapsed .sidebar-ad,
.sidebar.sidebar-collapsed .sidebar-bottom {
    display: none;
}

.sidebar.sidebar-collapsed .nav-icon {
    margin-left: 0 !important;
}

.sidebar.sidebar-collapsed .arrow-icon {
    transform: rotate(180deg);
}

/* Mobile overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 40;
    backdrop-filter: blur(4px);
}

/* ============================================================
   5. Main Content Area
   ============================================================ */

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    position: relative;
    margin-left: var(--sidebar-width);
    transition: margin-left 0.3s ease;
}

.main-content.sidebar-collapsed {
    margin-left: var(--sidebar-collapsed-width);
}

.content-scroll {
    flex: 1;
    overflow-y: auto;
    position: relative;
    background-color: var(--color-base);
}

.content-scroll::-webkit-scrollbar {
    width: 6px;
}

.content-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.content-scroll::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 10px;
}

.content-scroll::-webkit-scrollbar-thumb:hover {
    background: #3f4559;
}

.content-wrapper {
    padding: 1rem;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

/* ============================================================
   6. Header / Top Bar
   ============================================================ */

.top-header {
    height: var(--header-height);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 30;
    background-color: var(--color-base);
}

.header-logo img {
    max-height: 50px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ============================================================
   7. Buttons
   ============================================================ */

.btn-login {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
    border-radius: 0.375rem;
    background: transparent;
    transition: background-color 0.15s ease;
    cursor: pointer;
}

.btn-login:hover {
    background-color: var(--color-panel);
}

.btn-signup {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #000;
    background-color: var(--color-accent);
    border-radius: 0.375rem;
    border: none;
    transition: background-color 0.15s ease;
    cursor: pointer;
}

.btn-signup:hover {
    background-color: var(--color-accent-hover);
}

.btn-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    font-weight: 700;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.15s ease;
    flex-shrink: 0;
}

.btn-category.active {
    background-color: var(--color-accent);
    color: #000;
}

.btn-category.inactive {
    background-color: transparent;
    color: var(--color-text-main);
}

.btn-category.inactive:hover {
    background-color: var(--color-panel);
}

/* ============================================================
   8. Banner / Carousel
   ============================================================ */

.banner-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.banner-carousel::-webkit-scrollbar {
    display: none;
}

.banner-img {
    min-width: 300px;
    flex: 1;
    height: 12rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
    scroll-snap-align: center;
    object-fit: cover;
}

/* ============================================================
   9. Search Bar
   ============================================================ */

.search-bar {
    width: 100%;
    background-color: var(--color-panel);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    transition: border-color 0.15s ease;
}

.search-bar:focus-within {
    border-color: var(--color-text-muted);
}

.search-bar input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--color-text-main);
    font-size: 1rem;
    width: 100%;
    margin-left: 0.75rem;
    font-weight: 500;
}

.search-bar input::placeholder {
    color: var(--color-text-muted);
}

/* ============================================================
   10. Category Filters
   ============================================================ */

.category-filters {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.category-filters::-webkit-scrollbar {
    display: none;
}

/* ============================================================
   11. Provider Strip
   ============================================================ */

.provider-strip {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
}

.provider-strip::-webkit-scrollbar {
    display: none;
}

.provider-item {
    height: 3rem;
    padding: 0 1.5rem;
    background-color: var(--color-panel);
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: border-color 0.15s ease;
}

.provider-item:hover {
    border-color: var(--color-text-muted);
}

.provider-item span {
    color: var(--color-text-muted);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.15s ease;
}

.provider-item:hover span {
    color: var(--color-text-main);
}

/* ============================================================
   12. Game / Post Grid
   ============================================================ */

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-view-all {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-text-main);
    transition: color 0.15s ease;
}

.section-view-all:hover {
    color: var(--color-text-muted);
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

/* ============================================================
   13. Post Card (Content Site Version)
   ============================================================ */

.post-card {
    background-color: var(--color-panel);
    border-radius: 0.75rem;
    overflow: hidden;
    border: 2px solid rgba(88, 28, 135, 0.5);
    transition: border-color 0.15s ease;
    cursor: pointer;
    display: block;
}

.post-card:hover {
    border-color: var(--color-accent);
}

.post-card-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background-color: var(--color-panel);
}

.post-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card-body {
    padding: 0.75rem;
}

.post-card-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.3;
    margin-bottom: 0.375rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-excerpt {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-meta {
    font-size: 0.7rem;
    color: var(--color-placeholder);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================================
   14. Single Post
   ============================================================ */

.single-post-layout {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
}

.single-post-content {
    flex: 1;
    min-width: 0;
}

.single-post-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.post-header {
    margin-bottom: 2rem;
}

.post-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-main);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.post-body {
    color: #c8ccd4;
    font-size: 1rem;
    line-height: 1.8;
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 2rem 0 1rem;
}

.post-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin: 1.5rem 0 0.75rem;
}

.post-body a {
    color: var(--color-accent);
    text-decoration: underline;
}

.post-body a:hover {
    color: var(--color-accent-hover);
}

.post-body img {
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.post-body ul, .post-body ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.post-body li {
    margin-bottom: 0.5rem;
}

.post-body ul li {
    list-style-type: disc;
}

.post-body ol li {
    list-style-type: decimal;
}

.post-body blockquote {
    border-left: 3px solid var(--color-accent);
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: var(--color-text-muted);
    font-style: italic;
}

.post-body code {
    background-color: var(--color-surface);
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-size: 0.9em;
}

.post-body pre {
    background-color: var(--color-surface);
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

/* ============================================================
   15. Page Template
   ============================================================ */

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.page-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 2rem;
}

/* ============================================================
   16. Sidebar Widgets
   ============================================================ */

.widget-area {
    position: sticky;
    top: 1rem;
}

.widget {
    background-color: var(--color-panel);
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid var(--color-border);
}

.widget-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(37, 41, 58, 0.5);
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    transition: color 0.15s ease;
}

.widget ul li a:hover {
    color: var(--color-accent);
}

/* ============================================================
   17. Footer
   ============================================================ */

.site-footer {
    width: 100%;
    border-top: 1px solid var(--color-border);
    margin-top: 2.5rem;
}

.footer-collapse {
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.footer-collapse-box {
    max-width: 1600px;
    margin: 0 auto;
    background-color: var(--color-panel);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.footer-collapse-box:hover {
    background-color: var(--color-hover-panel);
}

.footer-main {
    padding: 2.5rem 1rem;
}

.footer-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand img {
    max-height: 40px;
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-18 {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid var(--color-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-main);
    font-weight: 700;
    font-size: 0.75rem;
}

.badge-rg {
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--color-text-main);
    border-radius: 0.25rem;
    color: var(--color-text-main);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.badge-rg .rg-sub {
    font-weight: 400;
    font-size: 0.625rem;
    line-height: 1.2;
}

.footer-col h4 {
    color: var(--color-text-main);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--color-text-muted);
    font-size: 0.8125rem;
    transition: color 0.15s ease;
}

.footer-col ul li a:hover {
    color: var(--color-text-main);
}

.footer-crypto {
    padding: 1.5rem 1rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    overflow-x: auto;
}

.footer-crypto::-webkit-scrollbar {
    display: none;
}

.crypto-dot {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
    color: #fff;
    background-color: var(--color-panel);
    border: 1px solid var(--color-border);
}

/* ============================================================
   18. Mobile Bottom Navigation
   ============================================================ */

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #11131C;
    border-top: 1px solid var(--color-border);
    justify-content: space-around;
    align-items: center;
    height: var(--mobile-nav-height);
    z-index: 50;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 25%;
    height: 100%;
    color: var(--color-text-muted);
    transition: color 0.15s ease;
    border: none;
    background: none;
    cursor: pointer;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--color-text-main);
}

.mobile-nav-item svg {
    width: 1.5rem;
    height: 1.5rem;
    margin-bottom: 0.25rem;
}

.mobile-nav-item span {
    font-size: 0.6875rem;
    font-weight: 600;
}

/* ============================================================
   19. Responsive Design
   ============================================================ */

/* Tablet */
@media (min-width: 768px) {
    .content-wrapper {
        padding: 1rem 2rem;
    }

    .top-header {
        padding: 0 2rem;
    }

    .post-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .banner-img {
        height: 14rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .sidebar {
        position: relative;
        transform: translateX(0);
    }

    .sidebar-collapse-btn {
        display: flex;
    }

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

    .main-content {
        margin-left: 0;
    }

    .content-wrapper {
        padding: 2rem;
    }

    .post-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .banner-img {
        height: 16rem;
        min-width: 0;
    }

    .footer-main {
        padding: 2.5rem 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .single-post-content {
        max-width: 800px;
    }
}

/* Large Desktop */
@media (min-width: 1280px) {
    .post-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.mobile-open {
        transform: translateX(0);
    }

    .mobile-overlay.mobile-open {
        display: block;
    }

    .main-content {
        margin-left: 0 !important;
    }

    .content-wrapper {
        padding-bottom: calc(var(--mobile-nav-height) + 1rem);
    }

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

    .post-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .top-header {
        padding: 0 0.75rem;
        height: 60px;
    }

    .single-post-layout {
        flex-direction: column;
    }

    .single-post-sidebar {
        width: 100%;
    }

    .post-title {
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .header-logo img {
        max-height: 35px;
    }

    .btn-login,
    .btn-signup {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
}

/* ============================================================
   20. WordPress Admin Bar Adjustment
   ============================================================ */

.admin-bar .sidebar {
    top: 32px;
    height: calc(100% - 32px);
}

.admin-bar .top-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .sidebar {
        top: 46px;
        height: calc(100% - 46px);
    }
}

/* ============================================================
   21. Utility Classes
   ============================================================ */

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.text-accent {
    color: var(--color-accent);
}

.text-main {
    color: var(--color-text-main);
}

.text-muted {
    color: var(--color-text-muted);
}

.bg-panel {
    background-color: var(--color-panel);
}

.bg-surface {
    background-color: var(--color-surface);
}
