/* ===========================
   SolusiMu - Custom Stylesheet
   =========================== */

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

:root {
    --primary: #6c63ff;
    --primary-dark: #4f46e5;
    --primary-light: #a78bfa;
    --secondary: #00d4ff;
    --accent: #f72585;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --bg-dark: #0a0a1a;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --border-glass: rgba(255, 255, 255, 0.1);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --gradient-1: linear-gradient(135deg, #6c63ff 0%, #00d4ff 100%);
    --gradient-2: linear-gradient(135deg, #f72585 0%, #6c63ff 100%);
    --gradient-3: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 100%);
    --shadow-glow: 0 0 40px rgba(108, 99, 255, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

/* ===========================
   Scrollbar
   =========================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* ===========================
   Bootstrap Table Override
   =========================== */
.table {
    background: transparent !important;
    color: var(--text-primary) !important;
    --bs-table-bg: transparent !important;
    --bs-table-striped-bg: transparent !important;
    --bs-table-active-bg: rgba(255, 255, 255, 0.025) !important;
    --bs-table-hover-bg: rgba(255, 255, 255, 0.025) !important;
}

/* PR Reward history table: ensure Bootstrap table cell text uses theme colors (prevents black text on dark UI) */
.pr-reward-table {
    --bs-table-color: var(--text-secondary);
}

.pr-reward-table thead {
    --bs-table-color: var(--text-muted);
}

.table thead {
    background: transparent !important;
}

.table tbody {
    background: transparent !important;
}

.table tr {
    background: transparent !important;
}

.table td,
.table th {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
}

.table-responsive {
    background: transparent !important;
}

/* ===========================
   Particles Canvas
   =========================== */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

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

/* ===========================
   Navbar
   =========================== */
.navbar {
    background: rgba(10, 10, 26, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 42px;
    height: 42px;
}

.brand-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.navbar .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--text-primary) !important;
    background: var(--bg-card-hover);
}

.navbar .nav-link:hover::after {
    width: 70%;
}

.navbar-toggler {
    border: 1px solid var(--border-glass);
    padding: 6px 10px;
    color: var(--text-primary);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===========================
   Buttons
   =========================== */
.btn-primary-gradient {
    background: var(--gradient-1);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-primary-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-gradient:hover::before {
    left: 100%;
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.5);
    color: #fff;
}

.btn-outline-glow {
    background: transparent;
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-outline-glow:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.3);
    background: rgba(108, 99, 255, 0.08);
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-bg-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-bg-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -50px;
    left: -100px;
    animation-delay: 2s;
}

.hero-bg-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
    opacity: 0.08;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
    }

    33% {
        transform: scale(1.05) translate(10px, -10px);
    }

    66% {
        transform: scale(0.95) translate(-10px, 10px);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108, 99, 255, 0.15);
    border: 1px solid rgba(108, 99, 255, 0.3);
    color: var(--primary-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease both;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-light);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title .gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tw-cursor {
    display: inline-block;
    color: #6c63ff;
    font-weight: 200;
    margin-left: 2px;
    animation: twBlink 0.75s step-end infinite;
}

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

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 2px;
}

/* ===========================
   Hero Visual (Cards)
   =========================== */
.hero-visual {
    position: relative;
    height: 520px;
    animation: fadeInRight 0.8s ease 0.3s both;
}

.float-card {
    position: absolute;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.card-main {
    width: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: mainCardFloat 6s ease-in-out infinite;
    z-index: 3;
}

@keyframes mainCardFloat {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0px) rotate(0deg);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-15px) rotate(1deg);
    }
}

.card-mini {
    width: 200px;
    animation: miniCardFloat 5s ease-in-out infinite;
}

.card-mini-1 {
    top: 5%;
    right: 0;
    animation-delay: 1s;
    z-index: 2;
}

.card-mini-2 {
    top: 5%;
    left: 0;
    animation-delay: 2s;
    z-index: 2;
}

.card-mini-3 {
    top: 30%;
    right: -20px;
    animation-delay: 0.5s;
    z-index: 2;
}

@keyframes miniCardFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

