:root {
    --glas-bg: rgba(16, 16, 20, 0.82);
    --border-colr: rgba(184, 134, 11, 0.35);
    --accent-glow: rgba(184, 134, 11, 0.2);
    --transiton-speed: 0.35s;
    --text-mute: #a0a0aa;
    --text-main: #f4f4f5;
}

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

body {
    background: url('Wallpaper.gif') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-main);
    font-family: system-ui, -apple-system, sans-serif;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0d0d10;
    border-left: 2px solid var(--border-colr);
}

::-webkit-scrollbar-thumb {
    background: #cca44c;
    border: 2px solid #000;
    border-radius: 2px;
    box-shadow: inset 0 -3px rgba(0, 0, 0, 0.35);
}

::-webkit-scrollbar-thumb:hover {
    background: #e3b652;
}


#boot-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #050507;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity var(--transiton-speed) ease-in-out;
}

.boot-logo-container img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 12px rgba(184, 134, 11, 0.35));
}

.pixel-progress-container {
    width: 320px;
    height: 18px;
    background: #1e1e24;
    border: 4px solid #0f0f12;
    outline: 2px solid #55555a;
    margin-top: 32px;
    position: relative;
}

.pixel-progress-bar {
    height: 100%;
    width: 0%;
    background: #cca44c;
    box-shadow: inset 0 -4px rgba(0, 0, 0, 0.25);
}

.boot-loader-container {
    position: absolute;
    bottom: 40px;
    right: 40px;
}

#boot-loader {
    width: 60px;
    height: auto;
}

#swipe-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100vw;
    height: 100vh;
    background-color: #050507;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#swipe-bee-img {
    max-width: 220px;
    height: auto;
}

.swipe-animation {
    animation: perform-swipe 2.6s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes perform-swipe {
    0% {
        left: -100%;
    }
    35% {
        left: 0;
    }
    65% {
        left: 0;
    }
    100% {
        left: 100%;
    }
}

#main-content {
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity var(--transiton-speed) ease;
}

.hidden {
    display: none !important;
}

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


.glass-sidebar {
    width: 70px;
    background: rgba(12, 12, 15, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-right: 4px solid var(--border-colr);
    outline: 2px solid #000;
    display: flex;
    flex-direction: column;
    padding: 24px 11px;
    flex-shrink: 0;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 50;
}

.glass-sidebar:hover {
    width: 260px;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
    padding-left: 6px;
}

.brand-logo {
    width: 32px;
    height: auto;
    flex-shrink: 0;
}

.glass-sidebar .brand-name {
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.2s ease;
    pointer-events: none;
    font-family: 'VT323', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #cca44c;
}

.glass-sidebar:hover .brand-name {
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0.12s;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: transparent;
    border: none;
    color: var(--text-mute);
    padding: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
    width: 100%;
}

.pixel-icon-slot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(184, 134, 11, 0.08);
    border: 3px solid rgba(184, 134, 11, 0.3);
    outline: 2px solid #000;
    border-radius: 4px;
    flex-shrink: 0;
    transition: all 0.2s ease;
    color: #cca44c;
}

.pixel-icon-slot i {
    font-size: 1.15rem;
}

.glass-sidebar .nav-text {
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.2s ease;
    pointer-events: none;
    font-family: 'VT323', monospace;
    font-size: 1.5rem;
    color: var(--text-mute);
}

.glass-sidebar:hover .nav-text {
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0.1s;
}

.nav-btn:hover .pixel-icon-slot {
    background: rgba(184, 134, 11, 0.2);
    border-color: #cca44c;
    transform: scale(1.05);
}

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

.nav-btn.active .pixel-icon-slot {
    background: rgba(184, 134, 11, 0.35);
    border-color: #cca44c;
    box-shadow: inset 0 -3px rgba(0, 0, 0, 0.2);
}

.nav-btn.active .nav-text {
    color: #cca44c;
    font-weight: 600;
}

.nav-btn:active {
    transform: translateY(2px);
}

.sidebar-footer {
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
}

.byop-status-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: transparent;
    border: none;
    color: #cca44c;
    width: 100%;
    padding: 4px;
    cursor: pointer;
}

.glass-sidebar .byop-status-btn .nav-text {
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.2s ease;
    pointer-events: none;
    font-family: 'VT323', monospace;
    font-size: 1.4rem;
    color: #cca44c;
}

.glass-sidebar:hover .byop-status-btn .nav-text {
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0.1s;
}


.main-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: rgba(9, 9, 11, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    overflow: hidden;
}

.panel-header {
    height: 70px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 32px;
    background: rgba(10, 10, 13, 0.3);
}

