/* ====================================
   SUPERCHARGE THEME - Neon Green Edition
   ==================================== */

/* Theme is applied when body has class 'supercharge-theme' */
body.supercharge-theme {
    --neon-green: var(--accent, #a3e635);
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --shadow-glow: 0 0 30px rgba(163, 230, 53, 0.3);

    /* Override existing color variables */
    --color-primary-500: var(--neon-green);
    --color-primary-600: var(--accent-active, #84cc16);
    --color-primary-700: #86ad00;

    background: var(--dark-bg);
    color: var(--text-white);
    transition: background-color 0.6s ease, color 0.6s ease;
}

/* Animated Background */
body.supercharge-theme::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(ellipse at top, #0f1419 0%, #0a0a0a 50%, #000000 100%);
}

body.supercharge-theme::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(163, 230, 53, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(163, 230, 53, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

/* Floating Stars/Icons Background */
.supercharge-theme .floating-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 1;
}

.supercharge-theme .float-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: floatIcon 20s infinite ease-in-out;
    color: var(--neon-green);
    filter: drop-shadow(0 0 10px rgba(163, 230, 53, 0.3));
}

.supercharge-theme .icon-1 { top: 15%; left: 10%; animation-delay: 0s; }
.supercharge-theme .icon-2 { top: 25%; right: 15%; animation-delay: 3s; }
.supercharge-theme .icon-3 { top: 45%; left: 5%; animation-delay: 6s; }
.supercharge-theme .icon-4 { top: 60%; right: 10%; animation-delay: 9s; }
.supercharge-theme .icon-5 { top: 75%; left: 20%; animation-delay: 12s; }
.supercharge-theme .icon-6 { top: 85%; right: 25%; animation-delay: 15s; }

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(5deg);
    }
    50% {
        transform: translateY(-60px) rotate(-5deg);
    }
    75% {
        transform: translateY(-30px) rotate(3deg);
    }
}

/* Hide floating icons by default */
.floating-icons {
    display: none;
}

.supercharge-theme .floating-icons {
    display: block;
}

/* Gradient Orbs - Hidden by default */
.gradient-orb {
    display: none;
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    animation: float-orb 20s infinite ease-in-out;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.6s ease;
}

/* Show gradient orbs only in supercharge theme */
.supercharge-theme .gradient-orb {
    display: block;
    opacity: 0.4;
}

.supercharge-theme .orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(163, 230, 53, 0.3) 0%, transparent 70%);
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.supercharge-theme .orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.14) 0%, transparent 70%);
    bottom: -300px;
    right: -300px;
    animation-delay: 7s;
}

.supercharge-theme .orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(163, 230, 53, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, -100px) scale(1.1);
    }
    66% {
        transform: translate(-100px, 100px) scale(0.9);
    }
}

/* Cards */
body.supercharge-theme .card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(163, 230, 53, 0.15);
    backdrop-filter: blur(30px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    color: var(--text-white);
}

body.supercharge-theme .card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(163, 230, 53, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

body.supercharge-theme .card:hover {
    border-color: rgba(163, 230, 53, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(163, 230, 53, 0.2);
}

body.supercharge-theme .card:hover::before {
    opacity: 1;
}

body.supercharge-theme .card-header,
body.supercharge-theme .card-body,
body.supercharge-theme .card-footer {
    color: var(--text-white);
}

body.supercharge-theme .card-footer {
    background: rgba(163, 230, 53, 0.05);
    border-top: 1px solid rgba(163, 230, 53, 0.1);
}

/* Headings */
body.supercharge-theme h1,
body.supercharge-theme h2,
body.supercharge-theme h3,
body.supercharge-theme h4,
body.supercharge-theme h5,
body.supercharge-theme h6 {
    color: var(--text-white);
}

body.supercharge-theme .hero-title,
body.supercharge-theme .section-title {
    /* Solid fill: the old gradient-clip text could paint transparent
       (invisible headlines) once the palette moved to var() chains. */
    color: var(--text-white);
}

/* Buttons */
body.supercharge-theme .btn-primary {
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--accent-active, #84cc16) 100%);
    color: var(--dark-bg);
    border: 1px solid var(--neon-green);
    box-shadow: 0 4px 16px rgba(163, 230, 53, 0.2);
    font-weight: 700;
}

body.supercharge-theme .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-active, #84cc16) 0%, var(--neon-green) 100%);
    box-shadow: 0 8px 32px rgba(163, 230, 53, 0.4);
    transform: translateY(-2px);
}

body.supercharge-theme .btn-secondary {
    background: rgba(163, 230, 53, 0.1);
    color: var(--neon-green);
    border: 1px solid rgba(163, 230, 53, 0.4);
    box-shadow: 0 4px 16px rgba(163, 230, 53, 0.1);
}

body.supercharge-theme .btn-secondary:hover {
    background: rgba(163, 230, 53, 0.2);
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 6px 24px rgba(163, 230, 53, 0.25);
}

body.supercharge-theme .btn-outline {
    background: transparent;
    color: var(--neon-green);
    border: 1px solid rgba(163, 230, 53, 0.4);
}

body.supercharge-theme .btn-outline:hover {
    background: rgba(163, 230, 53, 0.15);
    border-color: var(--neon-green);
}

/* Hero Section */
body.supercharge-theme .hero {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.7) 0%, rgba(10, 10, 10, 0.8) 100%);
    border: 1px solid rgba(163, 230, 53, 0.15);
}

