/* PAOLO MULTIVERSE OF MADNESS - Custom CSS */

/* === ROOT VARIABLES === */
:root {
    --cosmic-primary: #6366f1;
    --cosmic-secondary: #8b5cf6;
    --cosmic-accent: #06b6d4;
    --cosmic-dark: #0f172a;
    --cosmic-darker: #020617;
    --cosmic-light: #f8fafc;
    --cosmic-gray: #64748b;
    --cosmic-success: #10b981;
    --cosmic-warning: #f59e0b;
    --cosmic-danger: #ef4444;
    
    --gradient-primary: linear-gradient(135deg, var(--cosmic-primary), var(--cosmic-secondary));
    --gradient-accent: linear-gradient(135deg, var(--cosmic-accent), var(--cosmic-primary));
    --gradient-dark: linear-gradient(135deg, var(--cosmic-darker), var(--cosmic-dark));
    
    --shadow-cosmic: 0 25px 50px -12px rgba(99, 102, 241, 0.25);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
    --shadow-soft: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === GLOBAL STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--cosmic-light);
    background: var(--gradient-dark);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* === LOADING SCREEN === */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: var(--cosmic-light);
}

.comic-burst {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 2s infinite, rotate 4s linear infinite;
    box-shadow: var(--shadow-glow);
}

.comic-burst i {
    font-size: 2rem;
    color: white;
}

.loading-text {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: loading 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

@keyframes loading {
    0% { width: 0%; transform: translateX(-100%); }
    50% { width: 100%; transform: translateX(0%); }
    100% { width: 100%; transform: translateX(100%); }
}

/* === NAVIGATION === */
.cosmic-nav {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    padding: 1rem 0;
    transition: var(--transition);
}

.cosmic-nav.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow-cosmic);
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand i {
    font-size: 2rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 10px;
}

.brand-subtitle {
    font-family: 'Orbitron', monospace;
    font-weight: 400;
    font-size: 0.7rem;
    color: var(--cosmic-accent);
    display: block;
    line-height: 1;
    margin-top: -5px;
}

.nav-link {
    color: var(--cosmic-light) !important;
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cosmic-accent) !important;
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

/* === HERO SECTION === */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.2) 0%, transparent 50%),
        var(--gradient-dark);
    z-index: -1;
}

.cosmic-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(99, 102, 241, 0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(139, 92, 246, 0.5), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(6, 182, 212, 0.4), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: float 20s ease-in-out infinite;
}

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

