:root {
    --bg-dark: #0f111a;
    --panel-bg: rgba(255, 255, 255, 0.03);
    --panel-border: rgba(255, 255, 255, 0.08);
    --text-main: #f0f0f5;
    --text-muted: #8d92a5;
    --accent: #6b4cff;
    --accent-glow: rgba(107, 76, 255, 0.6);
    --green: #4ade80;
    --red: #f87171;
    --yellow: #fbbf24;
    --card-bg: white;
    --font-family: 'Outfit', system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    zoom: 0.9;
}

body {
    background: radial-gradient(circle at 50% 10%, #1e1933, var(--bg-dark) 80%);
    color: var(--text-main);
    font-family: var(--font-family);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 70px;
    padding-left: 80px;
    transition: padding-left 0.4s ease;
}

body.sidebar-open {
    padding-left: 250px;
}

.app-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    min-height: calc((100vh / 0.9) - 70px);
    padding: 2rem;
    gap: 2rem;
    align-items: center;
}

/* Glassmorphism utility */
.glass-panel {
    background: var(--panel-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--panel-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* --- Global Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    z-index: 1000;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
}

.nav-left,
.nav-center,
.nav-right {
    display: flex;
    align-items: center;
    flex: 1;
}

.nav-left {
    gap: 1.5rem;
    justify-content: flex-start;
}

.nav-center {
    justify-content: center;
}

.nav-right {
    justify-content: flex-end;
}

.search-bar {
    width: 100%;
    max-width: 400px;
    padding: 0.75rem 1.5rem;
    border-radius: 24px;
    border: 1px solid var(--panel-border);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.search-bar:focus {
    border-color: var(--accent);
    box-shadow: 0 4px 15px var(--accent-glow);
    background: rgba(255, 255, 255, 0.08);
}

.nav-brand {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    color: var(--text-main);
    letter-spacing: -0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-link {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.15s, font-weight 0.15s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-link::before {
    display: block;
    content: attr(data-text);
    font-weight: 800;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    user-select: none;
}

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

.nav-link.active-nav {
    font-weight: 800;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    box-shadow: 0 4px 15px var(--accent-glow);
    border-radius: 2px;
    transform: scaleX(0) translateZ(0);
    transform-origin: center;
    transition: transform 0.3s ease-out;
    backface-visibility: hidden;
    will-change: transform;
}

.nav-link.active-nav::after {
    transform: scaleX(1) translateZ(0);
}

.nav-icon {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s, text-shadow 0.2s, filter 0.2s;
}

.nav-icon:hover {
    color: #ffffff;
    filter: brightness(1.2);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* --- Sidebar --- */
.sidebar {
    position: fixed;
    top: 70px;
    left: 0;
    bottom: 0;
    width: 80px;
    background: transparent;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-bottom: none;
    border-right: 1px solid var(--panel-border);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 900;
    overflow-y: auto;
    overflow-x: hidden;
    transition: width 0.4s ease, transform 0.4s ease;
}

.sidebar.open,
.sidebar:hover {
    width: 250px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 0.875rem 0 0.875rem 29px;
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.sidebar-item:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.03);
}

.sidebar-item.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.sidebar-item svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.sidebar-text {
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}

.sidebar.open .sidebar-text,
.sidebar:hover .sidebar-text {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease 0.1s, visibility 0s linear 0s;
}

/* --- Placeholder Views --- */
.app-container.placeholder-view {
    align-items: flex-start;
    padding-top: 5rem;
}

.placeholder-area {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* --- Section Headers --- */
.section-header,
.placeholder-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    align-self: flex-start;
    width: 100%;
    justify-content: flex-start;
    padding-left: 0.5rem;
}

.section-header svg,
.placeholder-header svg {
    color: var(--text-main);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.section-header h1,
.placeholder-header h1 {
    font-size: 2.8rem;
    color: white;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow:
        0 0 1px rgba(255, 255, 255, 0.4),
        0 0 10px rgba(255, 255, 255, 0.1);
}

.placeholder-box {
    width: 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem 2rem;
}

.placeholder-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* --- Home View --- */
.home-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 4rem;
    text-align: center;
    max-width: 1400px;
    width: 95%;
    min-height: calc((100vh / 0.9) - 70px);
    animation: fadeInHome 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.home-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.game-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 1300px;
    margin: 3rem auto 0 auto;
    padding: 1rem 0 2rem 0;
}

.game-sel-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s, border-color 0.3s;
    background: rgba(255, 255, 255, 0.05);
    flex: 0 0 160px;
    text-align: center;
}

.game-sel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(107, 76, 255, 0.2);
    border-color: var(--accent);
}

.game-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.3));
}

