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

/* ===== NORMAL CSS ONLY - NO TAILWIND - BOOTSTRAP USED ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



.abc {
    background-color: #ba9a5e !important;
}

.cinzel {
    font-family: 'Cinzel', serif;
}

.cinzel-deco {
    font-family: 'Cinzel Decorative', serif;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

#app {
    background: #be995b;
    color: #fff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.container-empire {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
    background-color: #020202 !important;
}

@media(min-width:768px) {
    .container-empire {
        padding-left: 32px;
        padding-right: 32px;
    }
}

/* Gold chrome text */
.gold-chrome {
    background: linear-gradient(180deg, #FFF8DC 0%, #FFD700 25%, #D4AF37 50%, #B8860B 75%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    display: inline-block;
}

.glass {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.glass-2 {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 12px;
    text-align: left;
}



.logo-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: pulse 2s infinite;
}

/* Badges */
.badge-gold {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 9999px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #D4AF37;
    font-family: 'JetBrains Mono', monospace;
}

/* Hero */
.hero-card {
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
    position: relative;
}

.shine-bg {
    background: linear-gradient(110deg, transparent 30%, rgba(255, 215, 0, 0.15) 50%, transparent 70%);
    background-size: 200% 100%;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    0% {
        background-position: -200% 0
    }

    100% {
        background-position: 200% 0
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.5
    }
}

@keyframes dust {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0
    }

    10% {
        opacity: 1
    }

    90% {
        opacity: 1
    }

    100% {
        transform: translateY(-100px) translateX(100px) scale(1.5);
        opacity: 0
    }
}

.stat-label {
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #D4AF37;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
}

.stat-value {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.invite-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    border-radius: 9999px;
    background: #000;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    flex-wrap: wrap;
    justify-content: center;
}

.dot-green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00FF88;
    box-shadow: 0 0 10px #00FF88;
    animation: pulse 2s infinite;
}

.tilt-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tilt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.empire-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.empire-modal.show {
    display: flex;
}

.modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal-card {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow: auto;
    background: #0a0a0a;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.2);
}

.compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(24px);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 12px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.compare-bar.show {
    transform: translateY(0);
}

.btn-gold {
    background: #D4AF37;
    color: #000;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 11px;
    font-family: 'JetBrains Mono', monospace;
    padding: 8px 16px;
    border: none;
}

.btn-gold:hover {
    background: #FFD700;
    color: #000;
}

/* Filters - Bootstrap + Normal */
.dust-dot {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 6px #FFD700;
}

.filter-label {
    font-size: 10px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
}

.btn-gold-active {
    background: #D4AF37;
    color: #000;
    border: 1px solid #D4AF37;
    border-radius: 9999px;
    font-size: 11px;
    font-family: 'JetBrains Mono', monospace;
    padding: 6px 16px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.btn-gold-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 9999px;
    font-size: 11px;
    font-family: 'JetBrains Mono', monospace;
    padding: 6px 16px;
}

.btn-gold-outline:hover {
    border-color: rgba(212, 175, 55, 0.3);
    color: #fff;
}

.btn-white-active {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
    border-radius: 9999px;
    font-size: 10px;
    font-family: 'JetBrains Mono', monospace;
    padding: 6px 14px;
}

.btn-white-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    font-size: 10px;
    font-family: 'JetBrains Mono', monospace;
    padding: 6px 14px;
}

.btn-white-outline:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.search-input {
    width: 160px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 9999px;
    padding: 8px 16px;
    font-size: 12px;
    font-family: 'JetBrains Mono', monospace;
    color: #fff;
}

@media(min-width:768px) {
    .search-input {
        width: 200px;
    }
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

/* Plan Cards - Bootstrap + Normal CSS ONLY */
.plan-section {
    scroll-margin-top: 140px;
}

.plan-id-circle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #D4AF37, #8B6914);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 900;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.plan-title {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 0.02em;
    color: #fff;
    line-height: 1;
}

