@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg-main: #030303;
    --bg-panel: #090B0A;
    --bg-panel-warm: #0E0603;
    --bg-secondary: #090B0A;
    --border-red: #2D1104;
    --border-accent: #2D1104;
    --deep-red: #500F0B;
    --lava-red: #A02D22;
    --primary-accent: #A02D22;
    --burnt-orange: #A24714;
    --coin-orange: #F28A16;
    --gold: #EBB64C;
    --token-blue-dark: #0F3650;
    --token-blue: #226091;
    --token-blue-bright: #3A79B9;
    --hover-state: #F28A16;
    --glow-text: #EBB64C;
    --body-text: #EDEDEE;
    --text-main: #EDEDEE;
    --text-muted: #878787;
    --text-soft: #626262;
    
    --grad-primary: linear-gradient(135deg, #A02D22 0%, #F28A16 52%, #EBB64C 100%);
    --grad-dark: linear-gradient(145deg, #0E0603 0%, #090B0A 58%, #030303 100%);
    --grad-glow: linear-gradient(90deg, #EBB64C 0%, #F28A16 46%, #3A79B9 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-main);
    background-image: radial-gradient(circle at 10% 20%, rgba(160, 45, 34, 0.08) 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, rgba(34, 96, 145, 0.09) 0%, transparent 40%);
    color: var(--body-text);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(80, 15, 11, 0.15), transparent 36%),
        radial-gradient(circle at 80% 10%, rgba(242, 138, 22, 0.08), transparent 28%);
}

@keyframes slideDownFade {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes popInGlow {
    0% { transform: scale(0.95); opacity: 0; box-shadow: 0 0 0 rgba(160, 45, 34, 0); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 30px rgba(160, 45, 34, 0.15); }
}

.top-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 35px;
    height: 85px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(34, 96, 145, 0.18);
    border-bottom: 1px solid rgba(34, 96, 145, 0.36);
    background: transparent;
}

.top-navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 18% 20%, rgba(160, 45, 34, 0.18), transparent 34%),
        radial-gradient(circle at 84% 16%, rgba(34, 96, 145, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(3, 3, 3, 0.96), rgba(3, 3, 3, 0.98));
    z-index: -2;
}

.top-navbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 87, 216, 0.28) 0%, rgba(3, 3, 3, 0.88) 100%);
    z-index: -1;
}

.nav-brand {
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 25px;
    background: var(--grad-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(34, 96, 145, 0.36));
}

.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(3, 3, 3, 0.48);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 0 18px rgba(34,96,145,0.24);
}


.patreon-link {
    padding: 12px;
}

.patreon-link:hover {
    background: rgba(255, 66, 77, 0.1) !important;
    box-shadow: inset 0 2px 0 #FF424D !important;
}

.patreon-link:hover svg {
    filter: drop-shadow(0 0 8px rgba(255, 66, 77, 0.6));
}

.dropdown-content {
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--grad-dark);
    border: 1px solid rgba(34, 96, 145, 0.22);
    border-top: 2px solid var(--primary-accent);
    border-radius: 8px;
    min-width: 200px;
    padding: 10px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(34, 96, 145, 0.16);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--bg-secondary);
    border-left: 2px solid var(--primary-accent);
    border-top: 2px solid var(--primary-accent);
}

.nav-item:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-content a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--grad-primary);
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.dropdown-content a:hover {
    color: var(--body-text);
    background: linear-gradient(90deg, rgba(34, 96, 145, 0.14) 0%, rgba(160, 45, 34, 0.08) 100%);
    padding-left: 28px;
}

.dropdown-content a:hover::before {
    transform: scaleY(1);
}

.dropdown-content a svg {
    fill: rgba(255, 255, 255, 0.5);
}

.dropdown-content a:hover svg {
    fill: var(--glow-text);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.currency-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.currency-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(13, 13, 13, 0.6);
    padding: 6px 18px 6px 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 10px 24px rgba(0,0,0,0.28);
    transition: all 0.3s ease;
}

.currency-box:hover {
    background: rgba(26, 26, 26, 0.8);
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.18);
}

.currency-box img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.currency-text {
    display: flex;
    flex-direction: column;
}