.game-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
}

@keyframes fadeInHome {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* --- Stats Box --- */
.stats-box {
    width: 250px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stats-box h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 600;
}

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

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

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

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

.btn-small {
    margin-top: auto;
    font-size: 0.875rem;
    padding: 0.5rem;
}

/* --- Main Game Area --- */
.game-area {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 800px;
    gap: 1.5rem;
}

header {
    text-align: center;
    margin-bottom: 1rem;
}

.game-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.accent {
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
}

.game-message {
    font-size: 1.25rem;
    color: var(--text-muted);
    height: 30px;
    transition: color 0.3s;
}

.table {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

/* subtle table grid pattern */
.table::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
}

.player-area {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-info h2 {
    font-size: 1.5rem;
    font-weight: 400;
}

.score-badge {
    background: rgba(0, 0, 0, 0.5);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid var(--panel-border);
}

.cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -40px;
    min-height: 160px;
    width: 100%;
}

/* --- Cards --- */
.card {
    width: 110px;
    height: 154px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.4);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.5rem;
    margin-left: -50px;
    transform: translateY(-20px);
    opacity: 0;
    animation: slideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    transition: transform 0.2s, box-shadow 0.2s;
    user-select: none;
}

.card:first-child {
    margin-left: 0;
}

.card:hover {
    transform: translateY(-30px);
    box-shadow: -4px 8px 25px rgba(0, 0, 0, 0.5);
    z-index: 10 !important;
}

@keyframes slideIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.card-value {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.card-suit {
    font-size: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-bottom {
    transform: rotate(180deg);
}

.card.red-suit {
    color: #ef4444;
}

.card.black-suit {
    color: #1f2937;
}

.card.hidden-card {
    background: repeating-linear-gradient(45deg,
            #1e1b4b,
            #1e1b4b 10px,
            #312e81 10px,
            #312e81 20px);
    border: 4px solid var(--text-main);
}

.card.hidden-card .card-value,
.card.hidden-card .card-suit {
    display: none;
}

/* --- Controls --- */
.controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem;
}

.btn {
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 16px;
    font-family: inherit;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

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

.btn-primary:not(:disabled):hover {
    background: #7a5cff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-action {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-action:not(:disabled):hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--panel-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

@media (max-width: 900px) {

    body,
    body.sidebar-open {
        padding-left: 0;
    }

    .sidebar {
        width: 250px;
        transform: translateX(-100%);
        background: var(--bg-dark);
        /* Solid background on mobile */
        padding: 1.5rem 1rem;
    }

    .sidebar-item {
        justify-content: flex-start;
        padding: 0.875rem 1rem;
    }

    .sidebar-text {
        display: block;
    }

    .sidebar.open {
        transform: translateX(0);
        width: 250px;
    }

    .app-container {
        flex-direction: column;
        padding: 1rem;
        height: auto;
    }

    .stats-box {
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        padding: 1rem;
        flex-wrap: wrap;
    }

    .stats-box h2 {
        display: none;
    }

    .btn-small {
        margin-top: 0;
        padding: 0.5rem 1rem;
    }

    .card {
        width: 80px;
        height: 112px;
        margin-left: -40px;
    }

    .card-value {
        font-size: 1.25rem;
    }

    .game-area {
        max-height: none;
    }
}

/* Animations for result */
.win-anim {
    color: var(--green);
    animation: popOut 0.5s ease;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.lose-anim {
    color: var(--red);
}

.tie-anim {
    color: var(--yellow);
}

@keyframes popOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* --- Global Footer --- */
.site-footer {
    width: 100%;
    padding: 3rem 2rem;
    margin-top: auto;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--panel-border);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
}

.footer-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links span {
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s;
}

.footer-links span:hover {
    color: var(--text-main);
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
}

.social-icon {
    color: var(--text-muted);
    transition: color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--text-main);
    transform: translateY(-2px);
}

.footer-content p {
    color: rgba(141, 146, 165, 0.5);
    font-size: 0.95rem;
}

/* --- Sidebar System Settings --- */
body.sidebar-always-show {
    padding-left: 250px !important;
}

body.sidebar-always-show #main-sidebar {
    width: 250px !important;
    transform: translateX(0) !important;
}

body.sidebar-always-show #main-sidebar .sidebar-text {
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
}

body.sidebar-always-hide {
    padding-left: 80px !important;
}

body.sidebar-always-hide #main-sidebar {
    width: 80px !important;
    display: flex !important;
}

body.sidebar-always-hide #main-sidebar .sidebar-text {
    opacity: 0 !important;
    visibility: hidden !important;
}