.header-status {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 16, 20, 0.82);
    padding: 6px 14px;
    border-radius: 4px;
    border: 3px solid rgba(184, 134, 11, 0.25);
    outline: 2px solid #000;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background-color: #cca44c;
    border-radius: 50%;
    box-shadow: 0 0 6px #cca44c;
}

.status-text {
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    color: var(--text-mute);
}


.content-viewport {
    flex: 1;
    padding: 32px;
    overflow-y: auto;
}

.tab-content {
    display: none;
    flex-direction: column;
    height: 100%;
}

.tab-content.active {
    display: flex;
    animation: fadeIn var(--transiton-speed) ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}


#browser {
    width: 100%;
    height: 100%;
    padding: 0;
}

#browser .browser-mockup {
    width: 100%;
    height: 100%;
    border-radius: 0;
    border-right: none;
    border-left: none;
    border-bottom: none;
    transition: all 0.3s ease;
}

#browser-iframe {
    width: 100%;
    height: calc(100% - 46px);
    border: none;
    background: #ffffff;
    display: block;
}

.app-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    display: block;
}


.searc-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 80px;
}

.search-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
}

.large-search-logo {
    width: 110px;
    height: auto;
    filter: drop-shadow(0 0 16px rgba(184, 134, 11, 0.3));
}

.search-title {
    font-family: 'VT323', monospace;
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #cca44c;
    text-shadow: 4px 4px 0px #000, 0 0 20px rgba(184, 134, 11, 0.4);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        text-shadow: 4px 4px 0px #000, 0 0 15px rgba(184, 134, 11, 0.35);
    }
    to {
        text-shadow: 4px 4px 0px #000, 0 0 28px rgba(184, 134, 11, 0.6);
    }
}

.centered-search-bar {
    display: flex;
    align-items: center;
    background: rgba(10, 10, 12, 0.85);
    border: 4px solid var(--border-colr);
    outline: 2px solid #000;
    padding: 4px 14px;
    border-radius: 4px;
    width: 100%;
    box-shadow: inset 0 -4px rgba(0, 0, 0, 0.45);
    transition: border-color 0.25s, box-shadow 0.25s;
    margin-bottom: 28px;
}

.centered-search-bar:focus-within {
    border-color: #cca44c;
    box-shadow: inset 0 -4px rgba(0, 0, 0, 0.45), 0 0 14px rgba(184, 134, 11, 0.35);
}

.search-icon-slot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #cca44c;
    font-size: 1.1rem;
    margin-right: 10px;
}

.centered-search-bar input {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: 'VT323', monospace;
    font-size: 1.5rem;
    outline: none;
    width: 100%;
    height: 38px;
}

.centered-search-bar input::placeholder {
    color: #55555d;
}

.search-action-btn {
    background: rgba(184, 134, 11, 0.25);
    border: 3px solid rgba(184, 134, 11, 0.5);
    outline: 1px solid #000;
    color: #cca44c;
    width: 30px;
    height: 30px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-action-btn:hover {
    background: rgba(184, 134, 11, 0.4);
    border-color: #cca44c;
    transform: scale(1.05);
}

.search-action-btn:active {
    transform: translateY(2px);
    box-shadow: inset 0 2px rgba(0, 0, 0, 0.4);
}

.quick-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.quick-link-pill {
    background: rgba(16, 16, 20, 0.85);
    border: 3px solid var(--border-colr);
    outline: 2px solid #000;
    color: var(--text-mute);
    padding: 8px 18px;
    border-radius: 4px;
    font-family: 'VT323', monospace;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: inset 0 -3px rgba(0, 0, 0, 0.35);
    transition: all 0.2s;
}

.quick-link-pill:hover {
    border-color: #cca44c;
    color: #cca44c;
    transform: translateY(-2px);
}

.quick-link-pill:active {
    transform: translateY(1px);
    box-shadow: inset 0 2px rgba(0,0,0,0.5);
}

.pill-icon-slot {
    color: #cca44c;
}


.home-cozy-deck {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
    margin-top: 32px;
    max-width: 660px;
}

.jukebox-player, .cozy-stats-card {
    background: rgba(16, 16, 20, 0.85);
    border: 3px solid var(--border-colr);
    outline: 2px solid #000;
    border-radius: 4px;
    padding: 16px;
    flex: 1;
    min-width: 0;
    box-shadow: inset 0 0 12px rgba(184, 134, 11, 0.15), 0 4px 12px rgba(0, 0, 0, 0.35);
    font-family: 'VT323', monospace;
}

.jukebox-player {
    display: flex;
    align-items: center;
    gap: 16px;
}

.jukebox-disc-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.05);
    outline: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    flex-shrink: 0;
}

