/* ============================================
   HEADER PERFECTION - ENHANCED MICRO-INTERACTIONS
   ============================================ */

/* Enhanced Navigation Links with Bottom Line Indicator */
.ultra-nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 700;
    color: #e5e2e1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.ultra-nav-link::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e10100, transparent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.ultra-nav-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(225, 1, 1, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ultra-nav-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.ultra-nav-link:hover::before {
    width: 50%;
}

.ultra-nav-link:hover::after {
    opacity: 1;
}

.ultra-nav-link:active {
    transform: translateY(0) scale(0.98);
}

.ultra-nav-link.active {
    color: #e10100;
}

.ultra-nav-link.active::before {
    width: 50%;
    background: #e10100;
}

/* Enhanced Logo with Border Glow */
.logo-wrapper {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.logo-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(225, 1, 1, 0.3);
}

.logo-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #e10100, transparent, #ff1a1a);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 6px;
}

.logo-wrapper:hover::before {
    opacity: 1;
}

/* Enhanced CTA Button with Sharp Edges */
.ultra-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #e10100 0%, #b30000 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(225, 1, 1, 0.3);
    border: 1px solid rgba(225, 1, 1, 0.3);
}

.ultra-cta-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;
}

.ultra-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 1, 1, 0.4);
    border-color: rgba(225, 1, 1, 0.5);
}

.ultra-cta-btn:hover::before {
    left: 100%;
}

.ultra-cta-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 4px 15px rgba(225, 1, 1, 0.3);
}

/* Enhanced Mobile Toggle */
.ultra-mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ultra-mobile-toggle:hover {
    background: rgba(225, 1, 1, 0.1);
    border-color: rgba(225, 1, 1, 0.3);
    transform: scale(1.05);
}

.ultra-mobile-toggle:active {
    transform: scale(0.98);
}

/* Enhanced Hamburger Animation */
.hamburger-lines {
    position: relative;
    width: 20px;
    height: 14px;
    margin: 0 auto;
}

.line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e5e2e1;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.line-1 { top: 0; }
.line-2 { top: 50%; transform: translateY(-50%); }
.line-3 { bottom: 0; }

.ultra-mobile-toggle.active .line-1 {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background: #e10100;
}

.ultra-mobile-toggle.active .line-2 {
    opacity: 0;
    transform: translateX(-20px);
}

.ultra-mobile-toggle.active .line-3 {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
    background: #e10100;
}

/* Logo Text Enhancement */
.logo-title {
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.logo-subtitle {
    font-size: 10px;
    font-weight: 900;
    color: #e10100;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Active Nav Item Enhancement */
.ultra-nav-link.active {
    background: rgba(225, 1, 1, 0.1);
}

/* Navigation Icon Enhancement */
.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

.nav-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.ultra-nav-link:hover .nav-icon {
    transform: scale(1.1);
}

.ultra-nav-link.active .nav-icon svg {
    stroke: #e10100;
}
/* ============================================
   HERO PERFECTION - PREMIUM DEPTH & ANIMATIONS
   ============================================ */

/* Enhanced Hero Depth Layers */
.hero-depth-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.hero-depth-layer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(225, 1, 1, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 26, 26, 0.02) 0%, transparent 40%);
    animation: depthPulse 8s ease-in-out infinite;
}

@keyframes depthPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
    50% { transform: scale(1.1) rotate(5deg); opacity: 1; }
}

/* Enhanced Badge with Glow */
.hero-badge {
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: badgeShimmer 3s infinite;
}

