/* ========================================
   PERSPEKTIF NEON THEME v2.0
   Modern Dark Theme with Fluid Design
   ======================================== */

:root {
    /* Primary Neon Colors */
    --neon-pink: #FF00FF;
    --neon-purple: #8B00FF;
    --neon-magenta: #FF00AA;
    --neon-violet: #9D00FF;

    /* Sekans Colors */
    --sekans-persepsiyon: #9CA3AF;
    --sekans-nexus: #3B82F6;
    --sekans-vortex: #F97316;
    --sekans-urban-society: #D4AF37;
    --sekans-urban-black: #1F2937;

    /* Background Colors */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(15, 15, 25, 0.85);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-input: #12121a;

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0C0;
    --text-muted: #606070;

    /* Gradients */
    --gradient-neon: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    --gradient-neon-reverse: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    --gradient-dark: linear-gradient(180deg, var(--bg-dark), var(--bg-darker));
    --gradient-card: linear-gradient(145deg, rgba(25, 25, 40, 0.9), rgba(10, 10, 20, 0.95));

    /* Glow Effects */
    --glow-pink: 0 0 20px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.3);
    --glow-purple: 0 0 20px rgba(139, 0, 255, 0.5), 0 0 40px rgba(139, 0, 255, 0.3);
    --glow-neon: 0 0 20px rgba(255, 0, 255, 0.4), 0 0 40px rgba(139, 0, 255, 0.3);
    --glow-subtle: 0 4px 30px rgba(0, 0, 0, 0.5);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.875rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.75rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(255, 0, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 0, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

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

.text-glow {
    text-shadow: var(--glow-neon);
}

/* ========================================
   BUTTONS - Modern Style
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-neon {
    background: var(--gradient-neon);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 0, 255, 0.3);
}

.btn-neon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 255, 0.5);
}

.btn-neon:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--neon-pink);
    border: 2px solid rgba(255, 0, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 0, 255, 0.1);
    border-color: var(--neon-pink);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 0, 255, 0.3);
}

/* ========================================
   CARDS - Modern Glassmorphism
   ======================================== */

.card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    backdrop-filter: blur(40px);
    box-shadow: var(--glow-subtle);
    transition: all var(--transition-normal);
}

.card:hover {
    border-color: rgba(255, 0, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

/* ========================================
   MODERN FORMS
   ======================================== */

.form-group,
.auth-group {
    margin-bottom: 1.25rem;
}

.form-label,
.auth-label {
    display: block;
    margin-bottom: 0.625rem;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
}

.form-input,
.auth-input,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="time"],
input[type="datetime-local"],
select,
textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-input) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--text-primary) !important;
    font-family: inherit;
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus,
.auth-input:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(255, 0, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 0, 255, 0.1), 0 0 20px rgba(255, 0, 255, 0.1);
    background: rgba(20, 20, 35, 1) !important;
}

.form-input::placeholder,
.auth-input::placeholder,
input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

/* Select styling */
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    padding-right: 2.5rem;
    cursor: pointer;
}

select option {
    background: #1a1a2e;
    color: var(--text-primary);
    padding: 0.75rem;
}

/* Textarea */
textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

/* Date/time inputs dark mode */
input[type="datetime-local"],
input[type="date"],
input[type="time"] {
    color-scheme: dark;
}

/* Number input */
input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Checkbox & Radio */
input[type="checkbox"],
input[type="radio"] {
    width: 1.125rem;
    height: 1.125rem;
    accent-color: var(--neon-pink);
    cursor: pointer;
}

.auth-error {
    color: #f87171;
    font-size: 0.8125rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) var(--space-xl);
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.05em;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

.navbar-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.navbar-link:hover {
    color: var(--neon-pink);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl) var(--space-xl);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.15), transparent 70%);
    top: 10%;
    left: -10%;
    animation: floatOrb 15s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 0, 255, 0.15), transparent 70%);
    bottom: 10%;
    right: -10%;
    animation: floatOrb 20s ease-in-out infinite reverse;
}