body.supercharge-theme .hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Navigation */
body.supercharge-theme .nav {
    background: rgba(10, 10, 10, 0.9);
    border-bottom: 1px solid rgba(163, 230, 53, 0.15);
    backdrop-filter: blur(20px);
}

body.supercharge-theme .nav-brand {
    color: var(--neon-green);
}

body.supercharge-theme .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

body.supercharge-theme .nav-link:hover {
    color: var(--neon-green);
}

body.supercharge-theme .nav-link.active {
    color: var(--neon-green);
    background: rgba(163, 230, 53, 0.1);
}

/* Forms */
body.supercharge-theme .form-input,
body.supercharge-theme .form-select,
body.supercharge-theme .form-textarea {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(163, 230, 53, 0.2);
    color: var(--text-white);
}

body.supercharge-theme .form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

body.supercharge-theme .form-input:focus,
body.supercharge-theme .form-select:focus,
body.supercharge-theme .form-textarea:focus {
    border-color: var(--neon-green);
    background: rgba(20, 20, 20, 0.9);
    box-shadow: 0 0 0 3px rgba(163, 230, 53, 0.1);
}

body.supercharge-theme .form-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Badges */
body.supercharge-theme .badge {
    background: rgba(163, 230, 53, 0.15);
    color: var(--neon-green);
    border: 1px solid rgba(163, 230, 53, 0.3);
}

body.supercharge-theme .badge-primary {
    background: rgba(163, 230, 53, 0.15);
    color: var(--neon-green);
}

