/* =====================================================
   KodiStore Gaming — Main CSS (Dark Cyberpunk Theme)
   ===================================================== */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Rajdhani:wght@600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --bg-base:       #050814;
    --bg-card:       #0d1117;
    --bg-card-2:     #111827;
    --bg-glass:      rgba(255, 255, 255, 0.04);
    --border:        rgba(255, 255, 255, 0.07);
    --border-subtle: rgba(255, 255, 255, 0.04);
    --primary:       #7c3aed;
    --primary-dark:  #5b21b6;
    --primary-light: #a78bfa;
    --accent:        #06b6d4;
    --accent-dark:   #0891b2;
    --accent-light:  #67e8f9;
    --success:       #10b981;
    --danger:        #ef4444;
    --warning:       #f59e0b;
    --info:          #3b82f6;
    --ff-orange:     #ff6b35;
    --ff-gold:       #f59e0b;
    --text:          #f1f5f9;
    --text-muted:    #64748b;
    --text-sub:      #94a3b8;
    --shadow-glow-p: 0 0 40px rgba(124, 58, 237, 0.3);
    --shadow-glow-a: 0 0 40px rgba(6, 182, 212, 0.3);
    --card-radius:   1rem;
    --btn-radius:    0.75rem;
    --transition:    all 0.25s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-base);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== ANIMATED BACKGROUND ===== */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

/* Orb Glow Effects */
.orb-purple {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    pointer-events: none;
    z-index: 0;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-cyan {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6,182,212,0.10) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    pointer-events: none;
    z-index: 0;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-light);
}

img { max-width: 100%; }

code, .mono {
    font-family: 'Courier New', monospace;
    background: rgba(255,255,255,0.05);
    padding: 0.1rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.9em;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 1;
}

.container-sm {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 1;
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 8, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 1.25rem;
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 2rem;
}

.navbar-brand {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar-brand span {
    color: var(--ff-orange);
    -webkit-text-fill-color: var(--ff-orange);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.navbar-menu a {
    color: var(--text-sub);
    padding: 0.5rem 0.9rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--text);
    background: var(--bg-glass);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(5, 8, 20, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 999;
    padding: 1rem;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
    display: block;
    color: var(--text-sub);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-nav a:hover { color: var(--text); background: var(--bg-glass); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: var(--btn-radius);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background 0.2s;
}

.btn:hover::after { background: rgba(255,255,255,0.07); }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(124,58,237,0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124,58,237,0.5);
    color: white;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(6,182,212,0.35);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6,182,212,0.5);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--text-sub);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    background: rgba(124,58,237,0.07);
}

.btn-ghost {
    background: var(--bg-glass);
    color: var(--text-sub);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.08);
    color: var(--text);
}

.btn-danger {
    background: rgba(239,68,68,0.15);
    color: #fca5a5;
    border: 1px solid rgba(239,68,68,0.3);
}

.btn-danger:hover {
    background: rgba(239,68,68,0.25);
    color: white;
}

.btn-success {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
}

.btn-success:hover { transform: translateY(-1px); }

.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.8rem; }
.btn-lg { padding: 0.9rem 2rem; font-size: 1.05rem; }
.btn-xl { padding: 1.1rem 2.5rem; font-size: 1.15rem; border-radius: 1rem; }
.btn-block { width: 100%; }

/* CTA neon glow */
.btn-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 1rem;
    box-shadow: 0 0 30px rgba(124,58,237,0.4), 0 4px 20px rgba(0,0,0,0.3);
    animation: pulseCTA 2.5s ease-in-out infinite;
}

@keyframes pulseCTA {
    0%, 100% { box-shadow: 0 0 20px rgba(124,58,237,0.4), 0 4px 20px rgba(0,0,0,0.3); }
    50% { box-shadow: 0 0 45px rgba(124,58,237,0.7), 0 4px 20px rgba(0,0,0,0.3); }
}

/* ===== CARDS ===== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(124,58,237,0.35);
    box-shadow: 0 8px 30px rgba(124,58,237,0.15);
}

.card-glass {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--card-radius);
    padding: 1.5rem;
}

.card-game {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.card-game:hover {
    transform: translateY(-6px);
    border-color: var(--ff-orange);
    box-shadow: 0 12px 40px rgba(255,107,53,0.2);
}

/* Package Card */
.pkg-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 1rem;
    padding: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    text-align: center;
}