@keyframes floatOrb {

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

    25% {
        transform: translate(30px, -30px);
    }

    50% {
        transform: translate(0, -50px);
    }

    75% {
        transform: translate(-30px, -30px);
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
    padding: var(--space-3xl) var(--space-xl);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* ========================================
   ORBIT CARDS
   ======================================== */

.orbits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.orbit-card {
    padding: var(--space-2xl);
    text-align: center;
}

.orbit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: var(--gradient-neon);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--glow-neon);
}

.orbit-title {
    margin-bottom: var(--space-sm);
}

.orbit-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========================================
   SEKANS LEVELS
   ======================================== */

.sekans-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.sekans-item {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-xl);
}

.sekans-badge {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.sekans-persepsiyon .sekans-badge {
    background: var(--sekans-persepsiyon);
}

.sekans-nexus .sekans-badge {
    background: var(--sekans-nexus);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.sekans-vortex .sekans-badge {
    background: var(--sekans-vortex);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
}

.sekans-urban-society .sekans-badge {
    background: var(--sekans-urban-society);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.sekans-urban-black .sekans-badge {
    background: var(--sekans-urban-black);
    border: 2px solid #333;
}

.sekans-content {
    flex: 1;
}

.sekans-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.sekans-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========================================
   EVENTS GRID
   ======================================== */

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.event-card {
    overflow: hidden;
    padding: 0;
}

.event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-content {
    padding: var(--space-xl);
}

.event-type {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--gradient-neon);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.event-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.event-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    padding: var(--space-3xl) var(--space-xl);
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-md);
}

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

/* ========================================
   MODERN PANEL LAYOUT
   ======================================== */

.panel-layout {
    display: flex;
    min-height: 100vh;
}

.panel-sidebar {
    width: 260px;
    background: linear-gradient(180deg, rgba(12, 12, 18, 0.98), rgba(8, 8, 12, 1));
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    padding: var(--space-lg);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.panel-sidebar::-webkit-scrollbar {
    width: 4px;
}

.panel-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.panel-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.panel-main {
    flex: 1;
    margin-left: 260px;
    padding: var(--space-xl);
    background: var(--bg-dark);
    min-height: 100vh;
}

.panel-nav {
    list-style: none;
    margin-top: var(--space-xl);
    flex: 1;
}

.panel-nav-item {
    margin-bottom: 0.25rem;
}

.panel-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    font-size: 0.9375rem;
    font-weight: 500;
}

.panel-nav-link:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
}

.panel-nav-link.active {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.15), rgba(139, 0, 255, 0.1));
    color: var(--neon-pink);
    border: 1px solid rgba(255, 0, 255, 0.2);
}

/* ========================================
   STATS CARDS - Modern
   ======================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.stat-card {
    padding: var(--space-lg);
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.8125rem;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   MODERN TABLES
   ======================================== */

table {
    width: 100%;
    border-collapse: collapse;
}

table thead tr {
    background: rgba(255, 255, 255, 0.02);
}

table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.9375rem;
}

table tbody tr {
    transition: background var(--transition-fast);
}

table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes pulse-neon {

    0%,
    100% {
        box-shadow: var(--glow-neon);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 0, 255, 0.6), 0 0 80px rgba(139, 0, 255, 0.4);
    }
}

.animate-pulse-neon {
    animation: pulse-neon 2s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-fade-in-up {
    animation: fadeInUp 0.4s ease-out forwards;
}

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

    100% {
        background-position: 200% 0;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

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

.text-success {
    color: #10B981;
}

.text-warning {
    color: #F59E0B;
}

.text-error {
    color: #EF4444;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .panel-sidebar {
        transform: translateX(-100%);
        z-index: 1000;
    }

    .panel-main {
        margin-left: 0;
        padding: var(--space-md);
    }

    .sekans-item {
        flex-direction: column;
        text-align: center;
    }

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

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

/* ========================================
   MODERN PANEL V3.0 - Premium Design
   ======================================== */

/* Animated Mesh Background */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.mesh-bg::before,
.mesh-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: meshFloat 20s ease-in-out infinite;
}

.mesh-bg::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.3), transparent 70%);
    top: -200px;
    left: -100px;
}

