:root {
    --gold: #F3BA2F;
    --gold-light: #FFD25F;
    --gold-dark: #D49B26;
    --black: #0a0817;       /* Deep purple-black */
    --black-light: #0f0c2c; /* Dark violet */
    --black-card: rgba(26, 21, 72, 0.45); /* Indigo-violet transparent card bg */
    --black-border: rgba(255, 255, 255, 0.08);
    --text-primary: #FFFFFF;
    --text-secondary: #a0aec0;
    --success: #0ECB81;
    --danger: #F6465D;
    --warning: #F3BA2F;
    --info: #17a2b8;
    --neon-blue: #00f2fe;
    --neon-purple: #7928ca;
    --primary-gradient: linear-gradient(135deg, #7928ca 0%, #0070f3 100%);
    --text-muted: #d3d4d4;
    --bs-emphasis-color: #ffc107;
}

* { box-sizing: border-box; }

body {
    font-family: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
    background: radial-gradient(circle at 50% 30%, #1a1548 0%, #0a0817 100%);
    color: var(--text-primary);
    margin: 0;
    min-height: 100vh;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

.text-gold { color: var(--gold) !important; }
.text-muted-custom { color: var(--text-secondary) !important; }

.bg-dark-custom { background: var(--black-light) !important; }
.bg-card { background: var(--black-card) !important; }

.btn-gold {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    color: var(--black);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 6px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(243, 186, 47, 0.4);
    color: var(--black);
    background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 6px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--black);
}

.card-dark {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.card-dark:hover {
    border-color: var(--gold-dark);
}

.card-dark .card-header {
    background: var(--black-light);
    border-bottom: 1px solid var(--black-border);
    color: var(--gold);
    font-weight: 600;
}

.stat-card {
    background: var(--black-light);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}
.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}
.stat-card .stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

label, .form-label {
    color: var(--text-muted) !important;
}

.form-control-dark, .form-select-dark {
    background: var(--black-light);
    border: 1px solid var(--black-border);
    color: var(--text-primary);
    border-radius: 8px;
    padding: 10px 14px;
}
.form-control-dark:focus, .form-select-dark:focus {
    background: var(--black-light);
    border-color: var(--gold);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.table-dark-custom {
    --bs-table-bg: transparent;
    color: var(--text-primary);
}
.table-dark-custom thead th {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-color: var(--black-border);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}
.table-dark-custom td {
    border-color: var(--black-border);
    vertical-align: middle;
}

.badge-gold { background: var(--gold); color: var(--black); }
.badge-pending { background: var(--warning); color: var(--black); }
.badge-approved { background: var(--success); color: #fff; }
.badge-rejected { background: var(--danger); color: #fff; }

.alert-custom { border-radius: 8px; border: none; }

.sidebar {
    width: 260px;
    height: 100vh;
    background: var(--black-light);
    border-right: 1px solid var(--black-border);
    position: fixed;
    top: 0; left: 0; bottom: 0;
    z-index: 1050;
    transition: transform 0.3s;
    overflow-y: auto;
}
.sidebar-brand {
    padding: 1.5rem;
    border-bottom: 1px solid var(--black-border);
    text-align: center;
}
.sidebar-brand h4 {
    color: var(--gold);
    margin: 0;
    font-weight: 700;
    letter-spacing: 2px;
}
.sidebar-brand small { color: var(--text-secondary); font-size: 0.7rem; }
.sidebar-nav { padding: 1rem 0; }
.sidebar-nav .nav-link {
    color: var(--text-secondary);
    padding: 12px 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}
.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
    border-left-color: var(--gold);
}
.sidebar-nav .nav-link i { width: 20px; text-align: center; }

.main-content { margin-left: 260px; min-height: 100vh; background: var(--black); }
.top-bar {
    background: var(--black-light);
    border-bottom: 1px solid var(--black-border);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero {
    min-height: 100vh;
    background: radial-gradient(circle at 80% 20%, rgba(121, 40, 202, 0.15) 0%, rgba(10, 8, 23, 0) 60%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 100px;
}
.hero-content { position: relative; z-index: 1; }

.feature-icon {
    width: 64px; height: 64px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
}

.package-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}
.package-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}
.package-card.featured {
    border-color: var(--gold);
    background: linear-gradient(145deg, var(--black-card), rgba(212, 175, 55, 0.08));
}
.package-card .roi {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.login-box {
    max-width: 420px;
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
}

.rank-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--black);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.glow-text { text-shadow: 0 0 20px rgba(121, 40, 202, 0.4); }

footer {
    background: var(--black-light);
    border-top: 1px solid var(--black-border);
    padding: 2rem 0;
}

@media (max-width: 991px) {
    .sidebar { transform: translateX(-100%); }
    .sidebar.show { transform: translateX(0); }
    .main-content { margin-left: 0; }
}

/* ─── Cryptik Theme Customizations ─── */

.hero-pill {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(121, 40, 202, 0.3) 0%, rgba(0, 112, 243, 0.3) 100%);
    border: 1px solid rgba(121, 40, 202, 0.5);
    color: #e2e8f0;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cryptik-title {
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
}

.cryptik-desc {
    color: #a0aec0;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 580px;
}

/* Glass Highlight Row Card */
.glass-highlights-wrap {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
}

.glass-card-highlights {
    background: rgba(15, 12, 44, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.highlight-item {
    text-align: center;
    padding: 15px 10px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(121, 40, 202, 0.1);
    border: 1px solid rgba(121, 40, 202, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #a78bfa;
    margin-bottom: 1.25rem;
    box-shadow: 0 0 15px rgba(121, 40, 202, 0.15);
    transition: all 0.3s;
}

.highlight-item:hover .highlight-icon-box {
    background: linear-gradient(135deg, #7928ca 0%, #0070f3 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 25px rgba(0, 112, 243, 0.4);
}

.highlight-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.highlight-desc {
    color: #718096;
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* White Button */
.btn-white {
    background: #ffffff;
    color: #0a0817;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    display: inline-block;
    text-decoration: none;
}
.btn-white:hover {
    background: #e2e8f0;
    color: #0a0817;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

/* Outline White Button */
.btn-outline-white {
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    display: inline-block;
    text-decoration: none;
}
.btn-outline-white:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    color: #fff;
}

/* Pager Indicators */
.pager-indicators {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
}
.pager-dot {
    color: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: color 0.3s;
}
.pager-dot.active {
    color: #ffffff;
    border-bottom: 2px solid #7928ca;
    padding-bottom: 4px;
}

/* Floating Animation */
.float-isometric {
    animation: float-iso 6s ease-in-out infinite;
}
@keyframes float-iso {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

/* Glass Progress Container */
.glass-progress-card {
    background: rgba(15, 12, 44, 0.55);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.countdown-box {
    background: rgba(121, 40, 202, 0.05);
    border: 1px solid rgba(121, 40, 202, 0.15);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.countdown-digits {
    display: flex;
    gap: 15px;
    font-family: 'Orbitron', 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-top: 10px;
}

.countdown-digit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-digit-item span {
    line-height: 1;
}

.countdown-label {
    font-size: 0.65rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.progress-bar-glow {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill-glow {
    height: 100%;
    background: linear-gradient(90deg, #7928ca 0%, #0070f3 100%);
    box-shadow: 0 0 15px rgba(0, 112, 243, 0.6);
    border-radius: 4px;
}

/* Glass Cards for Packages */
.package-card {
    background: rgba(15, 12, 44, 0.55) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    padding: 2.5rem 2rem !important;
    transition: all 0.3s ease !important;
}

.package-card:hover {
    border-color: rgba(121, 40, 202, 0.4) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(121, 40, 202, 0.15) !important;
}

.package-card.featured {
    background: rgba(121, 40, 202, 0.05) !important;
    border-color: rgba(121, 40, 202, 0.4) !important;
    box-shadow: 0 0 25px rgba(121, 40, 202, 0.1) !important;
}

.package-card .roi {
    font-family: 'Outfit', sans-serif !important;
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* FAQ accordion styling overrides */
.accordion-item {
    background: rgba(15, 12, 44, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}
.accordion-button {
    background: rgba(15, 12, 44, 0.4) !important;
    color: #ffffff !important;
    border: none !important;
}
.accordion-button:not(.collapsed) {
    background: rgba(121, 40, 202, 0.1) !important;
    color: #a78bfa !important;
    box-shadow: none !important;
}
.accordion-button::after {
    filter: invert(1);
}
.accordion-body {
    background: rgba(10, 8, 23, 0.2) !important;
    color: #a0aec0 !important;
}

/* Form Styles */
.form-dark {
    background: rgba(15, 12, 44, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    border-radius: 12px !important;
}
.form-dark:focus {
    border-color: #7928ca !important;
    box-shadow: 0 0 10px rgba(121, 40, 202, 0.2) !important;
}

/* Side Badge style */
.section-badge-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
.side-badge {
    width: 8px;
    height: 34px;
    background: linear-gradient(180deg, var(--purple) 0%, var(--purple-dark) 100%);
    border-radius: 4px;
    flex-shrink: 0;
}

/* Bullet lists on investor distribution */
.distribution-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}
.distribution-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #a0aec0;
}
.bullet-ring {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid var(--purple-light);
    background: transparent;
    display: inline-block;
    flex-shrink: 0;
}
.bullet-ring.cyan { border-color: #00f2fe; }
.bullet-ring.pink { border-color: #ec4899; }
.bullet-ring.orange { border-color: var(--orange); }

/* Hero bullets */
.hero-bullets {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.hero-bullet-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #a0aec0;
}
.hero-bullet-item i {
    color: var(--purple-light);
}

/* Achievements grid */
.stats-grid-cryptik {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.stat-box-cryptik {
    background: rgba(26, 21, 72, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}
.stat-box-cryptik:hover {
    transform: translateY(-3px);
    border-color: rgba(121, 40, 202, 0.2);
}
.stat-icon-cryptik {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(121, 40, 202, 0.1);
    color: var(--purple-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.stat-box-cryptik.blue .stat-icon-cryptik {
    background: rgba(0, 112, 243, 0.1);
    color: #60a5fa;
}
.stat-box-cryptik.pink .stat-icon-cryptik {
    background: rgba(236, 72, 153, 0.1);
    color: #f472b6;
}
.stat-info-cryptik {
    display: flex;
    flex-direction: column;
}
.stat-number-cryptik {
    font-family: 'Orbitron', 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}
.stat-label-cryptik {
    font-size: 0.72rem;
    color: #718096;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