.payment-card-visual {
    background: linear-gradient(135deg, #6c63ff, #00d4ff);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.payment-card-visual::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.payment-card-visual::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 20px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.card-chip {
    width: 35px;
    height: 28px;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.card-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.card-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-holder {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-holder-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
}

.card-network {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.mini-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.mini-card-title {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 2px;
}

.mini-card-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.mini-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 50px;
    margin-top: 4px;
}

/* ===========================
   Section Styles
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(108, 99, 255, 0.12);
    border: 1px solid rgba(108, 99, 255, 0.25);
    color: var(--primary-light);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   Features Section
   =========================== */
.features-section {
    padding: 5rem 0;
    position: relative;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: rgba(108, 99, 255, 0.3);
    box-shadow: 0 20px 60px rgba(108, 99, 255, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 18px;
    padding: 1px;
    background: var(--gradient-1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

/* ===========================
   How It Works
   =========================== */
.steps-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(108, 99, 255, 0.03) 50%, transparent 100%);
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 0 30px rgba(108, 99, 255, 0.4);
    animation: stepGlow 3s ease-in-out infinite;
}

@keyframes stepGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(108, 99, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(108, 99, 255, 0.6);
    }
}

.step-connector {
    position: absolute;
    top: 40px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ===========================
   Pricing Section
   =========================== */
.pricing-section {
    padding: 5rem 0;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 28px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.15), rgba(0, 212, 255, 0.08));
    border-color: rgba(108, 99, 255, 0.4);
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(108, 99, 255, 0.25);
}

.pricing-card:hover:not(.featured) {
    transform: translateY(-8px);
    border-color: rgba(108, 99, 255, 0.3);
}

.pricing-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-1);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.pricing-price sup {
    font-size: 1.2rem;
    vertical-align: super;
    font-weight: 600;
}

.pricing-period {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.pricing-divider {
    height: 1px;
    background: var(--border-glass);
    margin: 1.5rem 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.pricing-features li .check {
    color: var(--success);
    font-size: 1rem;
    flex-shrink: 0;
}

.pricing-features li .times {
    color: var(--text-muted);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ===========================
   Testimonials
   =========================== */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.02) 50%, transparent 100%);
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 99, 255, 0.25);
}

.testimonial-card .quote-icon {
    font-size: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    font-size: 0.875rem;
}

.author-role {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    padding: 5rem 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.2), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(108, 99, 255, 0.3);
    border-radius: 32px;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(108, 99, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   Brands / Partners
   =========================== */
.brands-section {
    padding: 3rem 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.brands-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 2rem;
}

.brands-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.brand-item {
    color: var(--text-muted);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-item:hover {
    color: var(--primary-light);
}

/* ===========================
   Footer
   =========================== */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-glass);
}

.footer-brand {
    margin-bottom: 1.5rem;
}

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

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ===========================
   Login / Register Pages
   =========================== */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem;
    position: relative;
}

.auth-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 32px;
    padding: 3rem;
    width: 100%;
    max-width: 480px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease both;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-1);
}

.auth-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.form-floating-modern {
    position: relative;
    margin-bottom: 1.25rem;
}

.form-control-modern {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    color: var(--text-primary);
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-control-modern:focus {
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.15);
    color: var(--text-primary);
}

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

.form-control-modern:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px rgba(10, 10, 26, 0.9) inset;
    -webkit-text-fill-color: var(--text-primary);
}

.input-icon-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
}

.input-with-icon {
    padding-left: 2.75rem !important;
}

.form-label-modern {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

/* ===========================
   Dashboard
   =========================== */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 260px;
    background: rgba(10, 10, 26, 0.98);
    border-right: 1px solid var(--border-glass);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 0 2rem;
    border-bottom: 1px solid var(--border-glass);
    margin-bottom: 1.5rem;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.sidebar-menu li {
    margin-bottom: 0.25rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(108, 99, 255, 0.12);
    color: var(--text-primary);
}

.sidebar-link.active {
    color: var(--primary-light);
}

.sidebar-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--gradient-1);
    border-radius: 0 4px 4px 0;
}