body.supercharge-theme .badge-success {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

body.supercharge-theme .badge-warning {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

body.supercharge-theme .badge-error {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

body.supercharge-theme .badge-info {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Text Colors */
body.supercharge-theme .text-neutral-600,
body.supercharge-theme .text-neutral-700,
body.supercharge-theme .text-neutral-800 {
    color: rgba(255, 255, 255, 0.8);
}

body.supercharge-theme .text-neutral-500 {
    color: rgba(255, 255, 255, 0.6);
}

body.supercharge-theme .text-neutral-400 {
    color: rgba(255, 255, 255, 0.5);
}

body.supercharge-theme .text-primary {
    color: var(--neon-green);
}

/* Section Headers */
body.supercharge-theme .section-header::after {
    background: linear-gradient(90deg, var(--neon-green) 0%, transparent 100%);
}

body.supercharge-theme .section-icon {
    color: var(--neon-green);
}

/* Dashboard Specific */
body.supercharge-theme .dashboard-container {
    background: transparent;
}

body.supercharge-theme .speaker-hero {
    background: linear-gradient(135deg, rgba(163, 230, 53, 0.15) 0%, rgba(163, 230, 53, 0.05) 100%);
    border: 1px solid rgba(163, 230, 53, 0.3);
    box-shadow: 0 8px 32px rgba(163, 230, 53, 0.15);
}

body.supercharge-theme .hero-stat {
    background: rgba(163, 230, 53, 0.1);
    border: 1px solid rgba(163, 230, 53, 0.2);
    backdrop-filter: blur(10px);
}

body.supercharge-theme .hero-stat-number {
    color: var(--neon-green);
}

body.supercharge-theme .hero-stat-label {
    color: rgba(255, 255, 255, 0.8);
}

body.supercharge-theme .invitation-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(163, 230, 53, 0.15);
}

body.supercharge-theme .invitation-header {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    border-bottom: 1px solid rgba(163, 230, 53, 0.1);
}

body.supercharge-theme .calendar-section {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(163, 230, 53, 0.15);
}

body.supercharge-theme .time-slot {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(163, 230, 53, 0.2);
    color: rgba(255, 255, 255, 0.9);
    min-height: 70px;
}

body.supercharge-theme .time-slot:hover {
    background: rgba(40, 40, 40, 0.95);
    border-color: var(--neon-green);
    transform: scale(1.02);
}

body.supercharge-theme .scheduled-slot {
    background: linear-gradient(135deg, rgba(163, 230, 53, 0.2) 0%, rgba(163, 230, 53, 0.1) 100%);
    border-left-color: var(--neon-green);
}

body.supercharge-theme .scheduled-slot:hover {
    background: linear-gradient(135deg, rgba(163, 230, 53, 0.3) 0%, rgba(163, 230, 53, 0.15) 100%);
}

body.supercharge-theme .session-user {
    color: var(--neon-green);
}

body.supercharge-theme .session-location {
    color: rgba(255, 255, 255, 0.7);
}

/* Login/Signup Pages */
body.supercharge-theme .login-container,
body.supercharge-theme .signup-container {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(163, 230, 53, 0.15);
}

/* Empty States */
body.supercharge-theme .empty-state {
    background: rgba(20, 20, 20, 0.6);
    border: 2px dashed rgba(163, 230, 53, 0.3);
}

body.supercharge-theme .empty-state h3 {
    color: rgba(255, 255, 255, 0.9);
}

body.supercharge-theme .empty-state p {
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(163, 230, 53, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(163, 230, 53, 0.6);
    }
}

body.supercharge-theme .glow-effect {
    animation: glow-pulse 2s infinite;
}

/* Progress Bars */
body.supercharge-theme .progress-bar {
    background: rgba(255, 255, 255, 0.1);
}

body.supercharge-theme .progress-fill {
    background: linear-gradient(90deg, var(--neon-green) 0%, var(--accent-active, #84cc16) 100%);
    box-shadow: 0 0 10px rgba(163, 230, 53, 0.5);
}

/* Tables */
body.supercharge-theme table {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(163, 230, 53, 0.15);
}

body.supercharge-theme th {
    background: rgba(163, 230, 53, 0.1);
    color: var(--neon-green);
    border-bottom: 2px solid rgba(163, 230, 53, 0.3);
}

body.supercharge-theme td {
    border-bottom: 1px solid rgba(163, 230, 53, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

body.supercharge-theme tr:hover {
    background: rgba(163, 230, 53, 0.05);
}

/* Alerts/Messages */
body.supercharge-theme .alert {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(163, 230, 53, 0.3);
    color: var(--text-white);
}

body.supercharge-theme .alert-success {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.1);
}

body.supercharge-theme .alert-error {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.1);
}

body.supercharge-theme .alert-warning {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.1);
}

/* Smooth Transitions */
body.supercharge-theme * {
    transition-property: background-color, border-color, color, fill, stroke;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

body.supercharge-theme *:hover {
    transition-duration: 0.15s;
}

/* Additional Dark Mode Enhancements for Speaker Detail/Booking Pages */
body.supercharge-theme .profile-image {
    border-color: rgba(163, 230, 53, 0.3);
    box-shadow: 0 0 20px rgba(163, 230, 53, 0.2);
}

body.supercharge-theme .grid-header {
    background: rgba(30, 30, 30, 0.9);
    color: var(--neon-green);
    border: 1px solid rgba(163, 230, 53, 0.2);
}

body.supercharge-theme .time-header {
    background: rgba(15, 15, 15, 0.95);
    color: var(--neon-green);
    border: 1px solid rgba(163, 230, 53, 0.3);
}

body.supercharge-theme .day-header {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(40, 40, 40, 0.9) 100%);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(163, 230, 53, 0.2);
}

body.supercharge-theme .time-label {
    background: rgba(20, 20, 20, 0.9);
    color: rgba(255, 255, 255, 0.8);
    border-right: 1px solid rgba(163, 230, 53, 0.15);
}

body.supercharge-theme .calendar-grid {
    background: rgba(15, 15, 15, 0.8);
    border-color: rgba(163, 230, 53, 0.2);
}

body.supercharge-theme .calendar-header h2 {
    color: rgba(255, 255, 255, 0.95);
}

body.supercharge-theme .calendar-arrow {
    background: rgba(30, 30, 30, 0.9);
    border-color: rgba(163, 230, 53, 0.3);
    color: var(--neon-green);
}

body.supercharge-theme .calendar-arrow:hover {
    background: var(--neon-green);
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(163, 230, 53, 0.4);
}

body.supercharge-theme .blocked-time {
    background: rgba(10, 10, 10, 0.95);
    cursor: not-allowed;
}

body.supercharge-theme .blocked-time::after {
    color: rgba(255, 255, 255, 0.3);
}

body.supercharge-theme .blocked-time:hover {
    background: rgba(10, 10, 10, 0.95);
    transform: none;
    border-color: transparent;
}

body.supercharge-theme .calendar-legend {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(163, 230, 53, 0.15);
}

body.supercharge-theme .legend-item {
    color: rgba(255, 255, 255, 0.8);
}

body.supercharge-theme .legend-color {
    border-color: rgba(163, 230, 53, 0.3);
}

body.supercharge-theme .legend-color.available {
    background: rgba(30, 30, 30, 0.95);
}

body.supercharge-theme .legend-color.blocked {
    background: rgba(10, 10, 10, 0.95);
}

body.supercharge-theme .legend-color.scheduled {
    background: linear-gradient(135deg, rgba(163, 230, 53, 0.2) 0%, rgba(163, 230, 53, 0.1) 100%);
    border-left: 4px solid var(--neon-green);
}

/* Selection Counter Styling */
body.supercharge-theme .selection-counter {
    background: rgba(163, 230, 53, 0.15);
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
}

/* Today Strip in Dark Mode */
body.supercharge-theme .today-strip {
    background: linear-gradient(135deg, rgba(163, 230, 53, 0.1) 0%, rgba(163, 230, 53, 0.05) 100%);
    border-color: rgba(163, 230, 53, 0.3);
}

body.supercharge-theme .today-info {
    color: var(--neon-green);
}

body.supercharge-theme .today-info i {
    color: var(--neon-green);
}

/* Profile Section in Booking Pages */
body.supercharge-theme .speaker-info {
    color: rgba(255, 255, 255, 0.9);
}

body.supercharge-theme .speaker-bio {
    color: rgba(255, 255, 255, 0.7);
}

/* Fix for any remaining light backgrounds */
body.supercharge-theme .detail-row {
    color: rgba(255, 255, 255, 0.9);
}

body.supercharge-theme .detail-row i {
    color: var(--neon-green);
}

body.supercharge-theme .detail-row strong {
    color: rgba(255, 255, 255, 0.95);
}

/* Ensure all text is readable in dark mode */
body.supercharge-theme p,
body.supercharge-theme span,
body.supercharge-theme div {
    color: inherit;
}

body.supercharge-theme .text-muted,
body.supercharge-theme .text-secondary {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Time slot selection states */
body.supercharge-theme .time-slot.selected {
    background: linear-gradient(135deg, rgba(163, 230, 53, 0.25) 0%, rgba(163, 230, 53, 0.15) 100%);
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(163, 230, 53, 0.3);
}

body.supercharge-theme .time-slot.selected:hover {
    background: linear-gradient(135deg, rgba(163, 230, 53, 0.3) 0%, rgba(163, 230, 53, 0.2) 100%);
}

/* ================================================
   DASHBOARD PAGE SPECIFIC DARK MODE OVERRIDES
   ================================================ */

/* Dashboard Container */
body.supercharge-theme .dashboard-container {
    background: transparent !important;
}

/* Speaker Hero Section */
body.supercharge-theme .speaker-hero {
    background: linear-gradient(135deg, rgba(163, 230, 53, 0.15) 0%, rgba(163, 230, 53, 0.05) 100%) !important;
    border: 1px solid rgba(163, 230, 53, 0.3) !important;
    box-shadow: 0 8px 32px rgba(163, 230, 53, 0.15) !important;
}

body.supercharge-theme .speaker-title {
    color: rgba(255, 255, 255, 0.95) !important;
}

body.supercharge-theme .speaker-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
}

body.supercharge-theme .hero-stat {
    background: rgba(30, 30, 30, 0.8) !important;
    border: 1px solid rgba(163, 230, 53, 0.2) !important;
}

body.supercharge-theme .hero-stat-number {
    color: var(--neon-green) !important;
}

body.supercharge-theme .hero-stat-label {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Section Headers */
body.supercharge-theme .section-header {
    color: rgba(255, 255, 255, 0.95) !important;
    border-bottom-color: rgba(163, 230, 53, 0.2) !important;
}

body.supercharge-theme .section-header i {
    color: var(--neon-green) !important;
}

/* Sessions Table */
body.supercharge-theme .sessions-table-wrapper {
    background: rgba(20, 20, 20, 0.8) !important;
    border: 1px solid rgba(163, 230, 53, 0.15) !important;
}

body.supercharge-theme .sessions-table {
    background: transparent !important;
}

body.supercharge-theme .sessions-table thead {
    background: rgba(30, 30, 30, 0.9) !important;
    border-bottom: 2px solid rgba(163, 230, 53, 0.3) !important;
}

body.supercharge-theme .sessions-table th {
    color: var(--neon-green) !important;
    background: rgba(163, 230, 53, 0.1) !important;
}

body.supercharge-theme .sessions-table tbody {
    background: transparent !important;
}

body.supercharge-theme .session-row {
    background: rgba(25, 25, 25, 0.6) !important;
    border-bottom: 1px solid rgba(163, 230, 53, 0.1) !important;
}

body.supercharge-theme .session-row:hover {
    background: rgba(35, 35, 35, 0.8) !important;
    box-shadow: 0 0 15px rgba(163, 230, 53, 0.1) !important;
}

body.supercharge-theme .session-title {
    color: rgba(255, 255, 255, 0.95) !important;
}

body.supercharge-theme .session-notes {
    color: rgba(255, 255, 255, 0.6) !important;
}

body.supercharge-theme .datetime-cell,
body.supercharge-theme .person-cell,
body.supercharge-theme .location-cell {
    color: rgba(255, 255, 255, 0.85) !important;
}

body.supercharge-theme .date-text,
body.supercharge-theme .time-text {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.supercharge-theme .date-text i,
body.supercharge-theme .time-text i,
body.supercharge-theme .person-cell i,
body.supercharge-theme .location-cell i {
    color: var(--neon-green) !important;
}

/* Status Badges */
body.supercharge-theme .status-badge {
    border: 1px solid rgba(163, 230, 53, 0.3) !important;
}

body.supercharge-theme .status-accepted {
    background: rgba(16, 185, 129, 0.2) !important;
    color: #10b981 !important;
    border-color: rgba(16, 185, 129, 0.4) !important;
}

body.supercharge-theme .status-pending {
    background: rgba(245, 158, 11, 0.2) !important;
    color: #f59e0b !important;
    border-color: rgba(245, 158, 11, 0.4) !important;
}

body.supercharge-theme .status-rejected,
body.supercharge-theme .status-cancelled {
    background: rgba(239, 68, 68, 0.2) !important;
    color: #ef4444 !important;
    border-color: rgba(239, 68, 68, 0.4) !important;
}

body.supercharge-theme .status-completed {
    background: rgba(59, 130, 246, 0.2) !important;
    color: #3b82f6 !important;
    border-color: rgba(59, 130, 246, 0.4) !important;
}

/* Action Buttons */
body.supercharge-theme .btn-zoom {
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--accent-active, #84cc16) 100%) !important;
    color: var(--dark-bg) !important;
    border: none !important;
    box-shadow: 0 0 15px rgba(163, 230, 53, 0.3) !important;
}

body.supercharge-theme .btn-zoom:hover {
    box-shadow: 0 0 25px rgba(163, 230, 53, 0.5) !important;
    transform: translateY(-2px) !important;
}

body.supercharge-theme .btn-reschedule {
    background: rgba(59, 130, 246, 0.2) !important;
    color: #3b82f6 !important;
    border: 1px solid rgba(59, 130, 246, 0.4) !important;
}

body.supercharge-theme .btn-reschedule:hover {
    background: rgba(59, 130, 246, 0.3) !important;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3) !important;
}

body.supercharge-theme .btn-cancel {
    background: rgba(239, 68, 68, 0.2) !important;
    color: #ef4444 !important;
    border: 1px solid rgba(239, 68, 68, 0.4) !important;
}

body.supercharge-theme .btn-cancel:hover {
    background: rgba(239, 68, 68, 0.3) !important;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.3) !important;
}

/* Invitation Cards */
body.supercharge-theme .invitation-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%) !important;
    border: 1px solid rgba(163, 230, 53, 0.2) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
}

body.supercharge-theme .invitation-card:hover {
    border-color: rgba(163, 230, 53, 0.4) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 25px rgba(163, 230, 53, 0.15) !important;
}

body.supercharge-theme .invitation-header {
    background: rgba(30, 30, 30, 0.8) !important;
    border-bottom: 1px solid rgba(163, 230, 53, 0.1) !important;
}

body.supercharge-theme .invitation-title {
    color: rgba(255, 255, 255, 0.95) !important;
}

body.supercharge-theme .invitation-date {
    color: var(--neon-green) !important;
}

body.supercharge-theme .invitation-student {
    color: rgba(255, 255, 255, 0.85) !important;
}

body.supercharge-theme .invitation-notes {
    color: rgba(255, 255, 255, 0.7) !important;
}

body.supercharge-theme .btn-accept {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3) !important;
}

body.supercharge-theme .btn-accept:hover {
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.5) !important;
}