.jukebox-disc {
    width: 48px;
    height: 48px;
    image-rendering: pixelated;
}

.jukebox-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    flex: 1;
}

.jukebox-title {
    font-size: 1.25rem;
    color: var(--text-mute);
    text-shadow: 1px 1px 0px #000;
}

.cozy-stats-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.cozy-stats-header h3 {
    color: #cca44c;
    font-size: 1.5rem;
    text-shadow: 2px 2px 0px #000;
}

.cozy-stats-body p {
    font-size: 1.15rem;
    color: var(--text-mute);
    line-height: 1.3;
}


.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-family: 'VT323', monospace;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #cca44c;
    text-shadow: 2px 2px 0px #000;
}

.filter-bar {
    display: flex;
    gap: 8px;
}

.filter-pill {
    background: rgba(16, 16, 20, 0.82);
    border: 3px solid var(--border-colr);
    outline: 2px solid #000;
    color: var(--text-mute);
    padding: 4px 14px;
    border-radius: 4px;
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: inset 0 -3px rgba(0, 0, 0, 0.3);
    transition: all 0.2s;
}

.filter-pill.active, .filter-pill:hover {
    border-color: #cca44c;
    color: #cca44c;
}

.filter-pill:active {
    transform: translateY(1px);
    box-shadow: inset 0 2px rgba(0,0,0,0.4);
}


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

.placehlder-card {
    position: relative;
    background: rgba(16, 16, 20, 0.82);
    border: 3px solid var(--border-colr);
    outline: 2px solid #000;
    border-radius: 4px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    cursor: pointer;
    box-shadow: inset 0 0 12px rgba(184, 134, 11, 0.1), 0 4px 12px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, border-color 0.25s;
    overflow: hidden;
}

.placehlder-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.13) 30%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.13) 70%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.6s ease;
    opacity: 0;
    pointer-events: none;
}

.placehlder-card:hover {
    transform: translateY(-4px);
    border-color: #cca44c;
    box-shadow: inset 0 0 16px rgba(184, 134, 11, 0.15), 0 8px 20px rgba(0, 0, 0, 0.5);
}

.placehlder-card:hover::after {
    left: 130%;
    opacity: 1;
}

.card-media {
    background: rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.03);
    outline: 1px solid #000;
    height: 120px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-media i {
    font-size: 2rem;
    color: rgba(184, 134, 11, 0.4);
    transition: color 0.25s, transform 0.25s;
}

.placehlder-card:hover .card-media i {
    color: #cca44c;
    transform: scale(1.1);
}

.card-info {
    font-family: 'VT323', monospace;
}

.card-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}

.card-info p {
    font-size: 1.1rem;
    color: var(--text-mute);
}


.browser-mockup {
    position: relative;
    background: rgba(16, 16, 20, 0.85);
    border: 4px solid var(--border-colr);
    outline: 2px solid #000;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 400px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.browser-bar {
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid rgba(255, 255, 255, 0.03);
    height: 46px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 20px;
    z-index: 5;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
}

.browser-address {
    flex: 1;
    background: rgba(0, 0, 0, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.04);
    outline: 1px solid #000;
    border-radius: 2px;
    height: 30px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
    max-width: 500px;
}

.browser-lock-slot {
    color: #cca44c;
    font-size: 0.8rem;
}

.browser-address input {
    background: transparent;
    border: none;
    color: var(--text-mute);
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    outline: none;
    width: 100%;
}

.browser-icon-btn {
    background: transparent;
    border: none;
    color: var(--text-mute);
    cursor: pointer;
    font-size: 1.15rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.browser-icon-btn:hover {
    color: #cca44c;
}

.browser-frame-placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-mute);
    text-align: center;
    padding: 40px;
    font-family: 'VT323', monospace;
}

.browser-frame-placeholder i {
    font-size: 3rem;
    color: rgba(184, 134, 11, 0.25);
}

.browser-frame-placeholder p {
    font-size: 1.4rem;
    max-width: 320px;
    line-height: 1.4;
}

.browser-mockup.fullscreen-active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10002;
    border-radius: 0;
}

.browser-mockup.fullscreen-active #browser-iframe {
    height: calc(100vh - 46px);
}

.browser-loading-overlay {
    position: absolute;
    top: 46px;
    left: 0;
    width: 100%;
    height: calc(100% - 46px);
    background: rgba(12, 12, 16, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 80;
    font-family: 'VT323', monospace;
    transition: opacity var(--transiton-speed) ease-in-out;
}

.browser-loading-overlay img {
    width: 70px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(184, 134, 11, 0.4));
    animation: beeHover 1.5s ease-in-out infinite alternate;
}