.mesh-bg::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 0, 255, 0.25), transparent 70%);
    bottom: -150px;
    right: -100px;
    animation-delay: -10s;
    animation-direction: reverse;
}

@keyframes meshFloat {

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

    25% {
        transform: translate(50px, -30px) scale(1.05);
    }

    50% {
        transform: translate(20px, -60px) scale(1);
    }

    75% {
        transform: translate(-30px, -30px) scale(1.03);
    }
}

/* Enhanced Cards with 3D Hover */
.card-modern {
    background: linear-gradient(145deg,
            rgba(25, 25, 45, 0.85),
            rgba(15, 15, 30, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(40px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 0, 255, 0.3),
            rgba(139, 0, 255, 0.3),
            transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-modern:hover {
    transform: translateY(-4px) perspective(1000px) rotateX(2deg);
    border-color: rgba(255, 0, 255, 0.15);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 0, 255, 0.08);
}

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

/* Stat Cards with Glow Animation */
.stat-card-modern {
    background: linear-gradient(145deg,
            rgba(255, 0, 255, 0.06),
            rgba(139, 0, 255, 0.03));
    border: 1px solid rgba(255, 0, 255, 0.08);
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card-modern::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.1), transparent 50%);
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease;
}

.stat-card-modern:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 0, 255, 0.2);
}

.stat-card-modern:hover::after {
    opacity: 1;
    transform: scale(1);
}