body.supercharge-theme .btn-reject {
    background: rgba(239, 68, 68, 0.2) !important;
    color: #ef4444 !important;
    border: 1px solid rgba(239, 68, 68, 0.4) !important;
}

body.supercharge-theme .btn-reject:hover {
    background: rgba(239, 68, 68, 0.3) !important;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.3) !important;
}

/* Empty States */
body.supercharge-theme .empty-state {
    background: rgba(20, 20, 20, 0.6) !important;
    border: 2px dashed rgba(163, 230, 53, 0.3) !important;
}

body.supercharge-theme .empty-state h3 {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.supercharge-theme .empty-state p {
    color: rgba(255, 255, 255, 0.6) !important;
}

body.supercharge-theme .empty-state i {
    color: rgba(163, 230, 53, 0.4) !important;
}

body.supercharge-theme .cta-link {
    color: var(--neon-green) !important;
    border-bottom-color: rgba(163, 230, 53, 0.3) !important;
}

body.supercharge-theme .cta-link:hover {
    border-bottom-color: var(--neon-green) !important;
}

/* Requests Grid/Cards */
body.supercharge-theme .requests-container {
    background: transparent !important;
}

body.supercharge-theme .request-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%) !important;
    border: 1px solid rgba(163, 230, 53, 0.2) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
}