.pkg-card:hover,
.pkg-card.selected {
    border-color: var(--primary);
    background: rgba(124,58,237,0.08);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.2);
    transform: translateY(-3px);
}

.pkg-card.popular::before {
    content: attr(data-label);
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--ff-orange), #dc2626);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.75rem;
    border-radius: 99px;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== FORM ELEMENTS ===== */
.form-group {
    margin-bottom: 1.25rem;
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-sub);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 0.625rem;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(124,58,237,0.07);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}

.form-control::placeholder { color: var(--text-muted); }

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
}

.input-group {
    display: flex;
    gap: 0;
}

.input-group .form-control {
    border-radius: 0.625rem 0 0 0.625rem;
    flex: 1;
}

.input-group .btn {
    border-radius: 0 0.625rem 0.625rem 0;
    flex-shrink: 0;
}

/* Password strength */
.password-strength {
    height: 4px;
    border-radius: 99px;
    margin-top: 0.5rem;
    background: var(--border);
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    border-radius: 99px;
    transition: width 0.3s ease, background-color 0.3s ease;
    width: 0%;
}

/* ===== BADGES ===== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-primary   { background: rgba(124,58,237,0.15); color: var(--primary-light); border: 1px solid rgba(124,58,237,0.3); }
.badge-accent    { background: rgba(6,182,212,0.15);  color: var(--accent-light);  border: 1px solid rgba(6,182,212,0.3); }
.badge-success   { background: rgba(16,185,129,0.15); color: #6ee7b7;              border: 1px solid rgba(16,185,129,0.3); }
.badge-danger    { background: rgba(239,68,68,0.15);  color: #fca5a5;              border: 1px solid rgba(239,68,68,0.3); }
.badge-warning   { background: rgba(245,158,11,0.15); color: #fcd34d;              border: 1px solid rgba(245,158,11,0.3); }
.badge-info      { background: rgba(59,130,246,0.15); color: #93c5fd;              border: 1px solid rgba(59,130,246,0.3); }
.badge-secondary { background: rgba(100,116,139,0.15);color: var(--text-sub);      border: 1px solid rgba(100,116,139,0.3); }

/* ===== ALERTS / FLASH ===== */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.alert-success { background: rgba(16,185,129,0.1);  border: 1px solid rgba(16,185,129,0.25); color: #6ee7b7; }
.alert-danger   { background: rgba(239,68,68,0.1);   border: 1px solid rgba(239,68,68,0.25);  color: #fca5a5; }
.alert-warning  { background: rgba(245,158,11,0.1);  border: 1px solid rgba(245,158,11,0.25); color: #fcd34d; }
.alert-info     { background: rgba(59,130,246,0.1);  border: 1px solid rgba(59,130,246,0.25); color: #93c5fd; }

/* Toast Notification */
.toast-container {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 360px;
}

.toast {
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(16px);
    animation: slideInRight 0.4s ease, fadeOut 0.4s ease 4.6s forwards;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.toast-success { background: rgba(16,185,129,0.85);  color: white; border: 1px solid rgba(16,185,129,0.5); }
.toast-error   { background: rgba(239,68,68,0.85);   color: white; border: 1px solid rgba(239,68,68,0.5); }
.toast-warning { background: rgba(245,158,11,0.85);  color: white; border: 1px solid rgba(245,158,11,0.5); }
.toast-info    { background: rgba(59,130,246,0.85);  color: white; border: 1px solid rgba(59,130,246,0.5); }

@keyframes slideInRight {
    from { transform: translateX(120%); opacity: 0; }
    to   { transform: translateX(0);   opacity: 1; }
}

@keyframes fadeOut {
    to { opacity: 0; transform: translateY(-10px); }
}

/* ===== TICKER ===== */
.ticker-wrapper {
    background: rgba(124,58,237,0.08);
    border-top: 1px solid rgba(124,58,237,0.2);
    border-bottom: 1px solid rgba(124,58,237,0.2);
    padding: 0.6rem 0;
    overflow: hidden;
    position: relative;
}

.ticker-label {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    z-index: 2;
}

.ticker-track {
    display: flex;
    gap: 3rem;
    animation: ticker 30s linear infinite;
    padding-left: 120px;
    white-space: nowrap;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-sub);
    white-space: nowrap;
}

.ticker-item span { color: var(--accent); font-weight: 600; }

@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 5rem 0 4rem;
    position: relative;
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(124,58,237,0.12);
    border: 1px solid rgba(124,58,237,0.3);
    color: var(--primary-light);
    padding: 0.4rem 1rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-sub);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.hero-stat-item .number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-stat-item .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ===== SECTION TITLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .eyebrow {
    display: inline-block;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-sub);
    max-width: 520px;
    margin: 0 auto;
    font-size: 1rem;
}

/* ===== CATEGORY GRID ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: block;
}

.category-card:hover {
    border-color: var(--primary);
    background: rgba(124,58,237,0.07);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-p);
    color: var(--text);
}

.category-card .icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    display: block;
    transition: transform 0.25s;
}

.category-card:hover .icon { transform: scale(1.15); }

.category-card .name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-sub);
    line-height: 1.3;
}

.category-card:hover .name { color: var(--text); }

/* ===== FREE FIRE CARD ===== */
.ff-banner {
    position: relative;
    background: linear-gradient(135deg, #0f0a0a 0%, #1a0a00 50%, #0a1020 100%);
    border: 1px solid rgba(255,107,53,0.3);
    border-radius: 1.5rem;
    padding: 2.5rem;
    overflow: hidden;
    margin: 2rem 0;
}

.ff-banner::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 50%;
    background: radial-gradient(ellipse at right, rgba(255,107,53,0.12) 0%, transparent 70%);
}

.ff-banner-content { position: relative; z-index: 1; }

.ff-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--ff-orange);
    text-shadow: 0 0 30px rgba(255,107,53,0.5);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(124,58,237,0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-p);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.2);
}

