/* ==========================================================================
   GATEKEEPER PREMIUM CSS
   High-end, glassmorphic UI for TikTok Stream Board SaaS Gatekeeper
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@500;700&display=swap');

/* --- 1. PROMO BADGES (ANIMATIONS & CARDS) --- */
.gk-promo-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    border-radius: 8px;
    padding: 5px 9px;
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: none;
    font-family: 'Inter', sans-serif;
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: gkBadgeEntrance 0.5s ease-out backwards;
}

.anim-item:hover .gk-promo-badge,
.pinned-slots > div:hover .gk-promo-badge {
    transform: translateY(-4px) scale(1.05);
}

.gk-promo-tag {
    font-size: 9.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #fbbf24;
    margin-bottom: 2px;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
}

.gk-original-price {
    font-size: 11px;
    color: #94a3b8;
    position: relative;
    font-weight: 500;
}

/* The red line through the original price */
.gk-original-price::after {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    top: 50%;
    height: 1.5px;
    background-color: #ef4444;
    transform: translateY(-50%) rotate(-10deg);
    box-shadow: 0 0 4px rgba(239, 68, 68, 0.5);
}

.gk-sale-price {
    font-size: 13.5px;
    font-weight: 800;
    color: #34d399;
    text-shadow: 0 0 12px rgba(52, 211, 153, 0.3);
}

@keyframes gkBadgeEntrance {
    0% { opacity: 0; transform: scale(0.8) translateY(10px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* --- 2. LOCKED BUTTON STATE --- */
.gk-locked-btn {
    opacity: 0.65;
    filter: grayscale(80%) contrast(1.1);
    position: relative;
    pointer-events: auto !important;
    transition: all 0.3s ease;
}

.gk-locked-btn:hover {
    opacity: 0.95;
    filter: grayscale(20%);
    box-shadow: 0 0 16px rgba(239, 68, 68, 0.3);
}

/* --- 3. LOCK OVERLAY --- */
.gk-lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
    border: 1px dashed rgba(255, 255, 255, 0.15);
}

.anim-item { position: relative; }

.gk-lock-overlay:hover,
.anim-item:hover .gk-lock-overlay {
    opacity: 1;
    background: rgba(15, 23, 42, 0.8);
}

.gk-lock-icon {
    font-size: 12px;
    color: #fff;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gk-lock-overlay:hover .gk-lock-icon {
    transform: scale(1);
}

/* --- 4. PURCHASE MODAL (FOR INDIVIDUAL ANIMATIONS) --- */
.gk-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: gkFadeIn 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.gk-modal-content {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    position: relative;
    overflow: hidden;
    animation: gkModalScaleUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: #f8fafc;
}

.gk-modal-content::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 120px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.35) 0%, rgba(239, 68, 68, 0) 70%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.gk-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #94a3b8;
    font-size: 22px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
}

.gk-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.gk-modal-header {
    padding: 32px 24px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.gk-modal-icon {
    font-size: 52px;
    display: block;
    margin-bottom: 12px;
    animation: gkFloat 3.5s ease-in-out infinite;
}

.gk-modal-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
}