body.supercharge-theme .request-card:hover {
    border-color: rgba(163, 230, 53, 0.4) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 25px rgba(163, 230, 53, 0.15) !important;
}

body.supercharge-theme .request-header {
    color: rgba(255, 255, 255, 0.95) !important;
}

body.supercharge-theme .request-meta {
    color: rgba(255, 255, 255, 0.7) !important;
}

body.supercharge-theme .request-meta i {
    color: var(--neon-green) !important;
}

/* Classes Grid */
body.supercharge-theme .class-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%) !important;
    border: 1px solid rgba(163, 230, 53, 0.2) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
}

body.supercharge-theme .class-card:hover {
    border-color: rgba(163, 230, 53, 0.4) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 25px rgba(163, 230, 53, 0.15) !important;
}

body.supercharge-theme .class-code {
    color: var(--neon-green) !important;
}

body.supercharge-theme .class-name {
    color: rgba(255, 255, 255, 0.95) !important;
}

body.supercharge-theme .class-meta {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Calendar Section */
body.supercharge-theme .calendar-section {
    background: rgba(20, 20, 20, 0.8) !important;
    border: 1px solid rgba(163, 230, 53, 0.15) !important;
}

body.supercharge-theme .calendar-header {
    background: rgba(30, 30, 30, 0.9) !important;
    border-bottom: 1px solid rgba(163, 230, 53, 0.2) !important;
}

body.supercharge-theme .calendar-header h2 {
    color: rgba(255, 255, 255, 0.95) !important;
}

body.supercharge-theme .calendar-controls button {
    background: rgba(30, 30, 30, 0.9) !important;
    border: 1px solid rgba(163, 230, 53, 0.3) !important;
    color: var(--neon-green) !important;
}

body.supercharge-theme .calendar-controls button:hover {
    background: var(--neon-green) !important;
    color: var(--dark-bg) !important;
    box-shadow: 0 0 20px rgba(163, 230, 53, 0.4) !important;
}

/* Today Strip */
body.supercharge-theme .today-strip {
    background: linear-gradient(135deg, rgba(163, 230, 53, 0.1) 0%, rgba(163, 230, 53, 0.05) 100%) !important;
    border: 1px solid rgba(163, 230, 53, 0.3) !important;
}

body.supercharge-theme .today-info {
    color: var(--neon-green) !important;
}

body.supercharge-theme .today-actions button {
    background: rgba(30, 30, 30, 0.8) !important;
    border: 1px solid rgba(163, 230, 53, 0.25) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

body.supercharge-theme .today-actions button:hover {
    background: rgba(163, 230, 53, 0.15) !important;
    border-color: var(--neon-green) !important;
}

/* Scroll Arrows */
body.supercharge-theme .scroll-arrow {
    background: rgba(30, 30, 30, 0.9) !important;
    border: 1px solid rgba(163, 230, 53, 0.3) !important;
    color: var(--neon-green) !important;
}

body.supercharge-theme .scroll-arrow:hover {
    background: var(--neon-green) !important;
    color: var(--dark-bg) !important;
    box-shadow: 0 0 20px rgba(163, 230, 53, 0.4) !important;
}

/* ================================================
   SPEAKER CAROUSEL SECTION (ALL SPEAKERS CARDS)
   ================================================ */

/* Carousel Container */
body.supercharge-theme .speaker-carousel-container {
    background: transparent !important;
}

body.supercharge-theme .hero-text h2 {
    /* solid fill — gradient-clip text can paint transparent */
    color: var(--text-white) !important;
    -webkit-text-fill-color: currentColor !important;
}

body.supercharge-theme .hero-text p {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Speaker Cards in Carousel */
body.supercharge-theme .speaker-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%) !important;
    border: 1px solid rgba(163, 230, 53, 0.2) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
}

body.supercharge-theme .speaker-card:hover {
    border-color: rgba(163, 230, 53, 0.4) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 25px rgba(163, 230, 53, 0.15) !important;
}

body.supercharge-theme .speaker-card.main-card {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%) !important;
    border: 2px solid rgba(163, 230, 53, 0.3) !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(163, 230, 53, 0.2) !important;
}