.feature-icon.cyan {
    background: rgba(6,182,212,0.15);
    border-color: rgba(6,182,212,0.2);
}

.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.feature-card p  { font-size: 0.875rem; color: var(--text-sub); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: 1.5rem;
}

.testimonial-stars { color: var(--ff-gold); font-size: 0.85rem; margin-bottom: 0.75rem; }
.testimonial-text  { color: var(--text-sub); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.testimonial-user .name { font-weight: 600; font-size: 0.9rem; }
.testimonial-user .sub  { font-size: 0.75rem; color: var(--text-muted); }

/* ===== HOW TO ORDER ===== */
.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 0 20px rgba(124,58,237,0.4);
}

.step-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-card p  { font-size: 0.875rem; color: var(--text-sub); }

/* ===== TABS ===== */
.tabs {
    display: flex;
    gap: 0.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0.875rem;
    padding: 0.35rem;
    flex-wrap: wrap;
}

.tab-btn {
    flex: 1;
    min-width: fit-content;
    padding: 0.6rem 1rem;
    border: none;
    background: none;
    color: var(--text-muted);
    border-radius: 0.6rem;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.tab-btn:hover { color: var(--text); background: var(--bg-glass); }

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 2px 10px rgba(124,58,237,0.3);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== TABLES ===== */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--card-radius);
    border: 1px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

th {
    background: rgba(255,255,255,0.03);
    padding: 0.875rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-sub);
    vertical-align: middle;
}

tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,0.02); }

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 1rem;
}

.footer-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

.footer-heading {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-sub);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== FLOATING WA BUTTON ===== */
.wa-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 900;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    animation: waFloat 3s ease-in-out infinite;
}

.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }

.wa-float svg { width: 28px; height: 28px; fill: white; }

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

/* ===== POPUP MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-card);
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    width: 100%;
    max-width: 480px;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(124,58,237,0.2);
}

.modal-overlay.open .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover { color: var(--text); background: rgba(255,255,255,0.1); }

/* ===== PAYMENT METHODS ===== */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 0.75rem;
}

.payment-option {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 0.875rem;
    padding: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.payment-option:hover,
.payment-option.selected {
    border-color: var(--primary);
    background: rgba(124,58,237,0.08);
}

.payment-option .pm-icon { font-size: 1.5rem; }
.payment-option .pm-name { font-size: 0.75rem; font-weight: 600; color: var(--text-sub); }
.payment-option .pm-fee  { font-size: 0.7rem; color: var(--text-muted); }

/* ===== INVOICE / STRUK ===== */
.invoice-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    max-width: 560px;
    margin: 0 auto;
    overflow: hidden;
}

.invoice-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px dashed var(--border);
    background: linear-gradient(135deg, rgba(124,58,237,0.05), rgba(6,182,212,0.05));
}

.invoice-status {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.invoice-body {
    padding: 1.5rem 2rem;
}

.invoice-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.9rem;
}