.stat-value-glow {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF00FF, #8B00FF, #FF00FF);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Enhanced Buttons */
.btn-glow {
    position: relative;
    background: linear-gradient(135deg, #FF00FF, #8B00FF);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 14px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #FF00FF, #8B00FF, #FF00FF);
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.3s ease;
    animation: pulseGlow 2s ease-in-out infinite;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.35);
}

.btn-glow:hover::before {
    opacity: 1;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

/* Shimmer Button Effect */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::after {
    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-shimmer:hover::after {
    left: 100%;
}

/* Spotlight Table Rows */
.table-modern {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 4px;
}

.table-modern thead tr {
    background: transparent;
}

.table-modern thead th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    border: none;
}

/* Table Row Hover Effect */
.table-modern tbody tr {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.table-modern tbody td:first-child {
    position: relative;
    /* Ensure dot positions relative to first cell */
}

/* Indicator strip on the left */
.table-modern tbody td:first-child::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #FF00FF, #8B00FF);
    border-radius: 3px 0 0 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.table-modern tbody tr:hover {
    background: rgba(255, 0, 255, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.table-modern tbody tr:hover td:first-child::before {
    opacity: 1;
}

.table-modern tbody td {
    padding: 1rem 1.25rem;
    border: none;
    font-size: 0.9rem;
}

.table-modern tbody td:first-child {
    border-radius: 12px 0 0 12px;
}

.table-modern tbody td:last-child {
    border-radius: 0 12px 12px 0;
}

/* Modern Form Inputs */
.input-modern {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(20, 20, 35, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    color: white;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    position: relative;
}

.input-modern:focus {
    outline: none;
    border-color: rgba(255, 0, 255, 0.4);
    background: rgba(25, 25, 45, 0.9);
    box-shadow:
        0 0 0 4px rgba(255, 0, 255, 0.08),
        0 0 30px rgba(255, 0, 255, 0.08);
}

/* Floating Label Groups */
.form-group-modern {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group-modern input {
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
}

.form-group-modern label {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group-modern input:focus+label,
.form-group-modern input:not(:placeholder-shown)+label {
    top: 0.75rem;
    transform: translateY(0);
    font-size: 0.6875rem;
    color: rgba(255, 0, 255, 0.7);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Sidebar Enhancements */
.sidebar-modern {
    background: linear-gradient(180deg,
            rgba(15, 15, 25, 0.98) 0%,
            rgba(10, 10, 18, 1) 100%);
    backdrop-filter: blur(40px);
    border-right: 1px solid rgba(255, 255, 255, 0.03);
}

.nav-link-modern {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.25rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link-modern::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 60%;
    background: linear-gradient(180deg, #FF00FF, #8B00FF);
    border-radius: 0 4px 4px 0;
    transition: width 0.3s ease;
}

.nav-link-modern::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%,
            rgba(255, 0, 255, 0.15),
            transparent 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease;
}

.nav-link-modern:hover {
    color: white;
    background: rgba(255, 255, 255, 0.03);
}

.nav-link-modern:hover::after {
    opacity: 1;
    transform: scale(1.5);
}

.nav-link-modern.active {
    color: white;
    background: linear-gradient(135deg,
            rgba(255, 0, 255, 0.1),
            rgba(139, 0, 255, 0.06));
}

.nav-link-modern.active::before {
    width: 3px;
}

/* Icon Glow Effect */
.nav-icon-glow {
    filter: drop-shadow(0 0 0 transparent);
    transition: filter 0.3s ease;
}

.nav-link-modern:hover .nav-icon-glow,
.nav-link-modern.active .nav-icon-glow {
    filter: drop-shadow(0 0 8px rgba(255, 0, 255, 0.5));
}

/* Quick Action Cards */
.action-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(145deg,
            rgba(25, 25, 45, 0.7),
            rgba(15, 15, 30, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

.action-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(255, 0, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.action-card:hover::before {
    left: 100%;
}

.action-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(145deg,
            rgba(255, 0, 255, 0.12),
            rgba(139, 0, 255, 0.08));
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.action-card:hover .action-icon {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.2);
}

/* Status Badges */
.badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.badge-success {
    background: rgba(16, 185, 129, 0.15);
    color: #34D399;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.15);
    color: #FBBF24;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.badge-error {
    background: rgba(239, 68, 68, 0.15);
    color: #F87171;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.badge-info {
    background: rgba(59, 130, 246, 0.15);
    color: #60A5FA;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.badge-neon {
    background: linear-gradient(135deg,
            rgba(255, 0, 255, 0.15),
            rgba(139, 0, 255, 0.1));
    color: #FF00FF;
    border: 1px solid rgba(255, 0, 255, 0.25);
}

/* Progress Timeline */
.timeline-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    text-align: center;
}

.timeline-dot {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.timeline-dot.completed {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.timeline-dot.active {
    background: linear-gradient(135deg, #FF00FF, #8B00FF);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 0, 255, 0.4);
    animation: dotPulse 2s ease-in-out infinite;
}

.timeline-dot.pending {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
}

@keyframes dotPulse {

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

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

.timeline-connector {
    flex: 0.4;
    height: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.timeline-connector.completed {
    background: linear-gradient(90deg, #10B981, #FF00FF);
}

.timeline-connector.active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg,
            #FF00FF,
            #8B00FF,
            transparent);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

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

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.03) 25%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.03) 75%);
    background-size: 200% 100%;
    animation: skeletonShine 1.5s ease-in-out infinite;
    border-radius: 8px;
}

@keyframes skeletonShine {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Notification Dots */
.notification-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background: #FF00FF;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    animation: notificationPulse 2s ease-in-out infinite;
}

@keyframes notificationPulse {

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

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

/* Gradient Text Animation */
.text-gradient-animated {
    background: linear-gradient(135deg, #FF00FF, #8B00FF, #FF00AA, #FF00FF);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 4s ease infinite;
}

@keyframes textGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
}

.glass-strong {
    background: rgba(20, 20, 35, 0.85);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
}

/* Missing Utilities */
.bg-black-90 {
    background: rgba(0, 0, 0, 0.9);
}

.backdrop-blur-xl {
    backdrop-filter: blur(24px);
}

@keyframes pulseSlow {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.animate-pulse-slow {
    animation: pulseSlow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}