:root {
    --sidebar-width: 280px;
    --dashboard-bg: #05060e;
    --card-bg: rgba(255, 255, 255, 0.03);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --primary-glow: 0 0 20px rgba(108, 92, 231, 0.3);
    --text-muted: #b2bec3;
}

.dashboard-body {
    background: var(--dashboard-bg);
    color: white;
    min-height: 100vh;
    display: flex;
    font-family: 'Exo 2', sans-serif;
}

.zen-native-select {
    display: block !important;
    visibility: visible !important;
    pointer-events: auto !important;
    position: static !important;
    opacity: 1 !important;
    width: 100% !important;
    height: auto !important;
}

.zen-custom-select {
    position: relative;
    width: 100%;
}

.zen-custom-select-trigger {
    width: 100%;
    min-height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #fff;
    padding: 10px 14px;
    font-family: inherit;
    font-size: 0.92rem;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    transition: 0.25s ease;
}

.zen-custom-select-trigger:hover,
.zen-custom-select.open .zen-custom-select-trigger {
    border-color: rgba(108, 92, 231, 0.5);
    box-shadow: 0 0 16px rgba(108, 92, 231, 0.18);
}

.zen-custom-select-label {
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zen-custom-select-icon {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.zen-custom-select.open .zen-custom-select-icon {
    transform: rotate(180deg);
}

.zen-custom-select-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #0b1020;
    border: 1px solid rgba(108, 92, 231, 0.28);
    border-radius: 14px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45);
    padding: 8px;
    display: none;
    z-index: 1200;
    max-height: 240px;
    overflow-y: auto;
}

.zen-custom-select.open .zen-custom-select-menu {
    display: block;
}

.zen-custom-select-option {
    width: 100%;
    background: transparent;
    color: #fff;
    border: 0;
    border-radius: 10px;
    text-align: left;
    padding: 11px 12px;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.2s ease;
}

.zen-custom-select-option:hover,
.zen-custom-select-option.active {
    background: #2563eb;
    color: #fff;
}

.zen-custom-select-option:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

select,
select.form-control,
select.styled-select {
    color: #ffffff;
}

select option {
    color: #000000 !important;
    background: #ffffff !important;
}

/* Sidebar Fixes */
.sidebar {
    width: var(--sidebar-width);
    background: rgba(10, 11, 24, 0.8);
    backdrop-filter: blur(25px);
    border-right: var(--glass-border);
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: fixed !important;
    top: 0;
    left: 0;
    height: 100vh !important;
    z-index: 2000;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateX(-100%);
}