body.supercharge-theme .speaker-card.stack-card {
    background: rgba(15, 15, 15, 0.9) !important;
    border: 1px solid rgba(163, 230, 53, 0.15) !important;
}

/* Speaker Image & Overlay */
body.supercharge-theme .speaker-image {
    border-bottom: 1px solid rgba(163, 230, 53, 0.2) !important;
}

body.supercharge-theme .speaker-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%) !important;
}

body.supercharge-theme .speaker-rating {
    background: rgba(163, 230, 53, 0.2) !important;
    border: 1px solid rgba(163, 230, 53, 0.4) !important;
    color: var(--neon-green) !important;
}

body.supercharge-theme .speaker-rating i {
    color: #fbbf24 !important;
}

/* Speaker Info Section — the mentor NAME (h3) is brand green */
body.supercharge-theme .speaker-info h3 {
    color: var(--neon-green) !important;
}
body.supercharge-theme .speaker-info h4 {
    color: rgba(255, 255, 255, 0.95) !important;
}

body.supercharge-theme .speaker-institution {
    color: rgba(255, 255, 255, 0.6) !important;
}

body.supercharge-theme .speaker-stats {
    color: rgba(255, 255, 255, 0.7) !important;
}

body.supercharge-theme .stat-item {
    color: rgba(255, 255, 255, 0.8) !important;
}

body.supercharge-theme .stat-item i {
    color: var(--neon-green) !important;
}

/* Specialization Tags */
body.supercharge-theme .speaker-specializations {
    background: transparent !important;
}

body.supercharge-theme .spec-tag,
body.supercharge-theme .specialization-tag {
    background: var(--neon-green) !important;
    color: #000000 !important;
    border: 1px solid var(--neon-green) !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    display: inline-block !important;
}