.gk-modal-body {
    padding: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.gk-anim-name {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #38bdf8;
}

.gk-anim-desc {
    font-size: 13.5px;
    color: #94a3b8;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.gk-price-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
}

.gk-modal-old-price {
    color: #94a3b8;
    font-size: 16px;
    position: relative;
}

.gk-modal-old-price::after {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    top: 50%;
    height: 2px;
    background-color: #ef4444;
    transform: translateY(-50%) rotate(-8deg);
}

.gk-modal-new-price {
    color: #34d399;
    font-size: 28px;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(52, 211, 153, 0.3);
}

.gk-modal-promo-tag {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.4);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.gk-modal-text {
    font-size: 13px;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.5;
}

.gk-modal-footer {
    padding: 0 24px 26px;
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.gk-btn-upgrade {
    flex: 2;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.gk-btn-upgrade:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.gk-btn-cancel {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.gk-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* --- 5. MASTER LOCK SCREEN (GORGEOUS DARK-THEMED SPLASH OVERLAY) --- */
#master-lock-screen {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at top, #1e1b4b 0%, #090d16 50%, #020408 100%);
    z-index: 99999999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #f8fafc;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
    padding: 24px;
    box-sizing: border-box;
}

#master-lock-screen.gk-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Ambient dynamic background lighting */
#master-lock-screen::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, rgba(139, 92, 246, 0.08) 50%, transparent 80%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.gk-lock-content {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    border-radius: 24px;
    padding: 36px;
    text-align: center;
    max-width: 520px;
    width: 100%;
    position: relative;
    z-index: 1;
    animation: gkModalScaleUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gk-lock-header {
    margin-bottom: 24px;
    position: relative;
}

.gk-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: #c084fc;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.gk-lock-icon-lg {
    font-size: 48px;
    margin-bottom: 10px;
    display: inline-block;
    filter: drop-shadow(0 0 16px rgba(129, 140, 248, 0.4));
    animation: gkFloat 4s ease-in-out infinite;
}

.gk-lock-title {
    margin: 0 0 6px 0;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gk-pro-tag {
    font-size: 12px;
    font-weight: 900;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid rgba(236, 72, 153, 0.5);
    padding: 2px 6px;
    border-radius: 6px;
    vertical-align: middle;
    margin-left: 4px;
    letter-spacing: 0.5px;
}

.gk-lock-subtitle {
    color: #94a3b8;
    font-size: 13.5px;
    margin: 0;
    line-height: 1.4;
}

/* Activation Form Card Section */
.gk-card-section {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.gk-input-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #a5b4fc;
    margin-bottom: 10px;
}

.gk-input-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gk-input-wrapper {
    flex: 1;
    min-width: 220px;
    position: relative;
    display: flex;
    align-items: center;
}

.gk-input-icon {
    position: absolute;
    left: 14px;
    font-size: 16px;
    pointer-events: none;
    opacity: 0.8;
}

#gk-license-input {
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    border: 1.5px solid rgba(99, 102, 241, 0.3);
    border-radius: 10px;
    padding: 13px 14px 13px 42px;
    color: #38bdf8;
    font-size: 14px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    letter-spacing: 0.5px;
    outline: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

#gk-license-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25), 0 0 20px rgba(99, 102, 241, 0.2);
    background: rgba(15, 23, 42, 0.95);
    color: #fff;
}

#gk-license-input::placeholder {
    color: #475569;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
}

.gk-btn-primary {
    position: relative;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 50%, #4338ca 100%);
    color: #ffffff;
    border: none;
    padding: 13px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(79, 70, 229, 0.45);
    transition: all 0.25s ease;
    white-space: nowrap;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.gk-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(79, 70, 229, 0.65);
    background: linear-gradient(135deg, #818cf8 0%, #6366f1 50%, #4f46e5 100%);
}

.gk-btn-primary:active {
    transform: translateY(1px);
}

.gk-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.gk-error-box {
    margin-top: 14px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fca5a5;
    font-size: 13px;
    font-weight: 600;
    animation: gkFadeIn 0.3s ease;
}

.gk-error-box.gk-hidden {
    display: none;
}

/* Stripe Buy Card */
.gk-buy-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.7) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.gk-buy-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.gk-buy-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.gk-buy-title {
    font-size: 14px;
    font-weight: 800;
    color: #f8fafc;
}

.gk-buy-badge {
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #fbbf24;
    font-size: 10.5px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.gk-buy-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
}

.gk-buy-orig-price {
    font-size: 15px;
    color: #94a3b8;
    text-decoration: line-through;
    opacity: 0.75;
}

.gk-buy-sale-price {
    font-size: 26px;
    font-weight: 900;
    color: #34d399;
    text-shadow: 0 0 15px rgba(52, 211, 153, 0.3);
}

.gk-buy-period {
    font-size: 12px;
    color: #cbd5e1;
    font-weight: 500;
}

.gk-buy-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.gk-feature-item {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.4;
}

.gk-btn-stripe {
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border: none;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
    transition: all 0.2s ease;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.gk-btn-stripe:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

/* Demo Keys Bar */
.gk-demo-keys-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 14px;
    text-align: left;
}

.gk-demo-label {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gk-demo-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.gk-demo-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 4px 8px;
    color: #94a3b8;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.gk-demo-pill:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.5);
    color: #e0e7ff;
    transform: translateY(-1px);
}

.gk-demo-pill .pill-tier {
    background: rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
    font-size: 9px;
    padding: 1px 4px;
    border-radius: 3px;
    font-weight: 700;
}

/* --- 6. DASHBOARD TOP HEADER BADGE & NOTIFICATIONS --- */
.gk-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(168, 85, 247, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #c084fc;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gk-header-badge:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(168, 85, 247, 0.3));
    border-color: rgba(139, 92, 246, 0.6);
    color: #e9d5ff;
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.3);
}