.sidebar.active {
    transform: translateX(0);
    box-shadow: 20px 0 60px rgba(0, 0, 0, 0.5);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1999;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* Sidebar Navigation Styles */
.nav-menu {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.nav-item {
    margin-bottom: 8px;
    width: 100%;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none !important;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    border: 1px solid transparent;
}

.nav-link i {
    width: 24px;
    text-align: center;
    font-size: 1.1rem;
}

.nav-link:hover {
    color: white;
    background: rgba(108, 92, 231, 0.1);
    border-color: rgba(108, 92, 231, 0.2);
    transform: translateX(5px);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(0, 206, 201, 0.1));
    color: white;
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-link.active i {
    color: var(--secondary);
}

.nav-link.coming-soon, .nav-link.locked-link {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-link.locked-link:hover {
    transform: none;
    background: transparent;
    border-color: transparent;
    color: rgba(255, 255, 255, 0.4);
}

.coming-soon-badge {
    margin-left: auto;
    flex-shrink: 0;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-decoration: none !important;
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sidebar-close-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sidebar-close-btn:hover {
    background: rgba(255, 51, 102, 0.2);
    border-color: #ff3366;
}

.logout-btn {
    margin-top: auto;
    color: #ff4d4d !important;
    background: rgba(255, 77, 77, 0.05);
}

.logout-btn:hover {
    background: #ff4d4d !important;
    color: white !important;
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.3);
}

/* Hamburger Fix */
.hamburger-btn {
    position: fixed !important;
    top: 25px !important;
    left: 25px !important;
    z-index: 1500 !important;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.hamburger-btn:hover {
    background: rgba(108, 92, 231, 0.2);
    border-color: var(--primary);
    box-shadow: var(--primary-glow);
}

/* Main Content Optimization */
.main-content {
    flex: 1;
    padding: 40px 60px;
    padding-left: 100px;
    width: 100%;
    min-height: 100vh;
    transition: padding 0.5s ease;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.page-title-small {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}

.page-title-main {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(to right, #fff, var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(0, 206, 201, 0.3));
}

/* Cards & Widgets */
.welcome-banner {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 206, 201, 0.05));
    border: var(--glass-border);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.welcome-banner i.bg-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 12rem;
    opacity: 0.05;
    transform: rotate(-15deg);
    pointer-events: none;
}

.verification-banner {
    background: rgba(255, 171, 0, 0.03) !important;
    border: 1px solid rgba(255, 171, 0, 0.15) !important;
    padding: 35px !important;
    border-radius: 24px !important;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.verification-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 171, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.banner-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.banner-icon {
    font-size: 2.8rem;
    color: #ffab00;
    filter: drop-shadow(0 0 10px rgba(255, 171, 0, 0.3));
}

.banner-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.banner-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    max-width: 800px;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.step-item {
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    text-decoration: none;
    transition: all 0.3s ease;
}

.step-item.completed {
    background: rgba(46, 204, 113, 0.05);
    border-color: rgba(46, 204, 113, 0.3);
}

.step-item.completed .step-status {
    color: #2ecc71;
}

.step-item.pending {
    background: rgba(241, 196, 15, 0.05);
    border-color: rgba(241, 196, 15, 0.3);
}

.step-item.pending .step-status {
    color: #f1c40f;
}

.step-item.action {
    background: rgba(255, 171, 0, 0.1);
    border-color: rgba(255, 171, 0, 0.5);
    transform: scale(1);
}

.step-item.action:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(255, 171, 0, 0.2);
    box-shadow: 0 10px 20px rgba(255, 171, 0, 0.1);
}

.step-item.action .step-status {
    color: #ffab00;
}

.step-item.locked {
    opacity: 0.6;
}

.step-status {
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
}

.step-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stat-pannel {
    background: var(--card-bg);
    border: var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
}

.stat-pannel:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-pannel .stat-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-pannel .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
    display: block;
}

.stat-pannel .value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

/* Announcement Card Styling */
.announcement-card {
    background: linear-gradient(165deg, rgba(138, 43, 226, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    position: relative;
    overflow: hidden;
}

.announcement-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.badge-new {
    background: rgba(0, 206, 201, 0.15);
    color: var(--secondary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(0, 206, 201, 0.2);
    letter-spacing: 0.5px;
}

.ann-item {
    padding: 10px 0;
}

.ann-title {
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.ann-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.view-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    padding: 8px 16px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 8px;
}

.view-link:hover {
    gap: 12px;
    background: rgba(138, 43, 226, 0.2);
    color: white;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
}

.empty-icon {
    font-size: 3rem;
    color: var(--text-muted);
    opacity: 0.2;
    margin-bottom: 20px;
    animation: pulseIcon 3s infinite ease-in-out;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.4; }
}

.refresh-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
    transition: 0.3s;
}

.refresh-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-content {
        padding: 100px 20px 40px;
    }

    .page-title-main {
        font-size: 2.2rem;
    }

    .welcome-banner {
        padding: 30px;
    }

    .welcome-banner h1 {
        font-size: 1.8rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .dashboard-widgets {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .sidebar {
        width: 100% !important;
        max-width: 320px;
        padding: 20px;
    }

    .sidebar-brand {
        font-size: 1.5rem;
    }

    .nav-link {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* Widgets Grid */
.dashboard-widgets {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.widget-card {
    background: var(--card-bg);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(15px);
}

.widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.widget-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.widget-title i {
    color: var(--secondary);
}

.action-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-item:hover {
    background: rgba(108, 92, 231, 0.1);
    border-color: var(--primary);
    transform: translateX(8px);
}

.action-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary);
}

.action-text h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 4px;
}

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

/* Profiles & Panels */
.profile-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    align-items: start;
    margin-top: 20px;
}

.panel-card {
    background: var(--card-bg);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.panel-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.panel-header h3 {
    font-family: 'Orbitron', sans-serif !important;
    font-size: 1.1rem;
    color: white !important;
    margin: 0;
}

.member-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
}

.member-section h4 {
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: 0.9rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 15px;
    border-radius: 10px;
    font-family: 'Exo 2', sans-serif;
    transition: 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.1);
}

.form-control[readonly] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Button & Action Styles */
.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.2);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 206, 201, 0.4);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
    color: var(--secondary);
}