.sidebar-link .icon {
    font-size: 1.1rem;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

/* Sidebar Submenu / Dropdown */
.sidebar-has-submenu { position: relative; }

.sidebar-chevron {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.sidebar-link-toggle.open .sidebar-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.sidebar-submenu {
    list-style: none;
    padding: 0.25rem 0 0.25rem 2.4rem;
    margin: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.sidebar-submenu.open {
    max-height: 200px;
    opacity: 1;
}

.sidebar-sublink {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.2s ease;
    margin-bottom: 0.1rem;
}

.sidebar-sublink:hover {
    color: var(--primary-light);
    background: rgba(108,99,255,0.08);
    padding-left: 1rem;
}

.sidebar-section-title {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1rem 1rem 0.5rem;
}

.sidebar-bottom {
    border-top: 1px solid var(--border-glass);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.sidebar-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
}

.profile-avatar-sm {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}

.profile-name {
    font-size: 0.8rem;
    font-weight: 600;
}

.profile-role {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.main-content {
    margin-left: 260px;
    padding: 2rem;
    min-height: 100vh;
}

.dash-header {
    margin-bottom: 2rem;
}

.dash-title {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.dash-subtitle {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(108, 99, 255, 0.25);
}

.stat-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.stat-card-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.stat-card-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card-trend {
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.trend-up {
    color: var(--success);
}

.trend-down {
    color: var(--danger);
}

.glass-table-wrapper {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
}

.glass-table,
.table-responsive .glass-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent !important;
    color: var(--text-secondary) !important;
}

.glass-table thead,
.table-responsive .glass-table thead {
    background: transparent !important;
}

.glass-table thead tr,
.table-responsive .glass-table thead tr {
    background: transparent !important;
}

.glass-table thead th,
.table-responsive .glass-table thead th {
    background: rgba(108, 99, 255, 0.08) !important;
    color: var(--text-primary) !important;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 1.25rem 1.5rem;
    border-bottom: 2px solid rgba(108, 99, 255, 0.2) !important;
    border-top: none !important;
    white-space: nowrap;
}

.glass-table tbody,
.table-responsive .glass-table tbody {
    background: transparent !important;
}

.glass-table tbody tr,
.table-responsive .glass-table tbody tr {
    background: transparent !important;
    border: none !important;
}

.glass-table tbody td,
.table-responsive .glass-table tbody td {
    padding: 1.25rem 1.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    vertical-align: middle;
    background: transparent !important;
}

.glass-table tbody tr:last-child td,
.table-responsive .glass-table tbody tr:last-child td {
    border-bottom: none !important;
}

.glass-table tbody tr:hover,
.table-responsive .glass-table tbody tr:hover {
    background: transparent !important;
}

.glass-table tbody tr:hover td,
.table-responsive .glass-table tbody tr:hover td {
    background: rgba(108, 99, 255, 0.05) !important;
    color: var(--text-primary) !important;
    transition: all 0.2s ease;
}

.tx-badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tx-success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
}

.tx-pending {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

.tx-failed {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
}

/* ===========================
   Payment Page
   =========================== */
.payment-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 3rem;
}

.pstep {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.pstep-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.pstep.active .pstep-num {
    background: var(--gradient-1);
    border-color: transparent;
    color: #fff;
}

.pstep.done .pstep-num {
    background: var(--success);
    border-color: transparent;
    color: #fff;
}

.pstep-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pstep.active .pstep-label {
    color: var(--text-primary);
    font-weight: 600;
}

.pstep-connector {
    flex: 1;
    height: 2px;
    background: var(--border-glass);
    margin: 0 0.5rem;
}

.payment-method-card {
    background: var(--bg-card);
    border: 2px solid var(--border-glass);
    border-radius: 16px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.payment-method-card:hover,
.payment-method-card.selected {
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.1);
}

.payment-method-card.selected {
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.pm-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pm-name {
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

.animate-delay-5 {
    transition-delay: 0.5s;
}

/* ===========================
   Gradient Text Utility
   =========================== */
.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-accent {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================
   Toast Notifications
   =========================== */
.toast-container {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
}

.custom-toast {
    background: rgba(20, 20, 40, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    min-width: 280px;
    animation: slideInRight 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.toast-success .toast-icon {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.toast-error .toast-icon {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger);
}

.toast-info .toast-icon {
    background: rgba(108, 99, 255, 0.2);
    color: var(--primary-light);
}

.toast-text .toast-title {
    font-weight: 700;
    font-size: 0.875rem;
}

.toast-text .toast-msg {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 991px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    .hero-visual {
        height: 350px;
        margin-top: 3rem;
    }

    .float-card.card-mini-1,
    .float-card.card-mini-3 {
        right: 10px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .hero-stats {
        gap: 1.5rem;
    }
}

/* ===========================
   Loaded state
   =========================== */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    animation: loaderPulse 1s ease-in-out infinite;
}

@keyframes loaderPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.loader-bar {
    width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 3px;
    animation: loaderFill 1.2s ease both;
}

@keyframes loaderFill {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Number counter animation */
.counter {
    display: inline-block;
}

/* ===========================
   Extra TX Badge States
   =========================== */
.tx-cancelled {
    background: rgba(100, 116, 139, 0.15);
    color: #94a3b8;
}

.tx-refunded {
    background: rgba(167, 139, 250, 0.15);
    color: #a78bfa;
}

/* ===========================
   Quick Amount Buttons (Payment)
   =========================== */
.quick-amount-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.quick-amount-btn:hover {
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary-light);
}

/* ===========================
   Danger border utility (forms)
   =========================== */
.border-danger {
    border-color: var(--danger) !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12) !important;
}

/* ===========================
   API Docs Page
   =========================== */
.docs-sidebar {
    position: sticky;
    top: 5rem;
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
    padding-right: 0.5rem;
}

.docs-sidebar::-webkit-scrollbar {
    width: 3px;
}

.docs-sidebar::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.docs-nav-title {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.75rem 0.75rem 0.25rem;
}

.docs-nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
}

.docs-nav-link:hover,
.docs-nav-link.active {
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary-light);
    border-left-color: var(--primary);
}

.docs-content h2 {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
    scroll-margin-top: 5rem;
}

.docs-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 2rem 0 0.75rem;
    color: var(--text-primary);
}

.docs-content p,
.docs-content li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

.docs-content section {
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-glass);
    margin-bottom: 3rem;
}

.docs-content section:last-child {
    border-bottom: none;
}

/* Code blocks */
.code-block {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    overflow: hidden;
    margin: 1rem 0;
}

.code-block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.6rem 1rem;
    border-bottom: 1px solid var(--border-glass);
}

.code-lang {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.copy-btn {
    background: none;
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 0.7rem;
    padding: 2px 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.copy-btn:hover {
    border-color: var(--primary);
    color: var(--primary-light);
}

.code-block pre {
    margin: 0;
    padding: 1.25rem;
    overflow-x: auto;
    font-size: 0.82rem;
    line-height: 1.7;
}

.code-block code {
    color: #e2e8f0;
    font-family: 'Fira Code', 'Cascadia Code', Consolas, monospace;
}

/* syntax highlight helpers */
.tok-k {
    color: #a78bfa;
}

/* keyword / property */
.tok-s {
    color: #6ee7b7;
}

/* string */
.tok-n {
    color: #93c5fd;
}

/* number */
.tok-c {
    color: #64748b;
}

/* comment */
.tok-f {
    color: #fbbf24;
}

/* function */

/* Method badge */
.http-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-right: 8px;
}

.http-get {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.http-post {
    background: rgba(108, 99, 255, 0.15);
    color: #a78bfa;
}

.http-put {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.http-delete {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.endpoint-row {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    gap: 12px;
}

.endpoint-path {
    font-family: Consolas, monospace;
    color: var(--text-secondary);
    flex: 1;
}

.endpoint-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Param table */
.param-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
    margin: 0.75rem 0;
}

.param-table th {
    text-align: left;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--border-glass);
}

.param-table td {
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    vertical-align: top;
}

.param-table tr:last-child td {
    border-bottom: none;
}

.param-table code {
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary-light);
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.78rem;
}

.req-badge {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.opt-badge {
    background: rgba(100, 116, 139, 0.12);
    color: #64748b;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive docs */
@media (max-width: 991px) {
    .docs-sidebar {
        position: relative;
        top: 0;
        max-height: none;
        border-bottom: 1px solid var(--border-glass);
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
}