body.supercharge-theme .spec-tag:hover,
body.supercharge-theme .specialization-tag:hover {
    background: var(--accent-active, #84cc16) !important;
    border-color: var(--accent-active, #84cc16) !important;
    color: #000000 !important;
    box-shadow: 0 0 15px rgba(163, 230, 53, 0.4) !important;
}

/* Action Buttons in Speaker Card */
body.supercharge-theme .speaker-actions .btn-view-profile,
body.supercharge-theme .speaker-card .btn-view-profile,
body.supercharge-theme a.btn-view-profile {
    background: var(--neon-green) !important;
    border: 1px solid var(--neon-green) !important;
    color: #000000 !important;
    padding: 10px 20px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-weight: 600 !important;
}

body.supercharge-theme .speaker-actions .btn-view-profile:hover,
body.supercharge-theme .speaker-card .btn-view-profile:hover,
body.supercharge-theme a.btn-view-profile:hover {
    background: var(--accent-active, #84cc16) !important;
    border-color: var(--accent-active, #84cc16) !important;
    color: #000000 !important;
    box-shadow: 0 0 25px rgba(163, 230, 53, 0.5) !important;
    transform: translateY(-2px) !important;
}

body.supercharge-theme .speaker-actions .btn-book-session,
body.supercharge-theme .speaker-card .btn-book-session,
body.supercharge-theme a.btn-book-session {
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--accent-active, #84cc16) 100%) !important;
    color: #000000 !important;
    border: none !important;
    box-shadow: 0 0 15px rgba(163, 230, 53, 0.3) !important;
    font-weight: 700 !important;
    padding: 10px 20px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    display: inline-block !important;
}

body.supercharge-theme .speaker-actions .btn-book-session:hover,
body.supercharge-theme .speaker-card .btn-book-session:hover,
body.supercharge-theme a.btn-book-session:hover {
    box-shadow: 0 0 30px rgba(163, 230, 53, 0.6) !important;
    transform: translateY(-2px) !important;
}

/* Speaker Actions Container */
body.supercharge-theme .speaker-actions {
    display: flex !important;
    gap: 12px !important;
    margin-top: 15px !important;
}

/* Carousel Indicators */
body.supercharge-theme .carousel-indicators {
    background: transparent !important;
}

body.supercharge-theme .indicator-dots {
    background: transparent !important;
}

body.supercharge-theme .indicator-dot {
    background: rgba(163, 230, 53, 0.3) !important;
    border: 1px solid rgba(163, 230, 53, 0.4) !important;
}

body.supercharge-theme .indicator-dot.active {
    background: var(--neon-green) !important;
    box-shadow: 0 0 10px rgba(163, 230, 53, 0.5) !important;
}

/* Carousel Navigation Arrows */
body.supercharge-theme .carousel-arrow,
body.supercharge-theme .carousel-nav {
    background: rgba(30, 30, 30, 0.9) !important;
    border: 1px solid rgba(163, 230, 53, 0.3) !important;
    color: var(--neon-green) !important;
}

body.supercharge-theme .carousel-arrow:hover,
body.supercharge-theme .carousel-nav:hover {
    background: var(--neon-green) !important;
    color: var(--dark-bg) !important;
    box-shadow: 0 0 20px rgba(163, 230, 53, 0.4) !important;
}

/* Carousel Stack Cards */
body.supercharge-theme .carousel-stack {
    background: transparent !important;
}

body.supercharge-theme .left-stack,
body.supercharge-theme .right-stack {
    background: transparent !important;
}

/* Fix hardcoded inline colors in speaker cards */
body.supercharge-theme .speaker-card p[style*="color: #64748b"] {
    color: rgba(255, 255, 255, 0.6) !important;
}

body.supercharge-theme .speaker-info p {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Difficulty Badges */
body.supercharge-theme .difficulty-badge {
    border: 1px solid rgba(163, 230, 53, 0.3) !important;
}

body.supercharge-theme .difficulty-beginner {
    background: rgba(16, 185, 129, 0.2) !important;
    color: #10b981 !important;
}

body.supercharge-theme .difficulty-intermediate {
    background: rgba(245, 158, 11, 0.2) !important;
    color: #f59e0b !important;
}

body.supercharge-theme .difficulty-advanced {
    background: rgba(239, 68, 68, 0.2) !important;
    color: #ef4444 !important;
}

/* Classes Section */
body.supercharge-theme .classes-section {
    background: transparent !important;
}

body.supercharge-theme .classes-grid {
    background: transparent !important;
}

body.supercharge-theme .class-header h3 {
    color: rgba(255, 255, 255, 0.95) !important;
}

body.supercharge-theme .class-header h4 {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.supercharge-theme .class-details {
    color: rgba(255, 255, 255, 0.7) !important;
}

body.supercharge-theme .detail-item {
    color: rgba(255, 255, 255, 0.8) !important;
}

body.supercharge-theme .detail-item i {
    color: var(--neon-green) !important;
}

body.supercharge-theme .enrollment-bar {
    background: rgba(30, 30, 30, 0.8) !important;
    border: 1px solid rgba(163, 230, 53, 0.2) !important;
}

body.supercharge-theme .enrollment-fill {
    background: linear-gradient(90deg, var(--neon-green) 0%, var(--accent-active, #84cc16) 100%) !important;
    box-shadow: 0 0 10px rgba(163, 230, 53, 0.3) !important;
}

body.supercharge-theme .enrollment-text {
    color: rgba(255, 255, 255, 0.7) !important;
}

body.supercharge-theme .class-description {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Quick Actions */
body.supercharge-theme .quick-actions-container {
    background: transparent !important;
}

body.supercharge-theme .action-btn {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%) !important;
    border: 1px solid rgba(163, 230, 53, 0.2) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

body.supercharge-theme .action-btn:hover {
    border-color: rgba(163, 230, 53, 0.4) !important;
    box-shadow: 0 0 20px rgba(163, 230, 53, 0.2) !important;
}

body.supercharge-theme .action-btn-primary {
    background: rgba(163, 230, 53, 0.1) !important;
    color: var(--neon-green) !important;
    border: 1px solid rgba(163, 230, 53, 0.35) !important;
    box-shadow: none !important;
}

body.supercharge-theme .action-btn-primary:hover {
    background: rgba(163, 230, 53, 0.18) !important;
    border-color: rgba(163, 230, 53, 0.5) !important;
    box-shadow: 0 0 15px rgba(163, 230, 53, 0.25) !important;
}

body.supercharge-theme .action-btn-secondary {
    background: rgba(59, 130, 246, 0.2) !important;
    color: #3b82f6 !important;
    border: 1px solid rgba(59, 130, 246, 0.4) !important;
}

body.supercharge-theme .action-btn-secondary:hover {
    background: rgba(59, 130, 246, 0.3) !important;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3) !important;
}

body.supercharge-theme .action-btn-disabled {
    background: rgba(20, 20, 20, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.4) !important;
    cursor: not-allowed !important;
}

body.supercharge-theme .coming-soon-badge {
    background: rgba(245, 158, 11, 0.2) !important;
    color: #f59e0b !important;
    border: 1px solid rgba(245, 158, 11, 0.3) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body.supercharge-theme .orb-1,
    body.supercharge-theme .orb-2,
    body.supercharge-theme .orb-3 {
        opacity: 0.2;
    }
}

/* ================================================
   ADA ACCESSIBILITY ENHANCEMENTS
   ================================================ */

/* Focus-visible states for dark theme — high contrast neon outlines */
body.supercharge-theme *:focus-visible {
    outline: 2px solid var(--neon-green) !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 4px rgba(163, 230, 53, 0.25) !important;
}

body.supercharge-theme .btn-primary:focus-visible {
    outline: 2px solid #fff !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 4px rgba(163, 230, 53, 0.4) !important;
}

body.supercharge-theme .btn-secondary:focus-visible,
body.supercharge-theme .btn-outline:focus-visible {
    outline: 2px solid var(--neon-green) !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 4px rgba(163, 230, 53, 0.3) !important;
}

body.supercharge-theme .form-input:focus-visible,
body.supercharge-theme .form-select:focus-visible,
body.supercharge-theme .form-textarea:focus-visible {
    outline: 2px solid var(--neon-green) !important;
    outline-offset: 0 !important;
    border-color: var(--neon-green) !important;
    box-shadow: 0 0 0 3px rgba(163, 230, 53, 0.15) !important;
}

body.supercharge-theme .nav-link:focus-visible {
    outline: 2px solid var(--neon-green) !important;
    outline-offset: 2px !important;
    border-radius: var(--radius-md, 6px) !important;
}

body.supercharge-theme .time-slot:focus-visible {
    outline: 2px solid var(--neon-green) !important;
    outline-offset: -2px !important;
    box-shadow: 0 0 20px rgba(163, 230, 53, 0.4) !important;
}

body.supercharge-theme .carousel-arrow:focus-visible,
body.supercharge-theme .carousel-nav:focus-visible,
body.supercharge-theme .calendar-arrow:focus-visible,
body.supercharge-theme .scroll-arrow:focus-visible {
    outline: 2px solid var(--neon-green) !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 20px rgba(163, 230, 53, 0.4) !important;
}

body.supercharge-theme .speaker-card:focus-within {
    border-color: rgba(163, 230, 53, 0.5) !important;
    box-shadow: 0 0 30px rgba(163, 230, 53, 0.2) !important;
}

body.supercharge-theme .invitation-card:focus-within {
    border-color: rgba(163, 230, 53, 0.5) !important;
    box-shadow: 0 0 25px rgba(163, 230, 53, 0.2) !important;
}

/* Skip link in dark theme */
body.supercharge-theme .skip-link:focus {
    background: var(--neon-green) !important;
    color: var(--dark-bg) !important;
    box-shadow: 0 0 20px rgba(163, 230, 53, 0.6) !important;
}

/* Reduced motion — disable all supercharge animations */
@media (prefers-reduced-motion: reduce) {
    body.supercharge-theme,
    body.supercharge-theme * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    body.supercharge-theme .floating-icons,
    body.supercharge-theme .gradient-orb {
        display: none !important;
    }

    body.supercharge-theme .card:hover {
        transform: none !important;
    }

    body.supercharge-theme .btn-primary:hover,
    body.supercharge-theme .btn-zoom:hover,
    body.supercharge-theme .btn-view-profile:hover,
    body.supercharge-theme .btn-book-session:hover {
        transform: none !important;
    }

    body.supercharge-theme .glow-effect {
        animation: none !important;
        box-shadow: 0 0 20px rgba(163, 230, 53, 0.3) !important;
    }
}

/* Forced colors / Windows High Contrast mode */
@media (forced-colors: active) {
    body.supercharge-theme {
        background: Canvas !important;
        color: CanvasText !important;
    }

    body.supercharge-theme .card {
        border: 1px solid ButtonText !important;
        background: Canvas !important;
    }

    body.supercharge-theme .btn-primary {
        background: Highlight !important;
        color: HighlightText !important;
        border: 1px solid ButtonText !important;
        forced-color-adjust: none;
    }

    body.supercharge-theme .btn-secondary,
    body.supercharge-theme .btn-outline {
        border: 1px solid ButtonText !important;
        color: ButtonText !important;
    }

    body.supercharge-theme .form-input,
    body.supercharge-theme .form-select,
    body.supercharge-theme .form-textarea {
        border: 1px solid ButtonText !important;
        background: Field !important;
        color: FieldText !important;
    }

    body.supercharge-theme .nav {
        border-bottom: 1px solid ButtonText !important;
    }

    body.supercharge-theme .nav-link {
        color: LinkText !important;
    }

    body.supercharge-theme .status-badge {
        border: 1px solid ButtonText !important;
    }

    body.supercharge-theme .floating-icons,
    body.supercharge-theme .gradient-orb,
    body.supercharge-theme::before,
    body.supercharge-theme::after {
        display: none !important;
    }

    body.supercharge-theme .hero-title,
    body.supercharge-theme .section-title {
        -webkit-text-fill-color: CanvasText !important;
        background: none !important;
    }
}

/* Print styles for supercharge theme */
@media print {
    body.supercharge-theme {
        background: white !important;
        color: black !important;
    }

    body.supercharge-theme .floating-icons,
    body.supercharge-theme .gradient-orb,
    body.supercharge-theme::before,
    body.supercharge-theme::after {
        display: none !important;
    }

    body.supercharge-theme .card {
        background: white !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }

    body.supercharge-theme .btn-primary {
        background: #333 !important;
        color: white !important;
    }

    body.supercharge-theme .nav {
        background: white !important;
        border-bottom: 1px solid #ccc !important;
    }

    body.supercharge-theme h1,
    body.supercharge-theme h2,
    body.supercharge-theme h3,
    body.supercharge-theme h4,
    body.supercharge-theme h5,
    body.supercharge-theme h6,
    body.supercharge-theme .hero-title,
    body.supercharge-theme .section-title {
        color: black !important;
        -webkit-text-fill-color: black !important;
        background: none !important;
    }

    body.supercharge-theme p,
    body.supercharge-theme span,
    body.supercharge-theme div,
    body.supercharge-theme td,
    body.supercharge-theme th {
        color: black !important;
    }
}