@media (max-width: 992px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .user-pill {
        transform: scale(0.85);
        transform-origin: right center;
        padding: 5px 15px !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .user-pill .avatar-trapezium {
        width: 45px !important;
        height: 45px !important;
    }

    .user-pill>div:first-child span {
        font-size: 0.6rem !important;
    }

    .user-pill>div:first-child div {
        font-size: 0.8rem !important;
    }
}


/* --- PREMIUM PARTICIPANT DASHBOARD OVERRIDES --- */
.journey-tracker {
    background: rgba(10, 11, 24, 0.5) !important;
    border: 1px solid rgba(108, 92, 231, 0.15) !important;
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(108, 92, 231, 0.02);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

/* Timeline Stepper Container */
.timeline-stepper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 20px 0 45px;
    padding: 0 60px;
}

/* Container for the horizontal progress line track */
.timeline-line-wrapper {
    position: absolute;
    top: 24px;
    left: 84px;
    right: 84px;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
    border-radius: 2px;
}

.timeline-progress-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 2;
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px var(--secondary);
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
    gap: 0 !important;
}

.timeline-step::before {
    display: none !important;
}

.step-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0d0f19;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 4;
}

.timeline-step.completed .step-icon-circle {
    border-color: var(--secondary);
    color: #fff;
    background: radial-gradient(circle, var(--secondary) 0%, #0d0f19 100%);
    box-shadow: 0 0 20px rgba(0, 206, 201, 0.3);
}

.timeline-step.active .step-icon-circle {
    border-color: var(--primary);
    color: #fff;
    background: radial-gradient(circle, var(--primary) 0%, #0d0f19 100%);
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.3);
}

.timeline-step.locked .step-icon-circle {
    background: #0d0f19;
    border-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.2);
}

.step-title-text {
    margin-top: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s;
}

.timeline-step.active .step-title-text {
    color: #fff;
    text-shadow: 0 0 8px rgba(108, 92, 231, 0.4);
}

.timeline-step.completed .step-title-text {
    color: var(--secondary);
}

/* Journey Card Styling Revamp */
.journey-card {
    background: rgba(255, 255, 255, 0.015) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px;
    padding: 30px !important;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 410px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.journey-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: all 0.3s;
}

/* Card States */
.journey-card.card-active {
    border-color: rgba(108, 92, 231, 0.25) !important;
    box-shadow: 0 15px 35px rgba(108, 92, 231, 0.1), inset 0 0 15px rgba(108, 92, 231, 0.01);
}

.journey-card.card-active::after {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.journey-card.card-completed {
    border-color: rgba(0, 206, 201, 0.2) !important;
}

.journey-card.card-completed::after {
    background: var(--secondary);
}

.journey-card.card-locked {
    opacity: 1 !important;
    cursor: not-allowed;
    background: rgba(4, 5, 10, 0.82) !important;
    border-color: rgba(255, 255, 255, 0.04) !important;
}

.journey-card.card-locked::after {
    background: rgba(255, 255, 255, 0.05);
}

.journey-card:hover:not(.card-locked) {
    transform: translateY(-8px) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 255, 255, 0.03);
}

.journey-card.card-active:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 20px 45px rgba(108, 92, 231, 0.18), inset 0 0 20px rgba(108, 92, 231, 0.04);
}

.journey-card.card-completed:hover {
    border-color: var(--secondary) !important;
    box-shadow: 0 20px 45px rgba(0, 206, 201, 0.12);
}

.round-num {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.round-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.round-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* File Upload Dropzone Container */
.upload-dropzone {
    border: 2px dashed rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.01);
    border-radius: 14px;
    padding: 24px 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    margin-top: 10px;
}

.upload-dropzone:hover {
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.04);
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.08);
}