/* Top Flash Promo Banner — Dark Purple/Indigo Gradient */
.gk-flash-banner {
    background: linear-gradient(90deg, #1e1b4b 0%, #311042 50%, #1e1b4b 100%);
    color: #ffffff;
    padding: 9px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px solid rgba(168, 85, 247, 0.35);
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.25);
    position: relative;
    z-index: 100;
    backdrop-filter: blur(8px);
}

.gk-banner-tag {
    background: rgba(168, 85, 247, 0.25);
    border: 1px solid rgba(192, 132, 252, 0.45);
    color: #e9d5ff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px rgba(192, 132, 252, 0.5);
}

.gk-banner-btn {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.35), rgba(236, 72, 153, 0.35));
    border: 1px solid rgba(236, 72, 153, 0.5);
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.25);
}

.gk-banner-btn:hover {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(236, 72, 153, 0.4);
}

/* --- 7. BOT TAB LOCK OVERLAY --- */
.gk-bot-lock-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
    border: 1.5px solid rgba(245, 158, 11, 0.35);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.gk-bot-lock-info {
    flex: 1;
    min-width: 260px;
}

.gk-bot-lock-title {
    font-size: 16px;
    font-weight: 800;
    color: #fbbf24;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.gk-bot-lock-desc {
    font-size: 12.5px;
    color: #94a3b8;
    line-height: 1.5;
}

.gk-btn-unlock-bot {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.gk-btn-unlock-bot:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

/* --- 8. STORE CARDS & LOCKED NAV TAB --- */
.gk-tab-locked {
    position: relative;
    opacity: 0.9;
}

.gk-tab-locked:hover {
    color: #f43f5e !important;
    border-color: rgba(244, 63, 94, 0.4) !important;
}

.anim-store-card {
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.anim-store-card:hover {
    transform: translateY(-2px);
    border-color: rgba(245, 158, 11, 0.6) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45) !important;
}

.anim-owned {
    transition: border-color 0.2s ease, background 0.2s ease;
}

.anim-owned:hover {
    border-color: rgba(16, 185, 129, 0.45) !important;
    background: rgba(255, 255, 255, 0.06) !important;
}

.gk-promo-tag-pill {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 0 6px rgba(239, 68, 68, 0.4);
}

/* --- 9. ANIMATION SHOPPING CART & FLOATING BUTTON --- */
.gk-floating-cart {
    display: none; /* Hidden by default; only displayed when Settings panel is active */
    position: fixed;
    bottom: 34px;
    right: 28px;
    z-index: 99999;
    background: linear-gradient(135deg, #1e1b4b 0%, #311042 100%);
    border: 1.5px solid rgba(236, 72, 153, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(236, 72, 153, 0.4);
    border-radius: 50px;
    padding: 12px 22px;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
    font-weight: 800;
    font-size: 13.5px;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    pointer-events: auto !important;
}

.gk-floating-cart * {
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    cursor: pointer !important;
}

.gk-floating-cart:hover {
    transform: translateY(-3px) scale(1.03);
    border-color: #ec4899;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.8), 0 0 28px rgba(236, 72, 153, 0.6);
}

.gk-cart-icon {
    font-size: 18px;
    filter: drop-shadow(0 0 6px rgba(236, 72, 153, 0.6));
}

.gk-cart-badge {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.5);
    transition: transform 0.2s ease;
}

.gk-cart-badge.bump {
    animation: gkBump 0.3s ease;
}

/* Store Action Cart Button */
.gk-btn-cart {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-weight: 800;
    font-size: 12.5px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(236, 72, 153, 0.35);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.gk-btn-cart:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(236, 72, 153, 0.5);
    filter: brightness(1.1);
}

.gk-btn-cart.in-cart {
    background: rgba(16, 185, 129, 0.18);
    border: 1.5px solid rgba(16, 185, 129, 0.6);
    color: #34d399;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.25);
}

.gk-btn-cart.in-cart:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.6);
    color: #f87171;
}

/* Slide-out / Modal Cart */
.gk-cart-modal-content {
    background: linear-gradient(145deg, rgba(24, 24, 37, 0.98), rgba(15, 15, 26, 0.98));
    border: 1.5px solid rgba(168, 85, 247, 0.4);
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(168, 85, 247, 0.25);
    width: 100%;
    max-width: 520px;
    padding: 24px;
    position: relative;
    animation: gkModalScaleUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    color: #fff;
}

.gk-cart-items-list {
    max-height: 280px;
    overflow-y: auto;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 4px;
}

.gk-cart-item-row {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: all 0.2s ease;
}

.gk-cart-item-row:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(168, 85, 247, 0.3);
}