@keyframes beeHover {
    from { transform: translateY(0); }
    to { transform: translateY(-8px); }
}

.browser-loading-text {
    font-size: 1.6rem;
    color: #cca44c;
    text-shadow: 2px 2px 0px #000;
    letter-spacing: 0.5px;
}

.browser-loading-bar-container {
    width: 200px;
    height: 12px;
    background: #1e1e24;
    border: 3px solid #000;
    border-radius: 2px;
    overflow: hidden;
}

.browser-loading-bar-fill {
    height: 100%;
    width: 0%;
    background: #cca44c;
    box-shadow: inset 0 -3px rgba(0, 0, 0, 0.2);
    animation: fillLoader 2s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
}

@keyframes fillLoader {
    0% { width: 0%; }
    100% { width: 100%; }
}


.custom-dropdown {
    position: relative;
    width: 100%;
    font-family: 'VT323', monospace;
    user-select: none;
}

.dropdown-trigger {
    background: rgba(10, 10, 12, 0.85);
    border: 3px solid var(--border-colr);
    outline: 2px solid #000;
    color: #cca44c;
    padding: 8px 14px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.3rem;
    box-shadow: inset 0 -3px rgba(0, 0, 0, 0.35);
    transition: border-color 0.2s;
}

.dropdown-trigger:hover {
    border-color: #cca44c;
}

.dropdown-menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    background: #0f0f12;
    border: 3px solid var(--border-colr);
    outline: 2px solid #000;
    border-radius: 4px;
    z-index: 120;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 6px;
    transition: opacity var(--transiton-speed) ease;
}

.dropdown-item {
    padding: 8px 14px;
    color: var(--text-mute);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.15s ease;
}

.dropdown-item:hover {
    background: rgba(184, 134, 11, 0.15);
    color: #cca44c;
}

.dropdown-item.active {
    background: var(--accent-glow);
    color: #cca44c;
    font-weight: bold;
}


.pixel-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.pixel-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333336;
    border: 3px solid #1a1a1c;
    outline: 2px solid #55555a;
    transition: .3s;
    border-radius: 2px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 3px;
    bottom: 1px;
    background-color: #88888d;
    border: 2px solid #000;
    transition: .3s;
    box-shadow: inset 0 -2px rgba(0,0,0,0.25);
}

.pixel-toggle input:checked + .toggle-slider {
    background-color: rgba(184, 134, 11, 0.25);
    outline-color: #cca44c;
}

.pixel-toggle input:checked + .toggle-slider:before {
    transform: translateX(22px);
    background-color: #cca44c;
}

#byop-input {
    width: 100%;
    background: rgba(10, 10, 12, 0.85);
    border: 3px solid var(--border-colr);
    outline: 2px solid #000;
    color: #cca44c;
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    padding: 8px 12px;
    border-radius: 4px;
    box-shadow: inset 0 -3px rgba(0,0,0,0.3);
    transition: all 0.25s ease;
}

#byop-input:focus {
    border-color: #cca44c;
    box-shadow: inset 0 -3px rgba(0,0,0,0.3), 0 0 10px rgba(184, 134, 11, 0.3);
    outline: 2px solid #cca44c;
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 3, 4, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
}

.modal-glass-card {
    background: rgba(18, 16, 14, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 4px solid rgba(184, 134, 11, 0.35);
    outline: 2px solid #000;
    border-radius: 4px;
    width: 90%;
    max-width: 440px;
    padding: 36px;
    box-shadow: inset 0 0 16px rgba(184, 134, 11, 0.1), 0 24px 60px rgba(0, 0, 0, 0.6);
    animation: modalEntrance 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'VT323', monospace;
}

@keyframes modalEntrance {
    from { transform: scale(0.95) translateY(12px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-header h2 {
    color: #cca44c;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-shadow: 2px 2px 0px #000;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    line-height: 1.4;
    color: var(--text-mute);
    font-size: 1.3rem;
}

.byop-link {
    color: #cca44c;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 4px;
    transition: opacity 0.2s;
    align-self: flex-start;
}

.byop-link:hover {
    opacity: 0.8;
}

.modal-footer {
    margin-top: 28px;
    display: flex;
    justify-content: flex-end;
}

.modal-close-btn {
    background: rgba(16, 16, 20, 0.85);
    border: 3px solid var(--border-colr);
    outline: 2px solid #000;
    color: #cca44c;
    padding: 6px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.2s ease;
    box-shadow: inset 0 -3px rgba(0,0,0,0.35);
}

.modal-close-btn:hover {
    border-color: #cca44c;
}

.modal-close-btn:active {
    transform: translateY(2px);
    box-shadow: inset 0 2px rgba(0,0,0,0.5);
}