.upload-dropzone i {
    font-size: 2rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.upload-dropzone:hover i {
    transform: translateY(-4px);
    color: var(--primary);
}

.upload-text {
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.upload-subtext {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin: 0;
}

/* Badges Glow */
.round-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.68rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.status-badge-pending {
    background: rgba(241, 196, 15, 0.08) !important;
    color: #f1c40f !important;
    border: 1px solid rgba(241, 196, 15, 0.25) !important;
    text-shadow: 0 0 5px rgba(241, 196, 15, 0.2);
}

.status-badge-submitted {
    background: rgba(52, 152, 219, 0.08) !important;
    color: #3498db !important;
    border: 1px solid rgba(52, 152, 219, 0.25) !important;
    text-shadow: 0 0 5px rgba(52, 152, 219, 0.2);
}

.status-badge-success {
    background: rgba(46, 204, 113, 0.08) !important;
    color: #2ecc71 !important;
    border: 1px solid rgba(46, 204, 113, 0.25) !important;
    text-shadow: 0 0 5px rgba(46, 204, 113, 0.2);
}

.status-badge-danger {
    background: rgba(231, 76, 60, 0.08) !important;
    color: #e74c3c !important;
    border: 1px solid rgba(231, 76, 60, 0.25) !important;
    text-shadow: 0 0 5px rgba(231, 76, 60, 0.2);
}

/* Stats Pods Styling Revamp */
.stat-pannel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px;
    padding: 25px 30px !important;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease !important;
}

.stat-pannel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(108, 92, 231, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

.stat-pannel:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(108, 92, 231, 0.25) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(108, 92, 231, 0.08);
}

.stat-pannel .stat-icon-wrapper {
    width: 55px !important;
    height: 55px !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem !important;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-pannel:hover .stat-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(108, 92, 231, 0.2);
}

/* Welcome Banner Revamp */
.welcome-banner {
    background: linear-gradient(135deg, rgba(15, 18, 36, 0.7) 0%, rgba(8, 10, 20, 0.85) 100%) !important;
    border: 1px solid rgba(108, 92, 231, 0.15) !important;
    border-radius: 24px !important;
    padding: 40px 50px !important;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(108, 92, 231, 0.02) !important;
    backdrop-filter: blur(10px);
}

.welcome-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    pointer-events: none;
}

/* SweetAlert Theme Overrides */
.swal2-popup.swal2-toast,
.swal2-popup {
    background: #0d0f19 !important;
    border: 1px solid rgba(108, 92, 231, 0.2) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6) !important;
    border-radius: 16px !important;
}

.swal2-title {
    color: #fff !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 1.3rem !important;
}

.swal2-html-container {
    color: var(--text-muted) !important;
    font-size: 0.9rem !important;
}

.swal2-confirm {
    background: linear-gradient(135deg, var(--primary), #8b5cf6) !important;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3) !important;
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

.swal2-cancel {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

@media (max-width: 768px) {
    .timeline-stepper {
        padding: 0 10px;
    }
    .timeline-line-wrapper {
        top: 19px;
        left: 29px;
        right: 29px;
    }
    .step-icon-circle {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
    .step-title-text {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }
    .welcome-banner {
        padding: 30px 20px !important;
    }
}

/* Golden Theme overrides for Grand Finale Selected Teams */
.golden-theme {
    --primary: #d4af37 !important;      /* Gold */
    --secondary: #f39c12 !important;    /* Amber/Orange-gold */
    --accent: #f1c40f !important;       /* Yellow-gold */
    --primary-glow: 0 0 20px rgba(212, 175, 55, 0.45) !important;
}
.golden-theme .sidebar-brand {
    background: linear-gradient(135deg, #d4af37, #f1c40f) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.4)) !important;
}
.golden-theme .glow-text {
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5) !important;
}
.golden-theme .btn-glow {
    background: linear-gradient(135deg, #d4af37, #f39c12) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3) !important;
    color: #fff !important;
}
.golden-theme .btn-glow:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6) !important;
}
.golden-theme .timeline-step.active .step-icon-circle {
    background: linear-gradient(135deg, #d4af37, #f39c12) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5) !important;
}
.golden-theme .timeline-progress-bar {
    background: linear-gradient(90deg, #d4af37, #f39c12) !important;
}
.golden-theme .welcome-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(243, 156, 18, 0.04) 100%) !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(212, 175, 55, 0.02) !important;
}
.golden-theme .stat-card {
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
}
.golden-theme .stat-card:hover {
    border-color: rgba(212, 175, 55, 0.35) !important;
}
.golden-theme .action-item {
    border-left: 3px solid #d4af37 !important;
}
.golden-theme .action-item:hover {
    background: rgba(212, 175, 55, 0.08) !important;
    border-color: rgba(212, 175, 55, 0.35) !important;
}
.golden-theme .deliverable-tag {
    background: rgba(212, 175, 55, 0.08) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    color: #f1c40f !important;
}