.gk-cart-remove-btn {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    border-radius: 6px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
    transition: all 0.2s ease;
}

.gk-cart-remove-btn:hover {
    background: #ef4444;
    color: #fff;
}

.gk-cart-summary {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 18px;
    margin-top: 14px;
}

/* Animations */
@keyframes gkFadeIn {
    from { opacity: 0; backdrop-filter: blur(0px); }
    to { opacity: 1; backdrop-filter: blur(14px); }
}

@keyframes gkModalScaleUp {
    from { opacity: 0; transform: scale(0.92) translateY(16px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes gkFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes gkBump {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.35); }
}

/* ==========================================================================
   MASTER ADMIN MANAGEMENT CONSOLE STYLES
   ========================================================================== */
/* --- Top Navigation Announcement Banner (Discord Purchase Notice) --- */
.dash-nav-banner {
    flex: 1;
    max-width: 680px;
    margin: 0 14px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.18), rgba(168, 85, 247, 0.18));
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 8px;
    padding: 5px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 14px rgba(168, 85, 247, 0.15) inset;
    overflow: hidden;
    cursor: default;
    transition: all 0.2s ease;
}

.dash-nav-banner:hover {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.28), rgba(168, 85, 247, 0.28));
    border-color: #c084fc;
    box-shadow: 0 0 18px rgba(192, 132, 252, 0.3);
}

.dash-nav-banner-icon {
    font-size: 13px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px #a855f7);
}

.dash-nav-banner-text {
    font-size: 11px;
    font-weight: 600;
    color: #e0e7ff;
    letter-spacing: 0.15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

#view-admin-console {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    max-height: 100vh;
    width: 100vw;
    background: radial-gradient(circle at 50% 0%, #1e1136 0%, #0d0918 100%);
    color: #f8fafc;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 24px 24px 120px 24px;
    box-sizing: border-box;
    overflow-y: auto !important;
    overflow-x: hidden;
    z-index: 10000;
    -webkit-overflow-scrolling: touch;
}

.adm-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 60px;
}

.adm-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(26, 17, 48, 0.75);
    border: 1px solid rgba(168, 85, 247, 0.35);
    border-radius: 16px;
    padding: 16px 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.adm-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.adm-crown {
    font-size: 32px;
    filter: drop-shadow(0 0 12px rgba(236, 72, 153, 0.6));
}

.adm-title {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #fff, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
}

.adm-badge {
    font-size: 10px;
    font-weight: 800;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: #fff;
    padding: 2px 8px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    -webkit-text-fill-color: initial;
}

.adm-subtitle {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
}

.adm-top-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.adm-btn-return-board {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.35), rgba(236, 72, 153, 0.35));
    border: 1px solid #c084fc;
    color: #fff;
    padding: 9px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 0 16px rgba(192, 132, 252, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.adm-btn-return-board:hover {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    box-shadow: 0 0 24px rgba(236, 72, 153, 0.6);
    transform: translateY(-2px);
}

.adm-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
    padding: 9px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.adm-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-1px);
}

.adm-btn-danger {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #f87171;
    padding: 9px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.adm-btn-danger:hover {
    background: #ef4444;
    color: #fff;
}

.adm-grid {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 20px;
}

@media (max-width: 1100px) {
    .adm-grid {
        grid-template-columns: 1fr;
    }
}

.adm-card {
    background: rgba(22, 14, 40, 0.80);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 18px;
    padding: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.adm-card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 14px;
}

.adm-card-title {
    font-size: 17px;
    font-weight: 800;
    color: #f8fafc;
    display: flex;
    align-items: center;
    gap: 8px;
}

.adm-card-desc {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 4px;
}

.adm-presets-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    padding: 14px;
}

.adm-preset-label {
    font-size: 11px;
    font-weight: 800;
    color: #c084fc;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.adm-preset-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.adm-preset-btn {
    background: linear-gradient(135deg, rgba(30, 20, 56, 0.9), rgba(45, 25, 80, 0.9));
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 10px;
    padding: 10px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    transition: all 0.25s ease;
}

.adm-preset-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.35);
    border-color: #c084fc;
}

.adm-preset-basic:hover {
    border-color: #38bdf8;
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.35);
}

.adm-preset-pro:hover {
    border-color: #ec4899;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
}

.adm-preset-icon {
    font-size: 22px;
}

.adm-preset-btn strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
}

.adm-preset-btn small {
    display: block;
    font-size: 10.5px;
    color: #cbd5e1;
    margin-top: 2px;
}

.adm-form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.adm-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.adm-field.flex2 { flex: 2; }
.adm-field.flex1 { flex: 1; }