.invoice-row:last-child { border-bottom: none; }
.invoice-row .label { color: var(--text-muted); }
.invoice-row .value { font-weight: 600; color: var(--text); text-align: right; }

.pln-token-display {
    background: rgba(16,185,129,0.08);
    border: 2px solid rgba(16,185,129,0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    margin: 1rem 0;
}

.pln-token-number {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--success);
    letter-spacing: 2px;
    word-break: break-all;
    text-shadow: 0 0 20px rgba(16,185,129,0.4);
}

/* ===== CLAIM PAGE ===== */
.claim-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    max-width: 500px;
    margin: 3rem auto;
    text-align: center;
}

.claim-skin-img {
    width: 120px;
    height: 120px;
    border-radius: 1.25rem;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--ff-orange), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

/* ===== DASHBOARD ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.stat-icon.purple { background: rgba(124,58,237,0.15); }
.stat-icon.cyan   { background: rgba(6,182,212,0.15); }
.stat-icon.green  { background: rgba(16,185,129,0.15); }
.stat-icon.orange { background: rgba(255,107,53,0.15); }

.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.stat-value { font-family: 'Rajdhani', sans-serif; font-size: 1.6rem; font-weight: 700; line-height: 1; }

/* ===== AUTH PAGES ===== */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.auth-card {
    background: var(--bg-card);
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: 1.5rem;
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.auth-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo a {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    background: var(--bg-glass);
    color: var(--text-sub);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    margin-bottom: 0.75rem;
}

.social-btn:hover { background: rgba(255,255,255,0.07); color: var(--text); }

.divider-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 1.25rem 0;
    position: relative;
}

.divider-text::before,
.divider-text::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: var(--border);
}

.divider-text::before { left: 0; }
.divider-text::after  { right: 0; }

/* ===== LOADING ===== */
.loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(124,58,237,0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.skeleton {
    background: linear-gradient(90deg, var(--bg-card) 25%, rgba(255,255,255,0.04) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 0.375rem;
}

@keyframes shimmer {
    from { background-position: 200% 0; }
    to   { background-position: -200% 0; }
}

/* ===== PPOB FORM ===== */
.ppob-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.ppob-tabs::-webkit-scrollbar { display: none; }

.ppob-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.875rem;
    background: var(--bg-card);
    cursor: pointer;
    min-width: 90px;
    transition: var(--transition);
    flex-shrink: 0;
    text-decoration: none;
}

.ppob-tab:hover, .ppob-tab.active {
    border-color: var(--primary);
    background: rgba(124,58,237,0.08);
    color: var(--text);
}

.ppob-tab .tab-icon { font-size: 1.5rem; }
.ppob-tab .tab-label { font-size: 0.7rem; font-weight: 600; color: var(--text-muted); text-align: center; white-space: nowrap; }
.ppob-tab.active .tab-label { color: var(--primary-light); }

/* ===== CHECKOUT TIMER ===== */
.countdown-timer {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(245,158,11,0.08);
    border: 1px solid rgba(245,158,11,0.2);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.countdown-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--warning);
    line-height: 1;
    min-width: 2.5rem;
    text-align: center;
}

.countdown-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.countdown-sep { font-size: 1.5rem; color: var(--warning); margin-bottom: 0.75rem; }

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-muted  { color: var(--text-muted); }
.text-sub    { color: var(--text-sub); }
.text-primary { color: var(--primary-light); }
.text-accent  { color: var(--accent); }
.text-success { color: var(--success); }
.text-danger  { color: var(--danger); }
.text-warning { color: var(--warning); }

.fw-bold   { font-weight: 700; }
.fw-semi   { font-weight: 600; }
.fw-medium { font-weight: 500; }

.fs-sm { font-size: 0.8rem; }
.fs-xs { font-size: 0.75rem; }
.fs-lg { font-size: 1.1rem; }