.hero-content {
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

.multiverse-text {
    display: block;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

.madness-text {
    display: block;
    background: var(--gradient-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.8em;
}

@keyframes glow {
    from { filter: brightness(1); }
    to { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--cosmic-gray);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.floating-comic {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: var(--shadow-cosmic);
    animation: levitate 6s ease-in-out infinite;
    position: relative;
}

.floating-comic::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.comic-icon {
    font-size: 8rem;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

@keyframes levitate {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* === BUTTONS === */
.btn-cosmic {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-cosmic:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-cosmic);
    color: white;
}

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

.btn-outline-cosmic {
    background: transparent;
    border: 2px solid var(--cosmic-primary);
    color: var(--cosmic-primary);
    font-weight: 600;
    padding: 10px 28px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline-cosmic:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-cosmic);
}
/* === SECTIONS === */
.section-title {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 2.5rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--cosmic-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.comics-section,
.customers-section,
.contact-section {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

/* === CONTROLS === */
.controls-panel,
.table-controls {
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cosmic-gray);
    z-index: 10;
}

.search-box .form-control {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--cosmic-light);
    padding-left: 45px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.search-box .form-control:focus {
    background: rgba(15, 23, 42, 0.9);
    border-color: var(--cosmic-primary);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
    color: var(--cosmic-light);
}

.search-box .form-control::placeholder {
    color: var(--cosmic-gray);
}

/* === CARDS === */
.comic-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.comic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.comic-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-cosmic);
    border-color: var(--cosmic-primary);
}

.comic-card:hover::before {
    transform: scaleX(1);
}

.comic-card-title {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--cosmic-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.comic-card-text {
    color: var(--cosmic-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.comic-card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.comic-price {
    font-weight: 700;
    color: var(--cosmic-accent);
    font-size: 1.2rem;
}

.comic-category {
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === TABLE === */
.table-container {
    background: rgba(15, 23, 42, 0.9);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    overflow: hidden;
}

.table-cosmic {
    background: transparent !important;
    color: var(--cosmic-light) !important;
}

.table-cosmic th {
    background: var(--gradient-primary) !important;
    color: white !important;
    border: none !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem !important;
}

.table-cosmic td {
    background: rgba(15, 23, 42, 0.5) !important;
    color: var(--cosmic-light) !important;
    border: 1px solid rgba(99, 102, 241, 0.1) !important;
    padding: 1rem !important;
    vertical-align: middle !important;
}

.table-cosmic tbody tr {
    transition: var(--transition);
}

.table-cosmic tbody tr:hover {
    background: rgba(99, 102, 241, 0.1) !important;
    transform: scale(1.01);
    cursor: pointer;
}

.customer-level {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.level-bronze {
    background: linear-gradient(135deg, #cd7f32, #b8860b);
    color: white;
}

.level-silver {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
    color: white;
}

.level-gold {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #333;
}

.level-platinum {
    background: linear-gradient(135deg, #e5e4e2, #bcc6cc);
    color: #333;
}

/* === MODAL === */
.cosmic-modal .modal-content {
    background: var(--gradient-dark);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-cosmic);
}

.cosmic-modal .modal-header {
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    background: var(--gradient-primary);
}

.cosmic-modal .modal-title {
    color: white;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.cosmic-modal .modal-body {
    background: rgba(15, 23, 42, 0.9);
}

.cosmic-modal .modal-footer {
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    background: rgba(15, 23, 42, 0.8);
}

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

.customer-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: white;
    box-shadow: var(--shadow-glow);
}

.customer-info h4 {
    color: var(--cosmic-light);
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
}

.customer-info p {
    color: var(--cosmic-gray);
    margin-bottom: 1rem;
}

.customer-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    background: rgba(99, 102, 241, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cosmic-accent);
    display: block;
}

.stat-label {
    color: var(--cosmic-gray);
    font-size: 0.9rem;
}
/* === FORMS === */
.contact-form-container {
    background: rgba(15, 23, 42, 0.9);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.cosmic-form .form-control,
.cosmic-form .form-select {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--cosmic-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.cosmic-form .form-control:focus,
.cosmic-form .form-select:focus {
    background: rgba(15, 23, 42, 0.9);
    border-color: var(--cosmic-primary);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
    color: var(--cosmic-light);
}

.cosmic-form .form-floating > label {
    color: var(--cosmic-gray);
}

.cosmic-form .form-floating > .form-control:focus ~ label,
.cosmic-form .form-floating > .form-control:not(:placeholder-shown) ~ label,
.cosmic-form .form-floating > .form-select ~ label {
    color: var(--cosmic-primary);
}

.cosmic-form .form-control::placeholder {
    color: var(--cosmic-gray);
}

/* === CONTACT INFO === */
.contact-info {
    padding: 2rem;
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

.contact-icon:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-glow);
}

.contact-info h5 {
    color: var(--cosmic-light);
    font-family: 'Orbitron', monospace;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--cosmic-gray);
}

/* === FOOTER === */
.cosmic-footer {
    background: var(--gradient-dark);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    margin-top: 4rem;
}

.footer-brand h4 {
    color: var(--cosmic-light);
    font-family: 'Orbitron', monospace;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--cosmic-gray);
    margin-bottom: 1.5rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    color: var(--cosmic-light);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

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

.footer-links h5 {
    color: var(--cosmic-light);
    font-family: 'Orbitron', monospace;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-links a {
    color: var(--cosmic-gray);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-divider {
    border-color: rgba(99, 102, 241, 0.2);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: var(--cosmic-gray);
    margin: 0;
    font-size: 0.9rem;
}

/* === UTILITIES === */
.text-cosmic {
    color: var(--cosmic-primary) !important;
}

.bg-cosmic {
    background: var(--gradient-primary) !important;
}

.border-cosmic {
    border-color: var(--cosmic-primary) !important;
}

/* === ANIMATIONS === */
.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

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

.slide-in {
    animation: slideIn 0.5s ease-out forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bounce-in {
    animation: bounceIn 0.6s ease-out forwards;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-comic {
        width: 200px;
        height: 200px;
    }
    
    .comic-icon {
        font-size: 5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .controls-panel .row,
    .table-controls .row {
        text-align: center;
    }
    
    .controls-panel .col-md-6:last-child,
    .table-controls .col-md-6:last-child {
        text-align: center;
        margin-top: 1rem;
    }
    
    .customer-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .brand-text {
        font-size: 1.2rem;
    }
    
    .brand-subtitle {
        font-size: 0.6rem;
    }
    
    .floating-comic {
        width: 150px;
        height: 150px;
    }
    
    .comic-icon {
        font-size: 4rem;
    }
    
    .customer-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cosmic,
    .btn-outline-cosmic {
        width: 100%;
        max-width: 300px;
    }
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cosmic-darker);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-accent);
}

/* === LOADING STATES === */
.loading-comics {
    padding: 3rem;
    text-align: center;
    color: var(--cosmic-gray);
}

.loading-comics i {
    margin-bottom: 1rem;
}

/* === MISC === */
.tooltip-inner {
    background: var(--gradient-primary);
    color: white;
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: var(--cosmic-primary);
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: var(--cosmic-primary);
}

.tooltip.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: var(--cosmic-primary);
}

.tooltip.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: var(--cosmic-primary);
}
/* === STAFF SECTION === */
.staff-section {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.staff-controls {
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.staff-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.staff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-cosmic);
    border-color: var(--cosmic-primary);
}

.staff-card:hover::before {
    transform: scaleX(1);
}

.staff-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--cosmic-primary);
    box-shadow: var(--shadow-glow);
    margin: 0 auto 1.5rem;
    display: block;
    transition: var(--transition);
}

.staff-card:hover .staff-photo {
    transform: scale(1.1);
    border-color: var(--cosmic-accent);
}

.staff-name {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--cosmic-light);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.staff-role {
    color: var(--cosmic-accent);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.staff-bio {
    color: var(--cosmic-gray);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.staff-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.specialty-tag {
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.staff-contact {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.staff-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.staff-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    color: var(--cosmic-light);
    text-decoration: none;
    transition: var(--transition);
}

.staff-social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

/* Staff Profile Modal */
.staff-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.staff-profile-photo {
    text-align: center;
}

.staff-profile-photo img {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    object-fit: cover;
    border: 4px solid var(--cosmic-primary);
    box-shadow: var(--shadow-cosmic);
    margin-bottom: 1rem;
}

.staff-profile-info h3 {
    font-family: 'Orbitron', monospace;
    color: var(--cosmic-light);
    margin-bottom: 0.5rem;
}

.staff-profile-role {
    color: var(--cosmic-accent);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.staff-profile-bio {
    color: var(--cosmic-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.staff-achievements {
    background: rgba(99, 102, 241, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.staff-achievements h5 {
    color: var(--cosmic-light);
    font-family: 'Orbitron', monospace;
    margin-bottom: 1rem;
}

.achievement-item {
    color: var(--cosmic-gray);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.achievement-item::before {
    content: '🏆';
    position: absolute;
    left: 0;
    top: 0;
}

.staff-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.staff-stat {
    background: rgba(99, 102, 241, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.staff-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cosmic-accent);
    display: block;
    font-family: 'Orbitron', monospace;
}

.staff-stat-label {
    color: var(--cosmic-gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.staff-favorites {
    background: rgba(139, 92, 246, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.staff-favorites h5 {
    color: var(--cosmic-light);
    font-family: 'Orbitron', monospace;
    margin-bottom: 1rem;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-tag {
    background: var(--gradient-accent);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Loading states for staff */
.loading-staff {
    padding: 3rem;
    text-align: center;
    color: var(--cosmic-gray);
}

.loading-staff i {
    margin-bottom: 1rem;
}

/* Responsive for staff section */
@media (max-width: 768px) {
    .staff-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .staff-profile-photo img {
        width: 150px;
        height: 150px;
    }
    
    .staff-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .staff-controls .row {
        text-align: center;
    }
    
    .staff-controls .col-md-6:last-child {
        text-align: center;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .staff-stats {
        grid-template-columns: 1fr;
    }
    
    .staff-specialties {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-tags {
        justify-content: center;
    }
}
/* === STAFF LIST STYLES === */
.staff-list-item:hover .row {
    transform: translateY(-5px);
    box-shadow: var(--shadow-cosmic);
    border-color: var(--cosmic-primary) !important;
}

.staff-list-item .btn:hover {
    transform: scale(1.05);
}

/* === ADDITIONAL STAFF ENHANCEMENTS === */
.staff-card {
    backdrop-filter: blur(10px);
}

.staff-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(99, 102, 241, 0.05) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.staff-card:hover::after {
    transform: translateX(100%);
}

.staff-photo {
    background: var(--gradient-primary);
    padding: 4px;
}

.specialty-tag {
    box-shadow: 0 2px 4px rgba(99, 102, 241, 0.3);
}

.specialty-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(99, 102, 241, 0.4);
}

/* === HERO SECTION ENHANCEMENT === */
.hero-buttons .btn {
    position: relative;
    overflow: hidden;
}

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

.hero-buttons .btn:hover::before {
    left: 100%;
}

/* === ENHANCED ANIMATIONS === */
@keyframes staffCardEntry {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateX(-15deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.staff-card {
    animation: staffCardEntry 0.6s ease-out forwards;
}

.staff-card:nth-child(2) { animation-delay: 0.1s; }
.staff-card:nth-child(3) { animation-delay: 0.2s; }
.staff-card:nth-child(4) { animation-delay: 0.3s; }

/* === FLOATING ELEMENTS - REMOVED FOR SIMPLICITY === */

/* === NOTIFICATION STYLES === */
.swal2-popup.swal2-toast {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.swal2-popup.swal2-toast .swal2-title {
    color: var(--cosmic-light) !important;
    font-family: 'Roboto', sans-serif;
}

/* === ENHANCED TABLE STYLES === */
.table-cosmic tbody tr:hover {
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.2);
}

.customer-level,
.specialty-tag,
.hero-tag {
    position: relative;
    overflow: hidden;
}

.customer-level::before,
.specialty-tag::before,
.hero-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.customer-level:hover::before,
.specialty-tag:hover::before,
.hero-tag:hover::before {
    left: 100%;
}

/* === ENHANCED LOADING STATES === */
.loading-comics,
.loading-staff {
    background: rgba(15, 23, 42, 0.8);
    border-radius: var(--border-radius);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.loading-comics i,
.loading-staff i {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* === ENHANCED FORM STYLES === */
.swal2-input,
.swal2-textarea {
    background: rgba(15, 23, 42, 0.8) !important;
    border: 1px solid rgba(99, 102, 241, 0.3) !important;
    color: var(--cosmic-light) !important;
    border-radius: 8px !important;
}

.swal2-input:focus,
.swal2-textarea:focus {
    border-color: var(--cosmic-primary) !important;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2) !important;
}

.swal2-input::placeholder,
.swal2-textarea::placeholder {
    color: var(--cosmic-gray) !important;
}

/* === ENHANCED MODAL STYLES === */
.cosmic-modal .modal-content {
    backdrop-filter: blur(20px);
}

.cosmic-modal .modal-backdrop {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

/* === ENHANCED CONTACT SECTION === */
.contact-form-container {
    backdrop-filter: blur(15px);
    position: relative;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.3;
}

/* === ENHANCED FOOTER === */
.cosmic-footer {
    position: relative;
}

.cosmic-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

/* === SCROLL INDICATORS - REMOVED FOR SIMPLICITY === */

/* === PERFORMANCE OPTIMIZATIONS === */
.staff-card,
.comic-card,
.customer-profile {
    will-change: transform;
}

.cosmic-particles,
.floating-comic {
    will-change: transform;
}

/* === ACCESSIBILITY ENHANCEMENTS === */
.btn:focus,
.nav-link:focus,
.form-control:focus {
    outline: 2px solid var(--cosmic-accent);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .floating-comic,
    .cosmic-particles,
    .staff-card::after {
        animation: none;
    }
    
    .hero-title,
    .staff-card,
    .comic-card {
        transition: none;
    }
}

/* === PRINT STYLES === */
@media print {
    .cosmic-nav,
    .loading-screen,
    .cosmic-footer,
    .btn,
    .social-links {
        display: none !important;
    }
    
    .staff-card,
    .comic-card {
        break-inside: avoid;
        background: white !important;
        color: black !important;
        border: 1px solid #ccc !important;
    }
}
.staff-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}
.staff-pic {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}