@keyframes badgeShimmer {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

/* Enhanced Title with Letter Spacing Animation */
.hero-title {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #e5e5e5 50%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.title-highlight {
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e10100, #ff1a1a);
    border-radius: 2px;
    opacity: 0.8;
}

/* Enhanced CTA Group with Stagger Animation */
.hero-cta-group {
    position: relative;
}

.hero-cta-group::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle at center, rgba(225, 1, 1, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Enhanced Primary Button with Sharp Corners */
.btn-primary {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    transform: translateZ(0);
}

.btn-primary::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.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #e10100, #ff1a1a, #e10100);
    z-index: -1;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::after {
    opacity: 1;
}

/* Enhanced Secondary Button */
.btn-secondary {
    position: relative;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 4px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Enhanced Stats with Counter Animation */
.stat-item {
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle at center, rgba(225, 1, 1, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    background: linear-gradient(180deg, #ffffff 0%, #c8c6c5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-divider {
    position: relative;
}

.stat-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 0;
    background: linear-gradient(180deg, transparent, #e10100, transparent);
    animation: dividerGrow 1s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes dividerGrow {
    to { height: 100%; }
}

/* Enhanced Visual Card Stack */
.visual-card-stack {
    perspective: 1000px;
}

.media-showcase-card {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.media-showcase-card:hover {
    transform: rotateY(-5deg) rotateX(5deg) translateZ(20px);
}

/* Enhanced Floating Elements */
.floating-element {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-element::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(225, 1, 1, 0.3), transparent, rgba(225, 1, 1, 0.3));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-element:hover::before {
    opacity: 1;
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
    cursor: pointer;
}

.scroll-indicator:hover .scroll-line {
    height: 60px;
}

.scroll-indicator:hover .scroll-line::after {
    animation-duration: 1s;
}

/* Enhanced Media Placeholder */
.media-placeholder {
    position: relative;
}

.media-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.02) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.02) 50%, transparent 52%);
    background-size: 20px 20px;
    pointer-events: none;
}

/* Responsive Perfection */
@media (max-width: 991px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 36px;
        line-height: 1.1;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 6px 14px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .hero-cta-group {
        gap: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-divider {
        height: 30px;
    }
}
/* ============================================
   COUNTDOWN PERFECTION - ENHANCED URGENCY
   ============================================ */

/* Enhanced Circle Progress with Glow */
.unit-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.unit-circle::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(225, 1, 1, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: circlePulse 2s ease-in-out infinite;
}

@keyframes circlePulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

/* Enhanced Number with Tick Effect */
.unit-number {
    font-family: 'Courier New', monospace;
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(225, 1, 1, 0.5);
    transition: all 0.3s ease;
}

.unit-number.countdown-tick {
    animation: tickPulse 0.28s ease;
    color: #e10100;
    text-shadow: 0 0 30px rgba(225, 1, 1, 0.8);
}

@keyframes tickPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Circle Fill Enhancement */
.circle-fill {
    stroke: url(#countdown-gradient);
    stroke-width: 4;
    stroke-linecap: round;
    filter: drop-shadow(0 0 6px rgba(225, 1, 1, 0.6));
    transition: stroke-dashoffset 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.circle-bg {
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 4;
}

/* Enhanced Vintage Watch */
.vintage-clock-watch {
    position: relative;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #0a0a0a 0%, #050505 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow: 
        0 0 0 4px rgba(225, 1, 1, 0.1),
        0 0 30px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(225, 1, 1, 0.05);
}

.vintage-clock-watch::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(225, 1, 1, 0.2);
    border-radius: 50%;
    animation: watchRing 4s ease-in-out infinite;
}

@keyframes watchRing {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.02); }
}

/* Watch Hands Enhancement */
.watch-hand {
    position: absolute;
    background: linear-gradient(180deg, #e10100, #ff1a1a);
    transform-origin: bottom center;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(225, 1, 1, 0.4);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.watch-hand-hours {
    width: 4px;
    height: 50px;
    top: 50px;
    left: calc(50% - 2px);
}

.watch-hand-mins {
    width: 3px;
    height: 70px;
    top: 30px;
    left: calc(50% - 1.5px);
}

.watch-hand-secs {
    width: 2px;
    height: 80px;
    top: 20px;
    left: calc(50% - 1px);
    background: #ff1a1a;
    box-shadow: 0 0 15px rgba(255, 26, 26, 0.6);
}

.watch-center-dot {
    width: 12px;
    height: 12px;
    background: #e10100;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(225, 1, 1, 0.5);
    z-index: 10;
}

/* Days Display Enhancement */
.watch-days-display {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.days-number {
    font-family: 'Courier New', monospace;
    font-size: 28px;
    font-weight: 900;
    color: #e10100;
    text-shadow: 0 0 10px rgba(225, 1, 1, 0.5);
    display: block;
    line-height: 1;
}

.days-label {
    font-size: 10px;
    font-weight: 900;
    color: #8b8989;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Content Card Enhancement */
.countdown-content-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.countdown-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e10100, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.countdown-content-card:hover::before {
    opacity: 1;
}

.countdown-badge {
    position: relative;
    overflow: hidden;
}

.countdown-badge .badge-pulse {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* Button Enhancement */
.btn-countdown {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-countdown.btn-primary {
    background: linear-gradient(135deg, #e10100 0%, #b30000 100%);
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(225, 1, 1, 0.3);
}

.btn-countdown.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 1, 1, 0.4);
}

.btn-countdown.btn-primary:active {
    transform: translateY(0);
}

.btn-countdown.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-countdown.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(225, 1, 1, 0.4);
    color: #e10100;
}

/* Meta Item Enhancement */
.meta-item {
    position: relative;
    padding: 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.meta-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.meta-item .meta-icon {
    transition: all 0.3s ease;
}

.meta-item:hover .meta-icon {
    color: #e10100;
    transform: scale(1.1);
}

/* Placeholder Enhancement */
.countdown-placeholder {
    position: relative;
}

.countdown-placeholder .placeholder-icon {
    position: relative;
}

.countdown-placeholder .placeholder-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(225, 1, 1, 0.2);
    border-radius: 50%;
    animation: placeholderPulse 2s ease-in-out infinite;
}

@keyframes placeholderPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

/* Responsive Enhancements */
@media (max-width: 991px) {
    .unit-circle {
        width: 100px;
        height: 100px;
    }
    
    .unit-number {
        font-size: 36px;
    }
    
    .vintage-clock-watch {
        width: 160px;
        height: 160px;
    }
    
    .watch-hand-hours { height: 40px; top: 40px; }
    .watch-hand-mins { height: 55px; top: 25px; }
    .watch-hand-secs { height: 65px; top: 15px; }
    
    .days-number {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .unit-circle {
        width: 80px;
        height: 80px;
    }
    
    .unit-number {
        font-size: 28px;
    }
    
    .unit-label {
        font-size: 10px;
    }
    
    .vintage-clock-watch {
        width: 120px;
        height: 120px;
    }
    
    .watch-hand-hours { height: 30px; top: 30px; width: 3px; }
    .watch-hand-mins { height: 40px; top: 20px; width: 2px; }
    .watch-hand-secs { height: 50px; top: 10px; width: 2px; }
    
    .days-number {
        font-size: 20px;
    }
    
    .days-label {
        font-size: 8px;
    }
}
/* ============================================
   CATEGORIES PERFECTION - MATRIX HOVER EFFECTS
   ============================================ */

/* Enhanced Category Node with Corner Accents */
.category-node {
    position: relative;
    flex: 1;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.category-node::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-top: 2px solid rgba(225, 1, 1, 0);
    border-left: 2px solid rgba(225, 1, 1, 0);
    transition: all 0.3s ease;
    z-index: 10;
}

.category-node::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid rgba(225, 1, 1, 0);
    border-right: 2px solid rgba(225, 1, 1, 0);
    transition: all 0.3s ease;
    z-index: 10;
}

.category-node.node-expanded::before {
    border-top-color: rgba(225, 1, 1, 0.8);
    border-left-color: rgba(225, 1, 1, 0.8);
}

.category-node.node-expanded::after {
    border-bottom-color: rgba(225, 1, 1, 0.8);
    border-right-color: rgba(225, 1, 1, 0.8);
}

/* Enhanced Glitch Effect */
.node-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(225, 1, 1, 0.05), transparent);
    pointer-events: none;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 7;
}

.category-node:hover .node-glitch {
    transform: translateX(100%);
}

/* Enhanced Node Number */
.node-num {
    font-size: 10px;
    font-weight: 900;
    color: #e10100;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.category-node:hover .node-num {
    color: #ff1a1a;
    text-shadow: 0 0 10px rgba(225, 1, 1, 0.5);
}

/* Enhanced Node Name */
.node-name {
    font-size: 18px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    transform: rotate(-90deg);
    white-space: nowrap;
    transition: all 0.4s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.category-node.node-expanded .node-name {
    transform: none;
    font-size: 24px;
}

/* Enhanced Category Icon */
.cat-icon {
    font-size: 60px;
    color: #e10100;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    text-shadow: 0 0 20px rgba(225, 1, 1, 0.3);
}

.category-node:hover .cat-icon {
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(225, 1, 1, 0.5);
}

/* Enhanced Expanded Name */
.exp-name {
    font-size: 42px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.category-node:hover .exp-name {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Enhanced Stats */
.exp-stats {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.exp-stats .val {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.exp-stats .lbl {
    font-size: 10px;
    color: #888;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Enhanced Button */
.exp-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #e10100 0%, #b30000 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 1, 1, 0.3);
    border: 1px solid rgba(225, 1, 1, 0.3);
    position: relative;
    overflow: hidden;
}

.exp-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;
}

.exp-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.exp-btn:hover::before {
    left: 100%;
}

.exp-btn:active {
    transform: translateY(-2px);
}

/* Enhanced Grid Mesh */
.grid-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    animation: meshPulse 4s ease-in-out infinite;
}

@keyframes meshPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Enhanced Protocol Header */
.protocol-header-centered {
    position: relative;
}

.scan-line-horizontal {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: #e10100;
    box-shadow: 0 0 15px #e10100;
    animation: scan-p-h 2.5s infinite ease-in-out;
}

@keyframes scan-p-h {
    0%, 100% { width: 50px; opacity: 0.5; }
    50% { width: 150px; opacity: 1; }
}

.tag {
    display: block;
    font-size: 10px;
    font-weight: 900;
    color: #444;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.headline {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.protocol-abstract {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 15px;
}

/* Enhanced Header Divider */
.header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.header-divider .line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e10100, transparent);
}

.header-divider .diamond {
    width: 8px;
    height: 8px;
    background: #e10100;
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(225, 1, 1, 0.5);
}

/* Empty State Enhancement */
.matrix-empty {
    padding: 80px 20px;
}

.matrix-empty .empty-icon {
    font-size: 64px;
    color: #e10100;
    margin-bottom: 20px;
    opacity: 0.5;
    animation: emptyPulse 2s ease-in-out infinite;
}

@keyframes emptyPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

/* Responsive Enhancements */
@media (max-width: 991px) {
    .category-grid {
        flex-direction: column;
        height: auto;
        gap: 10px;
    }
    
    .category-node {
        height: 100px;
    }
    
    .category-node.node-expanded {
        height: 400px;
    }
    
    .node-name {
        transform: none;
        bottom: 20px;
    }
    
    .exp-name {
        font-size: 32px;
    }
    
    .exp-stats .val {
        font-size: 28px;
    }
    
    .cat-icon {
        font-size: 48px;
    }
    
    .headline {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .headline {
        font-size: 28px;
    }
    
    .exp-name {
        font-size: 24px;
    }
    
    .exp-stats .val {
        font-size: 24px;
    }
    
    .exp-btn {
        padding: 12px 25px;
        font-size: 10px;
    }
    
    .category-node.node-expanded {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 24px;
    }
    
    .exp-name {
        font-size: 20px;
    }
    
    .cat-icon {
        font-size: 36px;
    }
    
    .exp-stats {
        padding: 10px 15px;
    }
    
    .exp-stats .val {
        font-size: 20px;
    }
}
/* ============================================
   FEATURED EVENTS PERFECTION - CARD ENHANCEMENTS
   ============================================ */

/* Enhanced Event Card with Depth */
.tactile-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.tactile-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(225, 1, 1, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-color: rgba(225, 1, 1, 0.15);
}

/* Card Image Sector Enhancement */
.card-image-sector {
    position: relative;
    overflow: hidden;
}

.card-image-sector::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(5,5,5,0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tactile-card:hover .card-image-sector::after {
    opacity: 0.3;
}

.card-img-main {
    transition: transform 0.6s ease;
}

.tactile-card:hover .card-img-main {
    transform: scale(1.08);
}

/* Enhanced Badges */
.card-badges-tactile {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge-node {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.badge-node.featured {
    background: linear-gradient(135deg, rgba(225, 1, 1, 0.9), rgba(179, 0, 0, 0.9));
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(225, 1, 1, 0.3);
}

.badge-node.free {
    background: rgba(255, 255, 255, 0.95);
    color: #e10100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tactile-card:hover .badge-node {
    transform: translateX(4px);
}

/* Enhanced Date Badge */
.card-date-tactile {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    padding: 10px 14px;
    text-align: center;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.tactile-card:hover .card-date-tactile {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.card-date-tactile .day {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: #e10100;
    line-height: 1;
}

.card-date-tactile .month {
    display: block;
    font-size: 10px;
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Enhanced Action Buttons */
.card-actions-tactile {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 12px;
    z-index: 20;
    opacity: 0;
    transition: all 0.4s ease;
}

.tactile-card:hover .card-actions-tactile {
    opacity: 1;
    top: 45%;
}

.action-btn-tactile {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.action-btn-tactile:hover {
    transform: scale(1.15);
    background: #e10100;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(225, 1, 1, 0.4);
}

.action-btn-tactile.active {
    background: #e10100;
    color: #ffffff;
}

/* Enhanced Card Data Sector */
.card-data-sector {
    padding: 20px;
    position: relative;
}

.category-tag-tactile {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 900;
    color: #8b8989;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.tactile-card:hover .category-tag-tactile {
    color: #e10100;
}

.category-tag-tactile i {
    font-size: 14px;
}

/* Price Engine Enhancement */
.price-engine-tactile {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #e10100, #b30000);
    padding: 8px 16px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(225, 1, 1, 0.3);
    transition: all 0.3s ease;
}

.tactile-card:hover .price-engine-tactile {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(225, 1, 1, 0.4);
}

.price-engine-tactile .val {
    font-size: 14px;
    font-weight: 900;
    color: #ffffff;
}

/* Enhanced Card Title */
.card-title-tactile {
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 12px;
}

.card-title-tactile a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-title-tactile a:hover {
    color: #e10100;
}

/* Enhanced Meta Info */
.card-meta-tactile {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.meta-node {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #8b8989;
    transition: all 0.3s ease;
}

.meta-node i {
    font-size: 14px;
    color: #e10100;
    transition: all 0.3s ease;
}

.tactile-card:hover .meta-node {
    color: #c8c6c5;
}

/* Enhanced Origin Sector */
.card-origin-sector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.01);
}

.origin-node {
    display: flex;
    align-items: center;
    gap: 12px;
}

.origin-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(225, 1, 1, 0.3);
    transition: all 0.3s ease;
}

.tactile-card:hover .origin-avatar {
    border-color: rgba(225, 1, 1, 0.6);
    transform: scale(1.1);
}

.origin-info .name {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.origin-info .label {
    font-size: 10px;
    color: #8b8989;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Enhanced Access Button */
.tactile-access-btn {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #e10100;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tactile-access-btn:hover {
    background: #e10100;
    border-color: #e10100;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(225, 1, 1, 0.3);
}

/* Section Header Enhancement */
.section-header-tactile {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(225, 1, 1, 0.1);
    border: 1px solid rgba(225, 1, 1, 0.2);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 900;
    color: #e10100;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-title span {
    color: #e10100;
}

/* Responsive Enhancements */
@media (max-width: 991px) {
    .section-title {
        font-size: 36px;
    }
    
    .card-title-tactile {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 28px;
    }
    
    .card-date-tactile {
        padding: 8px 12px;
    }
    
    .card-date-tactile .day {
        font-size: 20px;
    }
    
    .tactile-card:hover {
        transform: translateY(-4px);
    }
}
/* ============================================
   STARTING SOON PERFECTION - CARD ENHANCEMENTS
   ============================================ */

/* Enhanced Starting Soon Card */
.starting-soon-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.starting-soon-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(225, 1, 1, 0.1);
    border-color: rgba(225, 1, 1, 0.15);
}

/* Enhanced Image Sector */
.ss-image-sector {
    position: relative;
    overflow: hidden;
}

.ss-image-sector::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(5,5,5,0.9) 100%);
    pointer-events: none;
}

.ss-image-sector img {
    transition: transform 0.6s ease;
}

.starting-soon-card:hover .ss-image-sector img {
    transform: scale(1.08);
}

/* Enhanced Urgency Badge */
.ss-urgency-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #e10100, #b30000);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(225, 1, 1, 0.4);
    z-index: 10;
    animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(225, 1, 1, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(225, 1, 1, 0.6); }
}

/* Enhanced Timer Strip */
.ss-timer-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(225, 1, 1, 0.9), rgba(179, 0, 0, 0.9));
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 10;
}

.ss-timer-item {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.ss-timer-value {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Courier New', monospace;
}

.ss-timer-label {
    font-size: 10px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.ss-timer-separator {
    font-size: 16px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.5);
}

/* Enhanced Content Sector */
.ss-content-sector {
    padding: 20px;
}

.ss-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 900;
    color: #e10100;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.ss-title {
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.starting-soon-card:hover .ss-title {
    color: #e10100;
}

.ss-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.ss-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #8b8989;
}

.ss-meta-item i {
    font-size: 14px;
    color: #e10100;
}

/* Enhanced Action Button */
.ss-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: transparent;
    border: 1px solid rgba(225, 1, 1, 0.3);
    border-radius: 4px;
    color: #e10100;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ss-action-btn:hover {
    background: #e10100;
    border-color: #e10100;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(225, 1, 1, 0.3);
}

/* ============================================
   TESTIMONIALS PERFECTION - TRUST ENHANCEMENT
   ============================================ */

/* Enhanced Testimonial Section */
.testimonial-section {
    position: relative;
    background: #050505;
    overflow: hidden;
}

.testimonial-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Enhanced Testimonial Card */
.testimonial-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(225, 1, 1, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Quote Icon Enhancement */
.testimonial-quote-icon {
    font-size: 48px;
    color: rgba(225, 1, 1, 0.2);
    line-height: 1;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-quote-icon {
    color: rgba(225, 1, 1, 0.4);
    transform: scale(1.1);
}

/* Enhanced Quote Text */
.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #c8c6c5;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-text::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #e10100, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .testimonial-text::before {
    opacity: 0.3;
}

/* Enhanced Author Info */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(225, 1, 1, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    border-color: rgba(225, 1, 1, 0.5);
    transform: scale(1.1);
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 12px;
    color: #8b8989;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.testimonial-rating i {
    font-size: 14px;
    color: #e10100;
}

/* Enhanced Section Header */
.testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(225, 1, 1, 0.1);
    border: 1px solid rgba(225, 1, 1, 0.2);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 900;
    color: #e10100;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.testimonial-title {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.testimonial-title span {
    color: #e10100;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 32px;
    font-weight: 900;
    color: #e10100;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 11px;
    color: #8b8989;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Responsive Enhancements */
@media (max-width: 991px) {
    .testimonial-title {
        font-size: 36px;
    }
    
    .trust-indicators {
        gap: 30px;
    }
    
    .trust-number {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .testimonial-title {
        font-size: 28px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 20px;
    }
    
    .ss-title {
        font-size: 16px;
    }
    
    .ss-timer-value {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .testimonial-title {
        font-size: 24px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 13px;
    }
    
    .ss-urgency-badge {
        font-size: 10px;
        padding: 6px 10px;
    }
}
/* ============================================
   EVENTS PAGE PERFECTION - FILTERS & SEARCH
   ============================================ */

/* Enhanced Page Header */
.events-page-header {
    position: relative;
    padding: 80px 0 40px;
    background: linear-gradient(180deg, rgba(5,5,5,0) 0%, rgba(5,5,5,1) 100%);
}

.events-page-title {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.events-page-title span {
    color: #e10100;
}

.events-page-subtitle {
    font-size: 16px;
    color: #8b8989;
    max-width: 600px;
}

/* Enhanced Filter Bar */
.events-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(145deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-bottom: 40px;
}

/* Enhanced Search Input */
.events-search-wrapper {
    position: relative;
    flex: 1;
    min-width: 280px;
}

.events-search-input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.events-search-input:focus {
    outline: none;
    border-color: rgba(225, 1, 1, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(225, 1, 1, 0.1);
}

.events-search-input::placeholder {
    color: #666;
}

.events-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #666;
    transition: all 0.3s ease;
}

.events-search-wrapper:focus-within .events-search-icon {
    color: #e10100;
}

/* Enhanced Filter Selects */
.events-filter-select {
    position: relative;
    min-width: 180px;
}

.events-filter-select select {
    width: 100%;
    padding: 14px 40px 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s ease;
}

.events-filter-select::after {
    content: '\f107';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    transition: all 0.3s ease;
}

.events-filter-select:hover select,
.events-filter-select select:focus {
    border-color: rgba(225, 1, 1, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.events-filter-select:hover::after {
    color: #e10100;
}

/* Enhanced Date Range Picker */
.events-date-range {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.events-date-range:hover {
    border-color: rgba(225, 1, 1, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.events-date-range i {
    font-size: 18px;
    color: #e10100;
}

.events-date-range span {
    font-size: 14px;
    color: #ffffff;
}

/* Enhanced Filter Tags */
.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(225, 1, 1, 0.1);
    border: 1px solid rgba(225, 1, 1, 0.2);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #e10100;
    transition: all 0.3s ease;
}

.filter-tag:hover {
    background: rgba(225, 1, 1, 0.2);
}

.filter-tag .remove {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(225, 1, 1, 0.3);
    color: #ffffff;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tag .remove:hover {
    background: #e10100;
}

/* Enhanced Results Header */
.events-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.events-count {
    font-size: 14px;
    color: #8b8989;
}

.events-count strong {
    color: #ffffff;
    font-weight: 900;
}

/* Enhanced Sort Dropdown */
.events-sort {
    display: flex;
    align-items: center;
    gap: 12px;
}

.events-sort label {
    font-size: 13px;
    color: #666;
}

.events-sort select {
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.events-sort select:hover,
.events-sort select:focus {
    border-color: rgba(225, 1, 1, 0.3);
    outline: none;
}

/* Enhanced View Toggle */
.view-toggle {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px;
    border-radius: 4px;
}

.view-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #666;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover {
    color: #e10100;
    background: rgba(255, 255, 255, 0.03);
}

.view-btn.active {
    color: #ffffff;
    background: #e10100;
}

/* Enhanced Event Cards Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* Enhanced Loading State */
.events-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.events-loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.05);
    border-top-color: #e10100;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.events-loading-text {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

/* Enhanced Empty State */
.events-empty {
    text-align: center;
    padding: 80px 20px;
}

.events-empty-icon {
    font-size: 80px;
    color: rgba(225, 1, 1, 0.2);
    margin-bottom: 24px;
}

.events-empty-title {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
}

.events-empty-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.events-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #e10100, #b30000);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.events-empty-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 1, 1, 0.3);
}

/* Enhanced Pagination */
.events-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pagination-btn {
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    border-color: rgba(225, 1, 1, 0.3);
    color: #e10100;
}

.pagination-btn.active {
    background: #e10100;
    border-color: #e10100;
    color: #ffffff;
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Responsive Enhancements */
@media (max-width: 991px) {
    .events-page-title {
        font-size: 36px;
    }
    
    .events-filter-bar {
        flex-direction: column;
    }
    
    .events-search-wrapper {
        min-width: 100%;
    }
    
    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 767px) {
    .events-page-title {
        font-size: 28px;
    }
    
    .events-results-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .events-pagination {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .events-page-title {
        font-size: 24px;
    }
    
    .events-filter-bar {
        padding: 16px;
    }
    
    .events-filter-select {
        min-width: 100%;
    }
}
/* ============================================
   ORGANIZERS PAGE PERFECTION - CARD DEPTH
   ============================================ */

/* Enhanced Organizers Page Header */
.organizers-page-header {
    position: relative;
    padding: 80px 0 40px;
    text-align: center;
}

.organizers-page-title {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.organizers-page-title span {
    color: #e10100;
}

.organizers-page-subtitle {
    font-size: 16px;
    color: #8b8989;
}

/* Enhanced Organizer Card */
.organizer-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.organizer-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(225, 1, 1, 0.1);
    border-color: rgba(225, 1, 1, 0.15);
}

/* Enhanced Cover Image */
.organizer-cover {
    position: relative;
    height: 120px;
    overflow: hidden;
}

.organizer-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(5,5,5,0.9) 100%);
}

.organizer-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.organizer-card:hover .organizer-cover img {
    transform: scale(1.08);
}

/* Enhanced Avatar with Border Ring */
.organizer-avatar-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: -45px auto 0;
    z-index: 10;
}

.organizer-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #050505;
    box-shadow: 0 0 0 2px rgba(225, 1, 1, 0.3);
    transition: all 0.3s ease;
}

.organizer-card:hover .organizer-avatar {
    box-shadow: 0 0 0 3px rgba(225, 1, 1, 0.6);
    transform: scale(1.05);
}

.organizer-avatar-ring {
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(225, 1, 1, 0.2);
    border-radius: 50%;
    animation: avatarRing 3s ease-in-out infinite;
}

@keyframes avatarRing {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

/* Enhanced Organizer Info */
.organizer-info {
    padding: 20px;
    text-align: center;
}

.organizer-name {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.organizer-card:hover .organizer-name {
    color: #e10100;
}

.organizer-role {
    font-size: 12px;
    color: #8b8989;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

/* Enhanced Stats */
.organizer-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 16px;
}

.organizer-stat {
    text-align: center;
}

.organizer-stat-value {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.organizer-card:hover .organizer-stat-value {
    color: #e10100;
}

.organizer-stat-label {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Enhanced Follow Button */
.organizer-follow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: transparent;
    border: 1px solid rgba(225, 1, 1, 0.3);
    border-radius: 4px;
    color: #e10100;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.organizer-follow-btn:hover {
    background: #e10100;
    border-color: #e10100;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(225, 1, 1, 0.3);
}

.organizer-follow-btn.following {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.organizer-follow-btn.following:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Enhanced Badge */
.organizer-verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background: #e10100;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #ffffff;
    border: 2px solid #050505;
    box-shadow: 0 0 10px rgba(225, 1, 1, 0.5);
}

/* Grid Layout */
.organizers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* ============================================
   CONTACT PAGE PERFECTION - FORM SMOOTHNESS
   ============================================ */

/* Enhanced Contact Page Layout */
.contact-page {
    position: relative;
    padding: 80px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.contact-title span {
    color: #e10100;
}

.contact-subtitle {
    font-size: 16px;
    color: #8b8989;
}

/* Enhanced Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Enhanced Info Cards */
.contact-info-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.contact-info-card:hover {
    border-color: rgba(225, 1, 1, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: rgba(225, 1, 1, 0.1);
    border: 1px solid rgba(225, 1, 1, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #e10100;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: rgba(225, 1, 1, 0.2);
    transform: scale(1.1);
}

.contact-info-title {
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-info-text {
    font-size: 14px;
    color: #8b8989;
    line-height: 1.6;
}

/* Enhanced Form Container */
.contact-form-wrapper {
    background: linear-gradient(145deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    padding: 40px;
}

.contact-form-title {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Enhanced Form Fields */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #8b8989;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(225, 1, 1, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(225, 1, 1, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #666;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* Enhanced Submit Button */
.contact-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #e10100, #b30000);
    border: none;
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 1, 1, 0.3);
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 1, 1, 0.4);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

/* Enhanced FAQ Section */
.faq-section {
    margin-top: 80px;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.faq-title span {
    color: #e10100;
}

/* Enhanced FAQ Items */
.faq-item {
    background: linear-gradient(145deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(225, 1, 1, 0.15);
}

.faq-item.active {
    border-color: rgba(225, 1, 1, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question-text {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question-text,
.faq-item.active .faq-question-text {
    color: #e10100;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-toggle {
    background: rgba(225, 1, 1, 0.1);
    color: #e10100;
}

.faq-item.active .faq-toggle {
    background: #e10100;
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 30px 24px;
    font-size: 14px;
    color: #8b8989;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-title,
    .organizers-page-title {
        font-size: 36px;
    }
    
    .faq-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .contact-info-card {
        padding: 20px;
    }
    
    .organizers-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-title,
    .organizers-page-title {
        font-size: 28px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-title,
    .organizers-page-title {
        font-size: 24px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 16px;
    }
    
    .organizer-avatar-wrapper {
        width: 70px;
        height: 70px;
        margin-top: -35px;
    }
}
/* ============================================
   FINAL CONSISTENCY & RESPONSIVE PERFECTION
   ============================================ */

/* ============================================
   GLOBAL CONSISTENCY
   ============================================ */

/* Consistent Section Spacing */
.py-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (max-width: 991px) {
    .py-120 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .py-120 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* Consistent Container */
.container {
    max-width: 1320px;
    padding-left: 24px;
    padding-right: 24px;
}

@media (max-width: 767px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ============================================
   BUTTON CONSISTENCY
   ============================================ */

/* Primary Button Standard */
.btn-primary,
.ultra-cta-btn,
.exp-btn,
.events-empty-btn,
.contact-submit-btn,
.tactile-access-btn {
    border-radius: 4px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Secondary Button Standard */
.btn-secondary,
.ss-action-btn,
.organizer-follow-btn,
.events-filter-select select,
.pagination-btn {
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Button Hover Standard */
.btn-primary:hover,
.ultra-cta-btn:hover,
.exp-btn:hover,
.events-empty-btn:hover,
.contact-submit-btn:hover,
.ss-action-btn:hover,
.organizer-follow-btn:hover {
    transform: translateY(-2px);
}

.btn-primary:active,
.ultra-cta-btn:active,
.exp-btn:active,
.events-empty-btn:active,
.contact-submit-btn:active,
.ss-action-btn:active,
.organizer-follow-btn:active {
    transform: translateY(0);
}

/* ============================================
   CARD CONSISTENCY
   ============================================ */

/* Card Border Radius Standard */
.tactile-card,
.starting-soon-card,
.testimonial-card,
.organizer-card,
.contact-info-card,
.contact-form-wrapper,
.faq-item,
.sync-card,
.expanded-city-card {
    border-radius: 4px;
}

/* Card Hover Standard */
.tactile-card,
.starting-soon-card,
.testimonial-card,
.organizer-card,
.contact-info-card,
.sync-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   FORM CONSISTENCY
   ============================================ */

/* Input Standard */
.form-input,
.form-textarea,
.events-search-input,
.events-filter-select select,
.contact-form-wrapper input,
.contact-form-wrapper textarea {
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.events-search-input:focus,
.events-filter-select select:focus {
    outline: none;
    border-color: rgba(225, 1, 1, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(225, 1, 1, 0.1);
}

/* ============================================
   TYPOGRAPHY CONSISTENCY
   ============================================ */

/* Section Title Standard */
.section-title,
.testimonial-title,
.headline,
.contact-title,
.organizers-page-title,
.events-page-title,
.faq-title {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Section Title Size Scale */
.section-title,
.testimonial-title,
.contact-title,
.organizers-page-title,
.events-page-title {
    font-size: 42px;
}

.headline {
    font-size: 48px;
}

.faq-title {
    font-size: 36px;
}

@media (max-width: 991px) {
    .section-title,
    .testimonial-title,
    .contact-title,
    .organizers-page-title,
    .events-page-title {
        font-size: 36px;
    }
    
    .headline {
        font-size: 42px;
    }
    
    .faq-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .section-title,
    .testimonial-title,
    .contact-title,
    .organizers-page-title,
    .events-page-title {
        font-size: 28px;
    }
    
    .headline {
        font-size: 36px;
    }
    
    .faq-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .section-title,
    .testimonial-title,
    .contact-title,
    .organizers-page-title,
    .events-page-title {
        font-size: 24px;
    }
    
    .headline {
        font-size: 28px;
    }
    
    .faq-title {
        font-size: 20px;
    }
}

/* ============================================
   BADGE CONSISTENCY
   ============================================ */

/* Badge Standard */
.badge-node,
.ss-urgency-badge,
.section-badge,
.testimonial-badge,
.organizers-badge,
.events-badge {
    border-radius: 4px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   MICRO-INTERACTIONS CONSISTENCY
   ============================================ */

/* Link Hover Standard */
a:not(.btn):not(.nav-link) {
    transition: color 0.3s ease;
}

a:not(.btn):not(.nav-link):hover {
    color: #e10100;
}

/* Icon Hover Standard */
.action-btn-tactile,
.tactile-access-btn,
.faq-toggle,
.view-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Image Scale Standard */
.card-img-main,
.ss-image-sector img,
.organizer-cover img {
    transition: transform 0.6s ease;
}

/* ============================================
   GRID CONSISTENCY
   ============================================ */

/* Grid Gap Standard */
.events-grid,
.organizers-grid {
    gap: 24px;
}

@media (max-width: 767px) {
    .events-grid,
    .organizers-grid {
        gap: 16px;
    }
}

/* ============================================
   RESPONSIVE BREAKPOINTS STANDARD
   ============================================ */

/* Desktop Large */
@media (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
}

/* Desktop */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    /* Stack columns on tablet */
    .contact-grid,
    .events-filter-bar {
        flex-direction: column;
    }
}

/* Mobile Landscape */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    /* Single column on mobile */
    .events-grid,
    .organizers-grid {
        grid-template-columns: 1fr;
    }
    
    /* Full width elements */
    .events-search-wrapper,
    .events-filter-select {
        min-width: 100%;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .container {
        max-width: 100%;
    }
    
    /* Reduce padding on small screens */
    .contact-form-wrapper,
    .contact-info-card {
        padding: 20px;
    }
    
    /* Smaller buttons */
    .btn-primary,
    .ultra-cta-btn,
    .exp-btn,
    .ss-action-btn,
    .organizer-follow-btn {
        padding: 12px 20px;
        font-size: 12px;
    }
}

/* ============================================
   ANIMATION TIMING CONSISTENCY
   ============================================ */

/* Fast Interactions */
.btn-primary,
.ultra-cta-btn,
.action-btn-tactile,
.tactile-access-btn,
.nav-link,
.faq-toggle {
    transition-duration: 0.3s;
}

/* Medium Interactions */
.tactile-card,
.starting-soon-card,
.testimonial-card,
.organizer-card,
.contact-info-card,
.sync-card {
    transition-duration: 0.4s;
}

/* Slow Interactions */
.card-img-main,
.ss-image-sector img,
.organizer-cover img {
    transition-duration: 0.6s;
}

/* ============================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================ */

/* Focus Visible */
*:focus-visible {
    outline: 2px solid #e10100;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   LOADING & EMPTY STATES CONSISTENCY
   ============================================ */

/* Loading Spinner Standard */
.events-loading-spinner,
.skeleton-loader {
    border-top-color: #e10100;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Empty State Standard */
.events-empty,
.matrix-empty {
    text-align: center;
    padding: 80px 20px;
}

.events-empty-icon,
.matrix-empty .empty-icon {
    font-size: 80px;
    color: rgba(225, 1, 1, 0.2);
    margin-bottom: 24px;
}

/* ============================================
   SCROLLBAR CONSISTENCY
   ============================================ */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e10100;
}

/* ============================================
   SELECTION CONSISTENCY
   ============================================ */

::selection {
    background: rgba(225, 1, 1, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(225, 1, 1, 0.3);
    color: #ffffff;
}
/* ============================================
   EVENLIO PLATFORM - COMPREHENSIVE FIXES
   Dark Mode + Responsive + UI States
   ============================================ */

/* ============================================
   1. DARK MODE TEXT CONTRAST FIXES
   ============================================ */

/* Fix all black text on black backgrounds */
.dark-text-fix,
.text-dark,
.text-black,
[class*="text-black"],
[class*="text-dark"] {
    color: #ffffff !important;
}

/* Ensure all text is readable on dark backgrounds */
.tactile-card,
.event-card-node,
.organizer-card,
.category-card,
.city-card,
.testimonial-card,
.how-it-works-card,
.stat-card,
.info-card {
    color: #ffffff;
}

.tactile-card h1,
.tactile-card h2,
.tactile-card h3,
.tactile-card h4,
.tactile-card h5,
.tactile-card h6,
.tactile-card p,
.tactile-card span,
.tactile-card div,
.event-card-node h3,
.event-card-node p,
.event-card-node span,
.organizer-card h4,
.organizer-card p,
.category-card h5,
.category-card p,
.city-card h4,
.city-card p,
.testimonial-card p,
.testimonial-card h5 {
    color: #ffffff;
}

/* Fix form inputs and labels */
.form-label,
.form-control,
.form-select,
.input-group-text,
.form-check-label {
    color: #ffffff !important;
}

.form-control,
.form-select {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.form-control:focus,
.form-select:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #e10100;
    color: #ffffff;
}

/* Fix placeholder text */
::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Fix any remaining low-contrast text */
.text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.text-secondary {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ============================================
   2. RESPONSIVE OPTIMIZATION - ALL BREAKPOINTS
   ============================================ */

/* Small phones: 320px - 375px */
@media (max-width: 375px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .hud-title {
        font-size: 20px !important;
    }
    
    .hud-game-frame {
        height: 40vh !important;
    }
    
    .event-card-node,
    .organizer-card,
    .category-card {
        min-width: 100%;
    }
    
    .tactile-card {
        padding: 16px;
    }
    
    .card-title-tactile {
        font-size: 16px;
    }
    
    .hud-stats-panel {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
    
    .hud-stat-card {
        padding: 12px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .frame-expand {
        width: 36px;
        height: 36px;
    }
}

/* Standard phones: 375px - 480px */
@media (min-width: 376px) and (max-width: 480px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .hud-title {
        font-size: 22px !important;
    }
    
    .hud-game-frame {
        height: 45vh !important;
    }
    
    .hud-stats-panel {
        grid-template-columns: 1fr !important;
    }
    
    .events-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Large phones: 480px - 768px */
@media (min-width: 481px) and (max-width: 768px) {
    .hud-title {
        font-size: 26px !important;
    }
    
    .hud-game-frame {
        height: 50vh !important;
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .hud-stats-panel {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Tablet: 768px - 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .hud-title {
        font-size: 30px !important;
    }
    
    .hud-game-frame {
        height: 55vh !important;
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .sidebar {
        position: relative;
        width: 100%;
        margin-bottom: 24px;
    }
}

/* Desktop: 1024px+ */
@media (min-width: 1025px) {
    .hud-game-frame {
        height: 65vh;
    }
    
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   3. TOUCH UX - MINIMUM 44px TOUCH TARGETS
   ============================================ */

button,
.btn,
.action-btn-tactile,
.tactile-access-btn,
.nav-link,
.dropdown-item,
.form-check-input,
.frame-expand,
.hud-exit-btn,
.hud-action-btn {
    min-height: 44px;
    min-width: 44px;
}

/* Ensure proper spacing between touch elements */
.nav-item,
.action-btn-tactile,
.tactile-access-btn {
    margin: 4px;
}

/* Fix small touch targets */
.stat-icon {
    min-width: 44px;
    min-height: 44px;
}

.pulse-dot,
.status-dot {
    min-width: 8px;
    min-height: 8px;
}

/* ============================================
   4. LOADING / EMPTY / ERROR / SUCCESS STATES
   ============================================ */

/* Loading State */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.loading-state .spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(225, 1, 1, 0.2);
    border-top-color: #e10100;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-state p {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Empty State */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.empty-state .empty-icon {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.empty-state h4 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 20px;
}

.empty-state p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 400px;
    margin-bottom: 24px;
}

/* Error State */
.error-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    background: rgba(225, 1, 1, 0.05);
    border: 1px solid rgba(225, 1, 1, 0.2);
    border-radius: 8px;
}

.error-state .error-icon {
    font-size: 64px;
    color: #e10100;
    margin-bottom: 20px;
}

.error-state h4 {
    color: #e10100;
    margin-bottom: 12px;
}

.error-state p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.error-state .retry-btn {
    background: rgba(225, 1, 1, 0.1);
    border: 1px solid rgba(225, 1, 1, 0.3);
    color: #e10100;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.error-state .retry-btn:hover {
    background: rgba(225, 1, 1, 0.2);
}

/* Success State */
.success-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 8px;
}

.success-state .success-icon {
    font-size: 48px;
    color: #22c55e;
    margin-bottom: 16px;
}

.success-state p {
    color: #22c55e;
    font-weight: 600;
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-card {
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
}

.skeleton-image {
    height: 160px;
    width: 100%;
}

.skeleton-title {
    height: 20px;
    width: 70%;
    margin: 16px;
}

.skeleton-text {
    height: 14px;
    width: 90%;
    margin: 0 16px 8px;
}

/* ============================================
   5. HOVER TO TAP CONVERSION (MOBILE)
   ============================================ */

@media (hover: none) and (pointer: coarse) {
    /* Convert hover effects to tap/active states */
    .tactile-card:hover,
    .event-card-node:hover,
    .organizer-card:hover,
    .category-card:hover,
    .city-card:hover {
        transform: none;
    }
    
    .tactile-card:active,
    .event-card-node:active,
    .organizer-card:active,
    .category-card:active,
    .city-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .action-btn-tactile:hover,
    .tactile-access-btn:hover {
        background: transparent;
    }
    
    .action-btn-tactile:active,
    .tactile-access-btn:active {
        background: rgba(225, 1, 1, 0.2);
    }
    
    /* Disable complex animations on mobile */
    .hud-scan-line {
        animation: none;
        opacity: 0.3;
    }
    
    .scan-line {
        animation: none;
    }
}

/* ============================================
   6. PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Optimize scrolling */
html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   7. ACCESSIBILITY IMPROVEMENTS
   ============================================ */

/* Focus indicators */
:focus-visible {
    outline: 2px solid #e10100;
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid #e10100;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .tactile-card,
    .event-card-node,
    .organizer-card {
        border: 2px solid rgba(255, 255, 255, 0.5);
    }
    
    .form-control,
    .form-select {
        border: 2px solid rgba(255, 255, 255, 0.5);
    }
}

/* ============================================
   8. MICRO-INTERACTIONS
   ============================================ */

/* Smooth transitions for all interactive elements */
button,
a,
.tactile-card,
.form-control,
.form-select {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Button press feedback */
.btn:active,
button:active,
.action-btn-tactile:active,
.tactile-access-btn:active,
.hud-action-btn:active {
    transform: scale(0.95);
}

/* Card elevation on hover (desktop only) */
@media (hover: hover) {
    .tactile-card:hover,
    .event-card-node:hover,
    .organizer-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    }
}

/* ============================================
   9. LAYOUT FIXES
   ============================================ */

/* Prevent overflow */
body {
    overflow-x: hidden;
}

/* Fix sidebar on mobile */
@media (max-width: 768px) {
    .sidebar-filter {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: #0a0a0a;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 16px;
        transform: translateY(calc(100% - 60px));
        transition: transform 0.3s ease;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .sidebar-filter.expanded {
        transform: translateY(0);
    }
    
    .sidebar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px;
        background: #e10100;
        color: white;
        font-weight: 600;
        cursor: pointer;
    }
}

/* Fix grid layouts */
.events-grid,
.organizers-grid,
.categories-grid,
.cities-grid {
    display: grid;
    gap: 20px;
}

/* ============================================
   10. FORM IMPROVEMENTS
   ============================================ */

/* Better form spacing */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ffffff;
}

/* Input states */
.form-control.is-valid {
    border-color: #22c55e;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='2'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

.form-control.is-invalid {
    border-color: #e10100;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23e10100' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='15' y1='9' x2='9' y2='15'%3E%3C/line%3E%3Cline x1='9' y1='9' x2='15' y2='15'%3E%3C/line%3E%3C/svg%3E");
}

/* Character count */
.char-count {
    text-align: right;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.char-count.warning {
    color: #f59e0b;
}

.char-count.error {
    color: #e10100;
}
/* ============================================
   EVENLIO PLATFORM - DESIGN SYSTEM & VISUAL UPGRADE
   Tactile-Futurism Design Language
   ============================================ */

:root {
    --obsidian-black: #000000;
    --obsidian-deep: #050505;
    --obsidian-surface: #0a0a0a;
    --crimson-red: #e10100;
    --crimson-glow: rgba(225, 1, 1, 0.4);
    --stark-white: #ffffff;
    --muted-gray: #888888;
    --deep-gray: #444444;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --transition-speed: 0.3s;
}

/* ============================================
   1. GLOBAL COMPONENT UPGRADES
   ============================================ */

/* Premium Cards */
.tactile-card, .event-card-node, .organizer-card, .category-node, .city-card-inner, .testimonial-node-card {
    background: var(--obsidian-surface);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all var(--transition-speed) cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.tactile-card:hover, .event-card-node:hover, .organizer-card:hover, .city-card-inner:hover, .testimonial-node-card:hover {
    transform: translateY(-8px);
    border-color: rgba(225, 1, 1, 0.3);
    box-shadow: 0 20px 50px rgba(225, 1, 1, 0.15);
}

/* Tactile Buttons */
.tactile-btn, .btn-modern, .btn--base, .exp-btn, .tactile-btn-red, .tactile-access-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: 2px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    overflow: hidden;
}

.tactile-btn-red, .btn-primary {
    background: var(--crimson-red);
    color: white;
    box-shadow: 0 4px 15px var(--crimson-glow);
}

.tactile-btn-red:hover, .btn-primary:hover {
    background: white;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.tactile-btn-red:active, .btn-primary:active {
    transform: translateY(1px);
}

/* Premium Form Inputs */
.form-control, .form-select {
    background: var(--obsidian-deep) !important;
    border: 1px solid var(--glass-border) !important;
    color: var(--stark-white) !important;
    padding: 14px 20px !important;
    border-radius: 2px !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

.form-control:focus, .form-select:focus {
    border-color: var(--crimson-red) !important;
    box-shadow: 0 0 15px var(--crimson-glow) !important;
    outline: none !important;
}

/* ============================================
   2. SECTION-SPECIFIC ENHANCEMENTS
   ============================================ */

/* Hero Section Depth */
.modern-hero-banner {
    background: var(--obsidian-black);
    position: relative;
}

.hero-bg-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, var(--obsidian-black) 90%);
}

.hero-title {
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

/* Category Matrix upgrade */
.category-node {
    filter: grayscale(0.5);
}

.category-node.node-expanded, .category-node:hover {
    filter: grayscale(0);
}

/* Testimonial Glitch Effect */
.node-glitch-layer {
    background: linear-gradient(90deg, transparent, rgba(225, 1, 1, 0.05), transparent);
    width: 200%;
}

/* How It Works Timeline */
.sync-line {
    background: linear-gradient(to bottom, transparent, var(--crimson-red), transparent);
    opacity: 0.3;
}

/* ============================================
   3. ANIMATIONS
   ============================================ */

[data-aos] {
    transition-duration: 800ms !important;
}

@keyframes scan-line {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.scan-line {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: var(--crimson-red);
    box-shadow: 0 0 15px var(--crimson-red);
    opacity: 0.2;
    animation: scan-line 4s linear infinite;
    pointer-events: none;
}

/* Smooth transitions for all interactive elements */
a, button, input, .tactile-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   4. MICRO-DESIGN REFINEMENTS
   ============================================ */

/* Typography Scale */
h1 { font-size: clamp(48px, 8vw, 92px); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(32px, 5vw, 48px); font-weight: 900; letter-spacing: -0.01em; }
h3 { font-size: 24px; font-weight: 800; }
p { line-height: 1.6; color: var(--muted-gray); }

/* Spacing System */
.py-120 { padding-top: clamp(60px, 10vw, 120px); padding-bottom: clamp(60px, 10vw, 120px); }
.mb-80 { margin-bottom: clamp(40px, 8vw, 80px); }

/* Scrollbar Customization */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--obsidian-black); }
::-webkit-scrollbar-thumb { background: var(--deep-gray); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--crimson-red); }

/* ============================================
   5. INTERNAL PAGES UPGRADES
   ============================================ */

/* Events Filters Styling */
.filter-sidebar, .events-filter-wrapper {
    background: var(--obsidian-surface);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 4px;
}

.filter-title {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--stark-white);
    margin-bottom: 20px;
}

/* Organizers Card Depth */
.organizer-card__avatar {
    border: 2px solid var(--obsidian-surface);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

/* Play Hub Futuristic HUD */
.hud-frame {
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}
/* ============================================
   EVENLIO PLATFORM - PAGE-SPECIFIC DESIGN UPGRADES
   Targeted enhancements for Events, Organizers, Contact, and Play
   ============================================ */

/* 1. EVENTS PAGE - FILTER & SEARCH UI */
.search-engine-tactile {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid var(--glass-border) !important;
    backdrop-filter: blur(10px);
    padding: 12px !important;
    border-radius: 8px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.tactile-input-group input {
    background: transparent !important;
    border: none !important;
    color: var(--stark-white) !important;
    font-size: 16px;
    padding: 10px 15px;
}

.refine-engine-tactile {
    background: var(--obsidian-surface) !important;
    border: 1px solid var(--glass-border) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sector-link {
    border-left: 2px solid transparent;
    margin-bottom: 8px !important;
    background: rgba(255, 255, 255, 0.01);
}

.sector-link:hover, .sector-link.active {
    border-left-color: var(--crimson-red);
    background: rgba(225, 1, 1, 0.05) !important;
}

/* 2. ORGANIZERS PAGE - CARD DEPTH */
.organizer-card-modern {
    background: var(--obsidian-surface);
    border: 1px solid var(--glass-border);
    padding: 30px;
    text-align: center;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.organizer-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--crimson-red);
    box-shadow: 0 20px 40px rgba(225, 1, 1, 0.1);
}

.organizer-avatar-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    position: relative;
}

.organizer-avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--obsidian-deep);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* 3. CONTACT PAGE - FORM & FAQ */
.contact-form-tactile {
    background: var(--obsidian-surface) !important;
    border: 1px solid var(--glass-border) !important;
    padding: 50px !important;
}

.faq-item {
    background: var(--obsidian-surface) !important;
    border: 1px solid var(--glass-border) !important;
    margin-bottom: 15px !important;
}

.faq-question {
    font-size: 18px !important;
    padding: 25px 30px !important;
}

.faq-question i {
    font-size: 22px !important;
}

.faq-answer {
    padding: 0 30px 30px !important;
    color: var(--muted-gray) !important;
}

/* 4. PLAY PAGE - HUD ENHANCEMENTS */
.hud-play-container {
    background: var(--obsidian-black);
    min-height: 100vh;
    position: relative;
    padding: 40px 0;
}

.hud-frame, .hud-game-frame-container {
    border: 1px solid rgba(225, 1, 1, 0.2) !important;
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: inset 0 0 30px rgba(225, 1, 1, 0.05), 0 20px 50px rgba(0, 0, 0, 0.8);
}

.hud-stat-card {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid var(--glass-border) !important;
    padding: 20px !important;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px !important;
    height: 50px !important;
    font-size: 24px !important;
    background: rgba(225, 1, 1, 0.1) !important;
    color: var(--crimson-red) !important;
    border-radius: 4px;
}

/* 5. BUTTON FEEDBACK & MICRO-UX */
.tactile-button-primary, .tactile-submit-btn, .tactile-btn-red {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.tactile-button-primary:hover, .tactile-submit-btn:hover, .tactile-btn-red:hover {
    letter-spacing: 0.25em !important;
    box-shadow: 0 0 30px var(--crimson-glow) !important;
}

.tactile-button-primary:active, .tactile-submit-btn:active, .tactile-btn-red:active {
    transform: scale(0.96) !important;
}

/* 6. RESPONSIVE REFINEMENTS */
@media (max-width: 768px) {
    .hero-title-tactile {
        font-size: 42px !important;
    }
    
    .contact-form-tactile {
        padding: 30px 20px !important;
    }
    
    .hud-stats-panel {
        grid-template-columns: 1fr !important;
    }
}
/* ============================================
   EVENLIO PLATFORM - FORENSIC STYLE COMPLETION
   Fixing hidden inconsistencies and state-based gaps
   ============================================ */

/* 1. SECTOR & LOGIC LINKS (Events Page Sidebar) */
.sector-link, .logic-item {
    position: relative;
    overflow: hidden;
}

.sector-link::after, .logic-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--crimson-red);
    transition: width 0.3s ease;
}

.sector-link:hover::after, .logic-item:hover::after {
    width: 100%;
}

.sector-link.active, .logic-item.active {
    background: rgba(225, 1, 1, 0.1) !important;
    border-left: 3px solid var(--crimson-red) !important;
}

/* 2. RESET/CLEAR BUTTONS (Dashed border improvement) */
.clear-engine-btn {
    border: 1px dashed var(--deep-gray) !important;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.clear-engine-btn:hover {
    border-style: solid;
    border-color: var(--crimson-red) !important;
    background: rgba(225, 1, 1, 0.05);
}

/* 3. MINI INPUTS & SELECTS (Play Hub Matrix) */
.tactile-mini-select, .tactile-mini-input {
    border: 1px solid var(--glass-border) !important;
    background: var(--obsidian-deep) !important;
    color: var(--stark-white) !important;
    transition: all 0.3s ease;
}

.tactile-mini-select:focus, .tactile-mini-input:focus {
    border-color: var(--crimson-red) !important;
    box-shadow: 0 0 10px var(--crimson-glow);
}

.tactile-btn-red-sm {
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease !important;
}

.tactile-btn-red-sm:hover {
    background: var(--stark-white) !important;
    color: var(--obsidian-black) !important;
    transform: scale(1.05);
}

/* 4. FORM FIELD RADIUS & CONSISTENCY */
.tactile-input-wrapper input, 
.tactile-input-wrapper textarea {
    border-radius: 4px !important;
    border: 1px solid var(--glass-border) !important;
}

/* 5. CAPTCHA SECTOR STYLING */
.captcha-sector {
    background: var(--obsidian-surface);
    padding: 15px;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
}

/* 6. PAGINATION PREMIUM FEEL */
.manifest-pagination-tactile .page-link {
    border-radius: 4px !important;
    margin: 0 3px;
}

/* 7. DYNAMIC GRID HOVER (Forensic fix for lists) */
#organizerGrid .col-xl-3:hover, #gridView .col-xl-4:hover {
    z-index: 5;
}

/* 8. MISSING DISABLED STATES */
button:disabled, .btn:disabled, .tactile-btn:disabled {
    opacity: 0.4 !important;
    cursor: not-allowed !important;
    filter: grayscale(1);
}

/* 9. SEARCH ICON ALIGNMENT */
.tactile-input-group i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.tactile-input-group input {
    padding-left: 45px !important;
}
/* ============================================
   EVENLIO PLATFORM - CRITICAL COLOR RECOVERY
   Ensuring Stark White readability on Obsidian backgrounds
   ============================================ */

/* 1. GLOBAL ROOT RESET */
:root {
    --obsidian-black: #000000;
    --obsidian-deep: #050505;
    --stark-white: #ffffff !important;
    --off-white: #f8f9fa !important;
    --muted-light: #cccccc !important;
    --crimson-red: #e10100;
}

/* 2. FORCE GLOBAL TEXT VISIBILITY */
body, 
p, 
span, 
div, 
li, 
label, 
input, 
textarea, 
section,
.container,
.row {
    color: var(--muted-light);
}

h1, h2, h3, h4, h5, h6, 
.hero-title, 
.headline, 
.display-title, 
.card-title-tactile a, 
.city-name,
.name,
.title {
    color: var(--stark-white) !important;
}

/* 3. HERO & BANNER FIXES */
.modern-hero-banner .hero-description,
.events-hero-tactile .hero-subtitle-tactile,
.organizers-hero-tactile .hero-subtitle-tactile,
.contact-hero-tactile .hero-subtitle-tactile {
    color: var(--muted-light) !important;
    opacity: 1 !important;
}

/* 4. CARD CONTENT FIXES */
.tactile-card, .event-card-node, .organizer-card, .city-card, .testimonial-node-card {
    color: var(--muted-light) !important;
}

.event-card-node .card-data-sector .category-tag-tactile,
.event-card-node .card-meta-tactile .meta-node span,
.origin-info .name,
.origin-info .label {
    color: var(--stark-white) !important;
}

/* 5. FORM & INPUT READABILITY */
.form-control, 
.form-select, 
.tactile-input-wrapper input, 
.tactile-input-wrapper textarea,
.tactile-mini-input,
.tactile-mini-select {
    color: var(--stark-white) !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.form-label, 
.refine-label, 
.tactile-input-wrapper label {
    color: var(--muted-light) !important;
    font-weight: 700 !important;
}

::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* 6. SIDEBAR & FILTERS */
.refine-engine-tactile .refine-title,
.sector-link .sector-text,
.logic-item {
    color: var(--muted-light) !important;
}

.sector-link.active .sector-text,
.logic-item.active {
    color: var(--stark-white) !important;
}

/* 7. HUB & MATRIX PANELS */
.tactile-monitor-node .title,
.metrics-row-tactile .metric .val,
.timer-value,
.query-text,
.matrix-item .name,
.matrix-item .score {
    color: var(--stark-white) !important;
}

.metrics-row-tactile .metric .lab,
.timer-label,
.query-label,
.matrix-item .rank {
    color: var(--crimson-red) !important;
}

/* 8. FOOTER RECOVERY */
.footer-section, .footer-section p, .footer-section a {
    color: var(--muted-light) !important;
}

.footer-section h4, .footer-section h5 {
    color: var(--stark-white) !important;
}

/* 9. OVERRIDE ANY BLACK TEXT CLASSES */
.text-dark, .text-black, .text-muted {
    color: var(--muted-light) !important;
}

/* 10. ICON VISIBILITY */
i[class^="la-"], i[class*=" la-"] {
    color: inherit; /* Allow icons to inherit the fixed text colors */
}

.text--base, .text-primary {
    color: var(--crimson-red) !important;
}



/* ============================================================================
   CRITICAL FIX: EVENT CARD WHITE BACKGROUND ISSUE - PREMIUM OVERRIDE
   ============================================================================ */

/* Force black background on all event cards */
.tactile-card,
.event-card-node {
    background: #000000 !important;
    background-color: #000000 !important;
    background-image: none !important;
}

/* Remove gradients and pseudo-elements */
.tactile-card::before,
.tactile-card::after,
.event-card-node::before,
.event-card-node::after {
    display: none !important;
    content: none !important;
}

/* Force black on image sector */
.card-image-sector {
    background: #000000 !important;
    background-color: #000000 !important;
}

.card-image-sector::before,
.card-image-sector::after {
    display: none !important;
}

/* Transparent image background */
.card-img-main {
    background: transparent !important;
    background-color: transparent !important;
}