body.sidebar-always-hide #main-sidebar.minimized-expanded {
    width: 250px !important;
}

body.sidebar-always-hide #main-sidebar.minimized-expanded .sidebar-text {
    opacity: 1 !important;
    visibility: visible !important;
    transition: opacity 0.3s ease 0.1s, visibility 0s linear 0s !important;
}

/* Active Setting Highlight */
.active-setting {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: white !important;
    box-shadow: 0 0 15px var(--accent-glow) !important;
}

/* --- Disable Animations --- */
body.no-animations *,
body.no-animations *::before,
body.no-animations *::after {
    animation: none !important;
    transition: none !important;
}

/* --- Disable Transparency Effects --- */
body.no-transparency .glass-panel {
    background: #1a1d2e !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

body.no-transparency .navbar {
    background: #1a1d2e !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

body.no-transparency .sidebar {
    background: #1a1d2e !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Dark theme + no-transparency: match the pure dark background */
body.theme-dark.no-transparency .glass-panel,
body.theme-dark.no-transparency .navbar,
body.theme-dark.no-transparency .sidebar {
    background: #0d0e11 !important;
}

body.no-transparency * {
    text-shadow: none !important;
    filter: none !important;
}

body.no-transparency .accent {
    text-shadow: none !important;
}

body.no-transparency .btn,
body.no-transparency .active-setting,
body.no-transparency .nav-link::after,
body.no-transparency .search-bar:focus {
    box-shadow: none !important;
}

body.no-transparency .score-badge,
body.no-transparency .glass-panel,
body.no-transparency .sidebar {
    box-shadow: none !important;
}

/* --- Disable Background Gradient --- */
body.no-gradient {
    background: var(--bg-dark) !important;
}

/* --- Settings Select Dropdown --- */
.settings-select {
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--panel-border);
    border-radius: 10px;
    color: var(--text-main);
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238d92a5' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

.settings-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.settings-select option {
    background: #1a1d2e;
    color: var(--text-main);
}

/* --- Light Theme --- */
body.theme-light {
    background: #e4e7f0 !important;
    color: #1a1d2e !important;
}

body.theme-light {
    --bg-dark: #e4e7f0;
    --panel-bg: rgba(255, 255, 255, 0.7);
    --panel-border: rgba(0, 0, 0, 0.1);
    --text-main: #1a1d2e;
    --text-muted: #5a6080;
    --accent-glow: rgba(107, 76, 255, 0.3);
}

body.theme-light .navbar,
body.theme-light .sidebar {
    background: #f0f2f8 !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

body.theme-light .sidebar-item {
    color: #5a6080;
}

body.theme-light .sidebar-item:hover,
body.theme-light .sidebar-item.active {
    color: #1a1d2e;
    background: rgba(0, 0, 0, 0.05);
}

body.theme-light .nav-link {
    color: #5a6080;
}

body.theme-light .nav-link:hover,
body.theme-light .nav-link.active-nav {
    color: #1a1d2e;
}

body.theme-light .search-bar {
    background: rgba(0, 0, 0, 0.06);
    color: #1a1d2e;
    border-color: rgba(0, 0, 0, 0.1);
}

body.theme-light .search-bar::placeholder {
    color: #8d92a5;
}

body.theme-light .placeholder-box {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.08);
}

body.theme-light .game-sel-card {
    background: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

body.theme-light .btn-secondary {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.12);
    color: #1a1d2e;
}

body.theme-light .settings-select {
    background-color: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.15) !important;
    color: #0a0c14 !important;
}

body.theme-light .settings-select option {
    background: #ffffff;
    color: #0a0c14;
}

body.theme-light .placeholder-header h1,
body.theme-light .placeholder-header h2,
body.theme-light .section-title,
body.theme-light h1,
body.theme-light h2 {
    color: #0a0c14 !important;
}

body.theme-light .placeholder-header svg {
    stroke: #0a0c14 !important;
}

body.theme-light .game-sel-card:hover {
    box-shadow: 0 12px 30px rgba(107, 76, 255, 0.55), 0 0 0 1px rgba(107, 76, 255, 0.4) !important;
}

body.theme-light.no-transparency .game-sel-card:hover {
    box-shadow: none !important;
    outline: 2px solid var(--accent);
}

/* --- Dark Theme --- */
body.theme-dark {
    --bg-dark: #070809;
    --panel-bg: rgba(255, 255, 255, 0.02);
    --panel-border: rgba(255, 255, 255, 0.05);
    --text-main: #e8eaf0;
    --text-muted: #6b7080;
    background: #070809 !important;
}