.currency-label {
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.currency-value {
    font-size: 15px;
    font-weight: 800;
    color: var(--body-text);
    letter-spacing: 0.5px;
}

.amber-coin {
    border-color: rgba(235, 182, 76, 0.34);
    background: linear-gradient(145deg, rgba(160, 45, 34, 0.15), rgba(3, 3, 3, 0.72));
}
.amber-coin .currency-label { color: #EBB64C; }

.apex-coin {
    border-color: rgba(34, 96, 145, 0.42);
    background: linear-gradient(145deg, rgba(34, 96, 145, 0.16), rgba(3, 3, 3, 0.72));
}
.apex-coin .currency-label { color: #3A79B9; }

.user-dropdown-wrapper {
    position: relative;
    height: 85px;
    display: flex;
    align-items: center;
}

.user-profile-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.user-profile-btn:hover {
    background: rgba(160, 45, 34, 0.08);
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid var(--primary-accent);
    box-shadow: 0 0 15px rgba(160, 45, 34, 0.3);
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.user-name {
    color: var(--body-text);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.user-role {
    background: var(--grad-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 10px;
    letter-spacing: 1.5px;
}

.user-profile-btn .chevron {
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, color 0.3s ease;
}

.user-dropdown-wrapper:hover .chevron {
    transform: rotate(180deg);
    color: var(--primary-accent);
}

.user-dropdown-menu {
    position: absolute;
    top: 80px;
    right: 0;
    background: var(--grad-dark);
    border: 1px solid rgba(140, 28, 19, 0.3);
    border-top: 2px solid var(--primary-accent);
    border-radius: 12px;
    min-width: 240px;
    padding: 12px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(160, 45, 34, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
}

.user-dropdown-wrapper:hover .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-category {
    padding: 10px 24px;
    font-size: 10px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.user-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
}

.user-dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--grad-primary);
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.user-dropdown-menu a:hover {
    color: var(--body-text);
    background: linear-gradient(90deg, rgba(160, 45, 34, 0.1) 0%, transparent 100%);
    padding-left: 28px;
}

.user-dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.user-dropdown-menu a svg {
    fill: rgba(255, 255, 255, 0.5);
    transition: fill 0.2s ease;
}

.user-dropdown-menu a:hover svg {
    fill: var(--primary-accent);
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 10px 0;
}

.logout-link:hover {
    background: linear-gradient(90deg, rgba(255, 66, 77, 0.1) 0%, transparent 100%) !important;
}

.logout-link:hover::before {
    background: #FF424D !important;
}

.logout-link:hover svg {
    fill: #FF424D !important;
}



.welcome-card {
    background: var(--grad-dark);
    border: 1px solid rgba(140, 28, 19, 0.4);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.welcome-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--grad-primary);
}

.welcome-card h1 {
    color: var(--body-text);
    margin-bottom: 15px;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.welcome-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: rgba(140, 28, 19, 0.6);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-accent);
}

.auth-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.auth-box {
    background: var(--grad-dark);
    border: 1px solid rgba(140, 28, 19, 0.4);
    border-top: 3px solid var(--primary-accent);
    border-radius: 20px;
    padding: 60px 50px;
    text-align: center;
    max-width: 440px;
    width: 90%;
    animation: popInGlow 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    position: relative;
}

.auth-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(160, 45, 34, 0.1), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.auth-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
    border-radius: 24px;
    border: 1px solid rgba(160, 45, 34, 0.3);
    padding: 8px;
    background: var(--bg-main);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(160, 45, 34, 0.2);
    position: relative;
    z-index: 1;
}

.auth-box h2 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    background: var(--grad-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-box p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    margin-bottom: 40px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.btn-steam {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: var(--grad-primary);
    color: var(--body-text);
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(160, 45, 34, 0.4);
    overflow: hidden;
}

.btn-steam::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-steam:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(34, 96, 145, 0.6);
    border-color: var(--glow-text);
}

.btn-steam:hover::after {
    left: 100%;
}

.dropdown-content a.soon-link,
.user-dropdown-menu a.soon-link {
    position: relative;
    cursor: not-allowed;
    overflow: hidden;
}

.dropdown-content a.soon-link::after,
.user-dropdown-menu a.soon-link::after {
    content: 'SOON';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--primary-accent);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.dropdown-content a.soon-link:hover::after,
.user-dropdown-menu a.soon-link:hover::after {
    opacity: 1;
}

.dropdown-content a.soon-link:hover,
.user-dropdown-menu a.soon-link:hover {
    padding-left: 24px;
    background: transparent;
}

.site-footer {
    background: var(--grad-dark);
    border-top: 1px solid rgba(140, 28, 19, 0.4);
    padding: 25px 40px;
    margin-top: auto;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 600;
}

.creator-credit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.creator-name {
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 3px;
    background: linear-gradient(90deg, #EBB64C, #A02D22, #226091, #3A79B9, #EBB64C);
    background-size: 320% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 18px rgba(255, 209, 102, 0.24);
    animation: creatorNameSlide 3.8s linear infinite;
}

@keyframes creatorNameSlide {
    0% { background-position: 320% 50%; }
    100% { background-position: 0% 50%; }
}

.toast-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999999;
    pointer-events: none;
}

.toast {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    min-width: 320px;
    max-width: 420px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-error {
    border-left: 4px solid #FF424D;
}

.toast-success {
    border-left: 4px solid #00FF66;
}

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-error .toast-icon { color: #FF424D; }
.toast-success .toast-icon { color: #00FF66; }

.toast-message {
    color: var(--body-text);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    animation: toastProgress 4s linear forwards;
}

.toast-error .toast-progress { background: #FF424D; }
.toast-success .toast-progress { background: #00FF66; }

@keyframes toastProgress {
    0% { width: 100%; }
    100% { width: 0%; }
}

.btn-disabled-visual {
    opacity: 0.5;
    filter: grayscale(80%);
    cursor: not-allowed !important;
}
.dino-showcase {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    margin-bottom: 40px;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dino-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.8));
}

.dino-name-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.dino-name-wrapper h3 {
    font-size: 26px;
    font-weight: 900;
    color: var(--body-text);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prime-status {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.prime-status.active {
    background: rgba(255, 209, 102, 0.1);
    color: var(--glow-text);
    border: 1px solid rgba(255, 209, 102, 0.3);
    box-shadow: 0 0 15px rgba(255, 209, 102, 0.2);
}

.prime-status.inactive {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
}

.stat-box {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(140, 28, 19, 0.2);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.stat-label {
    font-size: 10px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-accent);
}

/* Forgotten Kingdom theme pass */
body {
    background:
        radial-gradient(circle at 12% 8%, rgba(80, 15, 11, 0.22), transparent 28%),
        radial-gradient(circle at 86% 12%, rgba(15, 54, 80, 0.18), transparent 30%),
        linear-gradient(180deg, #030303 0%, #090B0A 52%, #030303 100%);
    color: var(--text-main);
}

body::before {
    background-image:
        linear-gradient(rgba(235, 182, 76, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(235, 182, 76, 0.02) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.55;
}

.main-content {
    background-color: transparent;
}

.welcome-card,
.auth-box,
.dino-showcase,
.stat-box,
.currency-box,
.dropdown-content,
.user-dropdown-menu,
.notification-dropdown,
.toast,
.site-footer,
.profile-weekly-card,
.profile-discipline-card,
.feed-card,
.feed-soon-card,
.site-suspension-card,
.suspended-link-toast,
.suspension-top-warning,
.discipline-top-warning,
.dashboard-profile-card,
.dashboard-stat-card,
.dashboard-panel,
.guide-panel,
.lootbox-card,
.crate-card,
.skin-card,
.inventory-card,
.market-card,
.ex-card,
.ex-side,
.ex-panel,
.population-card,
.lb-card {
    background: linear-gradient(145deg, rgba(14, 6, 3, 0.92), rgba(9, 11, 10, 0.96)) !important;
    border-color: rgba(45, 17, 4, 0.92) !important;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(235, 182, 76, 0.035) !important;
}

.welcome-card::after,
.dropdown-content a::before,
.user-dropdown-menu a::before,
.toast-progress {
    background: var(--grad-primary) !important;
}

a,
.auth-kicker,
.dashboard-kicker,
.currency-label,
.feed-title span,
.lb-kicker,
.ex-kicker {
    color: var(--gold);
}

p,
small,
.feed-action,
.feed-meta,
.dashboard-profile-copy p,
.population-empty-state,
.lb-subtitle {
    color: var(--text-muted);
}

.btn-steam,
.dashboard-action-btn,
.guide-btn,
.ex-btn,
.btn-eco.add,
.btn-save-role,
.patreon-modal-btn.continue {
    background: linear-gradient(135deg, #A02D22, #A24714 48%, #F28A16) !important;
    border-color: rgba(235, 182, 76, 0.32) !important;
    color: #EDEDEE !important;
    box-shadow: 0 14px 34px rgba(80, 15, 11, 0.42) !important;
}

.dashboard-action-btn.secondary,
.guide-btn.secondary,
.ex-btn.secondary,
.population-btn,
.notification-btn,
.discord-btn {
    background: linear-gradient(135deg, rgba(15, 54, 80, 0.78), rgba(9, 11, 10, 0.92)) !important;
    border-color: rgba(58, 121, 185, 0.28) !important;
    color: #EDEDEE !important;
}

input,
select,
textarea,
.form-control,
.guest-invite-input,
.eco-search-bar,
.eco-input,
.eco-select {
    background: rgba(3, 3, 3, 0.72) !important;
    border-color: rgba(45, 17, 4, 0.88) !important;
    color: var(--text-main) !important;
}

input:focus,
select:focus,
textarea:focus,
.form-control:focus,
.guest-invite-input:focus {
    border-color: rgba(235, 182, 76, 0.55) !important;
    box-shadow: 0 0 0 3px rgba(242, 138, 22, 0.12) !important;
}

.amber-coin,
.coin-item.amber,
.eco-bal-item.amber {
    color: var(--coin-orange) !important;
}

.apex-coin,
.coin-item.apex,
.eco-bal-item.apex {
    color: var(--token-blue-bright) !important;
}

::-webkit-scrollbar-track {
    background: #030303;
}

::-webkit-scrollbar-thumb {
    background: rgba(80, 15, 11, 0.92);
}

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