.d-flex      { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-0 { padding: 0; }
.py-5 { padding-top: 5rem; padding-bottom: 5rem; }
.py-4 { padding-top: 3rem; padding-bottom: 3rem; }

.w-100 { width: 100%; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: rgba(124,58,237,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .navbar-menu { display: none; }
    .hamburger { display: flex; }

    .hero { min-height: auto; padding: 4rem 0 3rem; }
    .hero-stats { gap: 1.5rem; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    .auth-card { padding: 1.75rem; }

    .invoice-card { border-radius: 1rem; }
    .invoice-header { padding: 1.5rem; }
    .invoice-body { padding: 1.25rem; }

    .tabs { flex-direction: column; }
}

@media (max-width: 480px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.25rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .payment-grid { grid-template-columns: repeat(2, 1fr); }
    .btn-xl { padding: 0.9rem 1.5rem; font-size: 1rem; }


    .pln-token-number { font-size: 1.25rem; letter-spacing: 1px; }
}

/* =====================================================
   LOADING SPLASH SCREEN — 2 DETIK
   ===================================================== */
#page-loader {
    position: fixed; inset: 0; z-index: 99999;
    background: #050814;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#page-loader::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(124,58,237,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(124,58,237,.04) 1px,transparent 1px);
    background-size: 50px 50px; animation: gridMove 20s linear infinite; pointer-events: none;
}
.loader-logo {
    font-family: 'Rajdhani',sans-serif; font-size: 2.25rem; font-weight: 700;
    background: linear-gradient(135deg,#a78bfa,#06b6d4);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: logoGlow 1s ease-in-out infinite alternate; position: relative;
}
@keyframes logoGlow {
    from { filter: drop-shadow(0 0 8px rgba(124,58,237,.5)); }
    to   { filter: drop-shadow(0 0 22px rgba(6,182,212,.8)); }
}
.loader-tagline { font-size: .8rem; color: #64748b; letter-spacing: 2px; text-transform: uppercase; position: relative; }
.loader-bar-wrap { width: 200px; height: 3px; background: rgba(255,255,255,.06); border-radius: 99px; overflow: hidden; position: relative; }
.loader-bar { height: 100%; width: 0%; background: linear-gradient(90deg,#7c3aed,#06b6d4); border-radius: 99px; animation: loadBar 1.8s ease-in-out forwards; }
@keyframes loadBar { 0%{width:0%} 30%{width:35%} 60%{width:65%} 90%{width:90%} 100%{width:100%} }
.loader-dots { display: flex; gap: 6px; position: relative; }
.loader-dots span { width: 8px; height: 8px; border-radius: 50%; background: #7c3aed; animation: dotBounce 1.2s ease-in-out infinite; }
.loader-dots span:nth-child(2) { background: #5b21b6; animation-delay: .2s; }
.loader-dots span:nth-child(3) { background: #06b6d4; animation-delay: .4s; }
@keyframes dotBounce { 0%,80%,100%{transform:scale(.7);opacity:.5} 40%{transform:scale(1.2);opacity:1} }

/* Page content fade-in setelah loader */
.page-content { animation: pageFadeIn .4s ease forwards; }
@keyframes pageFadeIn { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }

/* AJAX overlay */
.ajax-overlay {
    position: fixed; inset: 0; background: rgba(5,8,20,.7); backdrop-filter: blur(4px);
    z-index: 9000; display: none; align-items: center; justify-content: center; flex-direction: column; gap: 1rem;
}
.ajax-overlay.show { display: flex; }
.ajax-spinner { width: 48px; height: 48px; border: 3px solid rgba(124,58,237,.2); border-top-color: #7c3aed; border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to{transform:rotate(360deg)} }
.ajax-overlay-text { color: #94a3b8; font-size: .9rem; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }

/* Scroll to top */
#scroll-top-btn {
    position: fixed; bottom: 5.5rem; right: 1.5rem; width: 42px; height: 42px;
    background: rgba(124,58,237,.15); border: 1px solid rgba(124,58,237,.4); border-radius: 50%;
    color: #a78bfa; font-size: 1.1rem; cursor: pointer; display: none; align-items: center;
    justify-content: center; transition: all .3s; z-index: 500; backdrop-filter: blur(8px);
}
#scroll-top-btn.show { display: flex; }
#scroll-top-btn:hover { background: rgba(124,58,237,.3); transform: translateY(-3px); }

/* Button loading state */
.btn.loading { position: relative; pointer-events: none; opacity: .8; color: transparent !important; }
.btn.loading::after {
    content: ''; position: absolute; width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,.3); border-top-color: #fff;
    border-radius: 50%; animation: spin .7s linear infinite; top: 50%; left: 50%; margin: -9px 0 0 -9px;
}

/* Print CSS */
@media print {
    #page-loader,.navbar,.mobile-nav,.footer,.wa-float,#scroll-top-btn,
    .ajax-overlay,.btn-cta,.hero,.toast-container { display: none !important; }
    body { background: #fff !important; color: #000 !important; }
    .invoice-card { box-shadow: none !important; border: 1px solid #ccc !important; }
}