@media(min-width:768px) {
    .plan-title {
        font-size: 22px;
    }

    #app {
        margin-left: 16px;
        margin-right: 16px;
    }
}


@media(max-width:768px) {
    

    #app {
        margin-left: 16px;
        margin-right: 16px;
        margin-bottom: -24px;
        margin-top: 16px;
    }
}

.plan-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #D4AF37;
    margin-top: 4px;
}

.plan-options-badge {
    padding: 4px 12px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.plan-card {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.plan-card-empire {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.3);
}

.slab-header {
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    position: relative;
}

.slab-header-starter {
    background: linear-gradient(to right, #1a1a1a, #2a2a2a);
}

.slab-header-growth {
    background: linear-gradient(to right, #1e3a2e, #2a5a3e);
}

.slab-header-empire {
    background: linear-gradient(to right, #3d2e00, #D4AF37, #8B6914);
}

.slab-label {
    font-size: 11px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.slab-tag {
    padding: 2px 8px;
    border-radius: 9999px;
    background: #000;
    color: #FFD700;
    font-size: 8px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.1em;
    animation: pulse 2s infinite;
}

.slab-tier-badge {
    font-size: 10px;
    font-family: 'JetBrains Mono', monospace;
    padding: 4px 8px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.shine-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 215, 0, 0.15) 50%, transparent 70%);
    background-size: 200% 100%;
    animation: shine 3s linear infinite;
    opacity: 0.4;
    pointer-events: none;
}

.icon-box-gold {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.section-heading-gold {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: #D4AF37;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

.section-heading-green {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: #00FF88;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

.table-wrapper {
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    display: none !important;
}

.table-scroll {
    max-height: 170px;
    overflow: auto;
}

.breakup-table {
    width: 100%;
    font-size: 10px;
    font-family: 'JetBrains Mono', monospace;
    border-collapse: collapse;
}

.breakup-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.breakup-label {
    padding: 5px 12px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.breakup-value {
    padding: 5px 8px;
    text-align: right;
    color: rgba(255, 255, 255, 0.8);
}

.breakup-formula-row {
    background: rgba(212, 175, 55, 0.1);
}

.breakup-label-bold {
    padding: 6px 12px;
    color: #D4AF37;
    font-weight: 700;
}

.breakup-formula {
    padding: 6px 8px;
    text-align: right;
    color: #FFD700;
    font-size: 9px;
}

.total-deposit-box {
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), rgba(255, 0, 0, 0.05));
    border: 1px solid rgba(255, 68, 68, 0.2);
    padding: 12px;
    text-align: center;
}

.mono-small {
    font-size: 9px;
    letter-spacing: 0.2em;
    color: #ff6b6b;
    font-family: 'JetBrains Mono', monospace;
}

.total-amount {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 18px;
    color: #ff3b3b;
    margin-top: 4px;
    letter-spacing: 0.02em;
}

.mono-tiny {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
    font-family: 'JetBrains Mono', monospace;
}

.icon-box-green {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.profit-box {
    border-radius: 8px;
    padding: 8px;
    border: 1px solid;
}

.profit-box-green {
    background: rgba(0, 255, 136, 0.05);
    border-color: rgba(0, 255, 136, 0.15);
}

.profit-box-gold {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.15);
}

.profit-box-white {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.profit-box-red {
    background: rgba(255, 107, 107, 0.05);
    border-color: rgba(255, 107, 107, 0.15);
}

.profit-label {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
}

.profit-value-green {
    font-weight: 700;
    font-size: 12px;
    color: #00FF88;
    margin-top: 2px;
    font-family: 'JetBrains Mono', monospace;
}

.profit-value-gold {
    font-weight: 700;
    font-size: 12px;
    color: #FFD700;
    margin-top: 2px;
    font-family: 'JetBrains Mono', monospace;
}

.profit-value-white {
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    margin-top: 2px;
    font-family: 'JetBrains Mono', monospace;
}

.profit-value-red {
    font-weight: 700;
    font-size: 12px;
    color: #FF6B6B;
    margin-top: 2px;
    font-family: 'JetBrains Mono', monospace;
}

.profit-sub {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 2px;
}

.profit-sub-green {
    font-size: 8px;
    color: rgba(0, 255, 136, 0.7);
    margin-top: 2px;
}

.total-profit-box {
    border-radius: 8px;
    background: linear-gradient(to right, rgba(255, 215, 0, 0.15), rgba(0, 255, 136, 0.15));
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.total-profit-value {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 14px;
    color: #fff;
    margin-top: 2px;
}

.profit-label-green {
    font-size: 8px;
    color: #00FF88;
    font-family: 'JetBrains Mono', monospace;
}

.roi-value {
    font-weight: 700;
    font-size: 13px;
    color: #00FF88;
    font-family: 'JetBrains Mono', monospace;
}

.btn-select {
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(to right, #D4AF37, #B8860B);
    color: #000;
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 0.15em;
    border: none;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transition: all 0.2s;
    flex: 1;
}

.btn-select:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.btn-compare {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-compare-inactive {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
}

.btn-compare-inactive:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-compare-active {
    background: rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.4);
    color: #00FF88;
}

.border-top-custom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.barcode {
    display: flex;
    display: none;
    gap: 2px;
    height: 18px;
    align-items: flex-end;
}

.barcode-line {
    background: rgba(255, 255, 255, 0.8);
}

.barcode-text {
    font-size: 7px;
    display: none;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    font-family: 'JetBrains Mono', monospace;
}

.invitation-label {
    font-size: 7px;
    letter-spacing: 0.2em;
    color: rgba(212, 175, 55, 0.6);
    font-family: 'JetBrains Mono', monospace;
}

.invitation-code {
    font-size: 8px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    font-family: 'JetBrains Mono', monospace;
}

.compare-pill {
    padding: 4px 12px;
    border-radius: 9999px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 10px;
    font-family: 'JetBrains Mono', monospace;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.compare-remove {
    color: #D4AF37;
    background: none;
    border: none;
    cursor: pointer;
}

/* Detail & Compare Modals - Normal CSS */
.detail-title {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 18px;
    color: #fff;
}

.detail-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.detail-total {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 22px;
    color: #D4AF37;
    margin-bottom: 12px;
}

.detail-table {
    width: 100%;
    font-size: 11px;
    font-family: 'JetBrains Mono', monospace;
    border-collapse: collapse;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.detail-table th {
    padding: 8px;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
}

.detail-table td {
    padding: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-table-total {
    background: rgba(212, 175, 55, 0.1);
    font-weight: 700;
}

.detail-table-total td {
    color: #D4AF37;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.profit-breakdown {
    margin-top: 16px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.15);
}

.profit-breakdown-title {
    font-size: 10px;
    color: #00FF88;
    font-family: 'JetBrains Mono', monospace;
}

.text-gold {
    color: #FFD700;
}

.btn-close-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compare-table {
    width: 100%;
    font-size: 11px;
    font-family: 'JetBrains Mono', monospace;
    border-collapse: collapse;
}

.compare-th {
    padding: 8px;
    text-align: left;
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-td {
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
}

.compare-td-bold {
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 700;
    background: rgba(212, 175, 55, 0.1);
}

.compare-tier {
    font-size: 9px;
    color: #D4AF37;
}

.compare-title {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 18px;
    color: #fff;
}

/* FIX: FILTER HORIZONTAL + FONTS ORIGINAL */
.filter-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important
}

.filter-tier-group {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    align-items: center !important
}

.filter-level-group {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex: 1 !important
}

.filter-search-wrap {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-left: 16px !important
}

.tier-btn,
.level-btn {
    display: inline-block !important;
    float: none !important;
    margin: 2px !important
}

.cinzel {
    font-family: 'Cinzel', serif !important
}

.cinzel-deco {
    font-family: 'Cinzel Decorative', serif !important
}

.mono {
    font-family: 'JetBrains Mono', monospace !important
}

.gold-chrome {
    font-family: 'Cinzel Decorative', serif !important
}

#filterBox {
    display: block !important
}