.adm-field label {
    font-size: 11.5px;
    font-weight: 700;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.adm-input {
    background: rgba(10, 6, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #fff;
    padding: 10px 14px;
    font-size: 13.5px;
    font-family: inherit;
    transition: all 0.2s ease;
    box-sizing: border-box;
    width: 100%;
}

.adm-input:focus {
    outline: none;
    border-color: #c084fc;
    box-shadow: 0 0 0 3px rgba(192, 132, 252, 0.25);
    background: rgba(15, 8, 30, 0.95);
}

.adm-key-input-group {
    display: flex;
    gap: 8px;
}

.adm-btn-small {
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: #d8b4fe;
    border-radius: 8px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.adm-btn-small:hover {
    background: rgba(168, 85, 247, 0.4);
    color: #fff;
}

.adm-overrides-section {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 16px;
}

.adm-overrides-title {
    font-size: 11px;
    font-weight: 800;
    color: #f472b6;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.adm-checkbox-grid {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.adm-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 600;
    color: #e2e8f0;
    cursor: pointer;
    user-select: none;
}

.adm-checkbox-label input[type="checkbox"] {
    accent-color: #ec4899;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.adm-btn-row {
    display: flex;
    gap: 10px;
}

.adm-btn-primary {
    flex: 1;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border: none;
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.35);
}

.adm-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.5);
}

.adm-search-input {
    background: rgba(10, 6, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #fff;
    padding: 8px 14px;
    font-size: 12.5px;
    width: 280px;
}

.adm-rooms-scroll {
    overflow-y: auto;
    max-height: 650px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 4px;
}

.adm-room-card {
    background: rgba(10, 6, 22, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.2s ease;
}

.adm-room-card:hover {
    background: rgba(20, 12, 40, 0.85);
    border-color: rgba(168, 85, 247, 0.35);
    transform: translateY(-1px);
}

.adm-room-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.adm-room-name {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.adm-room-key-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #38bdf8;
}

.adm-room-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.adm-pill-tag {
    font-size: 10.5px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
}

.adm-pill-tag.bot-on { background: rgba(56, 189, 248, 0.2); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.4); }
.adm-pill-tag.banner-on { background: rgba(236, 72, 153, 0.2); color: #f472b6; border: 1px solid rgba(236, 72, 153, 0.4); }
.adm-pill-tag.tier-badge { background: rgba(168, 85, 247, 0.2); color: #d8b4fe; border: 1px solid rgba(168, 85, 247, 0.4); }

.adm-room-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* --- Master Admin Sub-Navigation Pills --- */
.adm-nav-pills {
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(168, 85, 247, 0.3);
    padding: 6px;
    border-radius: 12px;
    width: fit-content;
}

.adm-nav-pill {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.adm-nav-pill:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.adm-nav-pill.active {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: #fff;
    box-shadow: 0 4px 14px rgba(236, 72, 153, 0.4);
}

/* --- Dynamic Animation List Calibrator --- */
.adm-anim-calibrator {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    padding: 12px 14px;
    max-height: 230px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.adm-anim-group-title {
    font-size: 11px;
    font-weight: 800;
    color: #c084fc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 4px;
    margin-bottom: 6px;
}

.adm-anim-quick-btn {
    font-size: 10px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #cbd5e1;
    border-radius: 4px;
    padding: 1px 6px;
    cursor: pointer;
}

.adm-anim-quick-btn:hover {
    background: #ec4899;
    color: #fff;
}

.adm-anim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 10px;
}

.adm-anim-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #e2e8f0;
    cursor: pointer;
    user-select: none;
}

.adm-anim-item input[type="checkbox"] {
    accent-color: #8b5cf6;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

/* --- Live Marketplace Pricing Engine Section --- */
.adm-pricing-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.adm-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.adm-price-field-card {
    background: rgba(14, 9, 28, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.adm-price-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 8px;
    padding: 0 10px;
}

.adm-price-currency {
    color: #34d399;
    font-weight: 800;
    font-size: 16px;
    margin-right: 6px;
}

.adm-price-input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    width: 100%;
    padding: 8px 0;
    outline: none;
}

.adm-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.adm-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12.5px;
    text-align: left;
}

.adm-table th {
    background: rgba(0, 0, 0, 0.5);
    color: #c084fc;
    font-weight: 800;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.adm-table td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
}

.adm-table tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.adm-table-input {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #34d399;
    font-weight: 700;
    padding: 5px 8px;
    font-size: 12px;
    width: 80px;
}


