/* ==========================================
   1. CINEMATIC HEADER & OVERLAY
========================================== */
.cinematic-header {
    position: relative;
    width: 100%;
    overflow: visible;
    padding: 10px 0 15px;
    min-height: 380px;
    box-sizing: border-box;
    background: linear-gradient(180deg, rgba(8, 15, 30, 0.85) 0%, rgba(4, 8, 16, 0.93) 100%), 
                url('hatter/fejlec_kep.webp') center center / cover no-repeat;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(3px);
    z-index: 99;
}

.header-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 140, 255, 0.16), transparent 62%);
    pointer-events: none;
}

/* ==========================================
   2. TOP SECTION & BRAND
========================================== */
.header-top {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1750px;
    margin: 0 auto;
    padding: 20px 20px 15px;
    display: grid;
    grid-template-columns: 180px minmax(700px, 1fr) 140px;
    align-items: center;
    gap: 25px;
    box-sizing: border-box;
    overflow: visible;
    transform-style: preserve-3d;
}

.brand-wrap {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    width: 220px;
    height: auto;
    display: block;
}

.logo-container {
    background: rgba(10, 16, 32, 0.4);
    padding: 8px 16px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-img {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.45)) drop-shadow(0 0 18px rgba(0, 163, 255, 0.25));
    transition: filter 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.65)) drop-shadow(0 0 22px rgba(0, 163, 255, 0.45));
}

/* ==========================================
   3. SHOWROOM & 3D CARDS
========================================== */
.hero-showroom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    width: 100%;
    perspective: 2200px;
    flex-wrap: nowrap;
    overflow: visible;
    min-height: 320px;
    will-change: transform;
}

.showroom-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    transition: 0.45s ease;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    background: radial-gradient(circle at center, rgba(0, 170, 255, 0.10), rgba(0, 0, 0, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    will-change: transform;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.showroom-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%, transparent 72%, rgba(0, 170, 255, 0.10));
    z-index: 2;
    pointer-events: none;
}

.showroom-card img,
.center-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: 0.45s ease;
}

.showroom-card:hover {
    transform: translateY(-6px) scale(1.02);
}

.showroom-card span {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.side-card {
    width: 180px;
    height: 320px;
    flex: 0 0 180px;
    opacity: 0.82;
    transition: all 0.45s ease;
    transform-style: preserve-3d;
    filter: brightness(0.95) saturate(1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 0 18px rgba(0, 140, 255, 0.12);
    backface-visibility: hidden;
}

.side-card:hover {
    opacity: 1;
    filter: brightness(1.05) saturate(1.12);
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.45), 0 0 50px rgba(0, 170, 255, 0.28), 0 0 120px rgba(0, 170, 255, 0.18), 0 18px 35px rgba(0, 0, 0, 0.55);
}

.side-card:hover::after {
    border-color: rgba(0, 170, 255, 0.7);
    box-shadow: 0 0 12px rgba(0, 170, 255, 0.8), 0 0 35px rgba(0, 170, 255, 0.45), 0 0 80px rgba(0, 170, 255, 0.18);
}

.side-card:hover img {
    transform: scale(1.06);
}

.side-card:nth-child(1) { transform: perspective(1200px) rotateY(38deg) translateX(34px) scale(0.82); }
.side-card:nth-child(2) { transform: perspective(1200px) rotateY(24deg) translateX(14px) scale(0.92); }
.side-card:nth-child(4) { transform: perspective(1200px) rotateY(-24deg) translateX(-14px) scale(0.92); }
.side-card:nth-child(5) { transform: perspective(1200px) rotateY(-38deg) translateX(-34px) scale(0.82); }

.side-card:nth-child(1):hover { transform: perspective(1200px) rotateY(30deg) translateX(24px) translateY(-10px) scale(0.92); }
.side-card:nth-child(2):hover { transform: perspective(1200px) rotateY(16deg) translateX(10px) translateY(-10px) scale(0.98); }
.side-card:nth-child(4):hover { transform: perspective(1200px) rotateY(-16deg) translateX(-10px) translateY(-10px) scale(0.98); }
.side-card:nth-child(5):hover { transform: perspective(1200px) rotateY(-30deg) translateX(-24px) translateY(-10px) scale(0.92); }

.center-card {
    width: 280px;
    height: 400px;
    flex: 0 0 280px;
    position: relative;
    transform: translateY(6px) scale(1.04);
    border-radius: 28px;
    overflow: hidden;
    z-index: 50;
    border: 1px solid rgba(0, 170, 255, 0.7);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.55), 0 0 45px rgba(0, 170, 255, 0.35), 0 25px 50px rgba(0, 0, 0, 0.55);
    background: radial-gradient(circle at center, rgba(0, 170, 255, 0.18) 0%, rgba(0, 80, 140, 0.12) 35%, rgba(5, 10, 20, 1) 75%);
    animation: glowPulse 4s ease-in-out infinite, borderPulse 4s ease-in-out infinite;
    transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease;
}

.center-card:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 0 25px rgba(0, 170, 255, 0.85), 0 0 60px rgba(0, 170, 255, 0.45), 0 0 140px rgba(0, 170, 255, 0.20), 0 30px 60px rgba(0, 0, 0, 0.65);
}

.center-card:hover img {
    transform: scale(1.04);
}

.center-card::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 30px;
    border: 2px solid rgba(0, 170, 255, 0.85);
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.95), 0 0 35px rgba(0, 170, 255, 0.75), 0 0 90px rgba(0, 170, 255, 0.40), 0 0 140px rgba(0, 170, 255, 0.18);
    pointer-events: none;
    animation: borderPulse 4s ease-in-out infinite;
}

.center-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.05));
    z-index: 2;
}

.center-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 22px;
    text-align: center;
}

.center-overlay h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
}

.center-overlay p {
    margin: 8px 0 18px;
    font-size: 0.95rem;
}

.hero-btn {
    background: rgba(0, 115, 230, 0.85);
    color: #ffffff;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 700;
    transition: 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 115, 230, 0.35);
}

.hero-btn:hover {
    transform: translateY(-3px);
    background: #008cff;
    box-shadow: 0 0 25px rgba(0, 140, 255, 0.6);
}

/* ==========================================
   4. HEADER ACTIONS & BUTTONS
========================================== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ui-page-theme-a .ui-button.header-icon,
.header-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(0, 163, 255, 0.2) !important;
    border-radius: 10px !important;
    text-shadow: none !important;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ui-page-theme-a .ui-button.header-icon i,
.header-icon i {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.ui-page-theme-a .ui-button.header-icon:hover,
.header-icon:hover {
    background: rgba(0, 163, 255, 0.1) !important;
    border-color: #00a3ff !important;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 163, 255, 0.4) !important;
}

.ui-page-theme-a .ui-button.header-icon:hover i,
.header-icon:hover i {
    color: #00a3ff !important;
    filter: drop-shadow(0 0 6px rgba(0, 163, 255, 0.8));
}

.jobb-oldali-gomb {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 163, 255, 0.3);
    border-radius: 10px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 15px rgba(0, 163, 255, 0.1);
    transition: all 0.3s ease;
}

.jobb-oldali-gomb i,
.jobb-oldali-gomb svg {
    color: #00a3ff;
}

.jobb-oldali-gomb:hover {
    background: rgba(0, 163, 255, 0.1);
    border-color: #00a3ff;
    box-shadow: 0 0 15px rgba(0, 163, 255, 0.4);
}

/* ==========================================
   5. STATISTICAL BAR
========================================== */
.stat-bar-container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 15px auto 25px auto;
    padding: 10px 5px;
    background: rgba(11, 22, 40, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 195, 255, 0.25);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.stat-bar-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}

.stat-item {
    flex: 1 1 120px;
    min-width: 110px;
    text-align: center;
    padding: 6px 4px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: #00c3ff;
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.5);
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
    display: block;
}

/* ==========================================
   6. FEATURE STRIP & TOOLTIP
========================================== */

.feature-strip.glass-strip,
.glass-strip {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 1450px !important;
    margin: 15px auto !important;
    padding: 12px 20px !important;
    box-sizing: border-box !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 163, 255, 0.4) rgba(10, 16, 32, 0.5);
}

.feature-strip .feature-btn,
button.feature-btn,
.ui-page-theme-a .ui-btn.feature-btn {
    width: auto !important;
    max-width: fit-content !important;
    flex: 0 0 auto !important;
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    text-shadow: none !important;
    box-shadow: none !important;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    margin: 0 !important;
    padding: 10px 18px !important;
    box-sizing: border-box !important;
}

.feature-btn:hover {
    background: rgba(0, 163, 255, 0.08) !important;
    border-color: rgba(0, 163, 255, 0.4) !important;
    box-shadow: 0 0 20px rgba(0, 163, 255, 0.15) !important;
    transform: translateY(-2px);
}

.feature-mini small {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.feature-mini i {
    font-size: 16px;
    color: #00a3ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 4px rgba(0, 163, 255, 0.4)); 
    transition: all 0.3s ease;
}

.feature-mini.blue i { color: #00d2ff !important; filter: drop-shadow(0 0 4px rgba(0,210,255,0.4)); }
.feature-mini.purple i { color: #b644ff !important; filter: drop-shadow(0 0 4px rgba(182,68,255,0.4)); }
.feature-mini.gold i { color: #ffb700 !important; filter: drop-shadow(0 0 4px rgba(255,183,0,0.4)); }
.feature-mini.green i { color: #00ff88 !important; filter: drop-shadow(0 0 4px rgba(0,255,136,0.4)); }

.feature-mini.sos-btn { border: 1px solid rgba(255, 68, 68, 0.25) !important; }
.feature-mini.sos-btn:hover {
    background: rgba(255, 68, 68, 0.12) !important;
    border-color: rgba(255, 68, 68, 0.7) !important;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.3) !important;
}
.feature-mini.sos-btn i { color: #ff4444 !important; animation: pulse 2s infinite; }

.custom-neon-tooltip {
    position: fixed;
    z-index: 1000000 !important;
    width: 290px;
    padding: 12px 14px;
    background: rgba(7, 13, 28, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid #00a3ff;
    border-radius: 10px;
    color: #ffffff !important;
    font-size: 0.85rem;
    line-height: 1.4;
    text-align: left;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 163, 255, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    font-family: sans-serif;
}

.cinematic-header.compact-mode .hero-showroom,
.cinematic-header.compact-mode .feature-strip {
    display: none !important;
}

/* ==========================================
   7. NAVIGATION & DROPDOWNS
========================================== */
.main-nav {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 11px 18px;
    border-radius: 18px;
}

.main-nav.glass-nav,
.glass-nav {
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    max-width: 1450px;
    margin: 15px auto 0 auto;
    padding: 6px 12px;
    background: rgba(10, 16, 32, 0.65) !important;
    border: 1px solid rgba(0, 163, 255, 0.25) !important;
    border-radius: 12px !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    flex-wrap: wrap;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.main-nav a:hover {
    color: #00a3ff;
}

.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.nav-item-dropdown > a > i:first-child {
    color: #00a3ff;
    font-size: 0.95rem;
    transition: transform 0.25s ease;
}

.nav-item-dropdown > a .fa-chevron-down {
    color: #94a3b8;
    transition: transform 0.3s ease, color 0.3s ease;
}

.nav-item-dropdown:hover > a {
    color: #ffffff;
    background: rgba(0, 163, 255, 0.15);
    box-shadow: 0 0 12px rgba(0, 163, 255, 0.2);
}

.nav-item-dropdown:hover > a .fa-chevron-down {
    transform: rotate(180deg);
    color: #00a3ff;
}

.nav-item-dropdown:hover > a > i:first-child {
    transform: scale(1.1);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    margin-top: 8px;
    padding: 8px 0;
    background: rgba(8, 14, 26, 0.95);
    border: 1px solid rgba(0, 163, 255, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 163, 255, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1000;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 10px;
    height: 10px;
    background: rgba(8, 14, 26, 0.95);
    border-left: 1px solid rgba(0, 163, 255, 0.3);
    border-top: 1px solid rgba(0, 163, 255, 0.3);
    transform: rotate(45deg);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    color: #cbd5e1;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
}

.dropdown-menu a i {
    color: #00a3ff;
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
    transition: transform 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(0, 163, 255, 0.12);
    color: #ffffff;
    padding-left: 22px;
    border-left-color: #00a3ff;
}

.dropdown-menu a:hover i {
    transform: scale(1.2);
    color: #38bdf8;
}

.dropdown-menu .dropdown-header {
    padding: 8px 14px 4px 14px;
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #00a3ff;
    border-bottom: 1px solid rgba(0, 163, 255, 0.25);
    margin-top: 8px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}

.dropdown-menu .dropdown-header:first-child {
    margin-top: 0;
}

.dropdown-menu .dropdown-header i {
    font-size: 0.78rem;
    color: #00a3ff;
}

/* ==========================================
   8. MOBILE DRAWER / OFF-CANVAS PANEL
========================================== */
.mobile-drawer-panel {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: rgba(13, 20, 36, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(0, 163, 255, 0.3);
    z-index: 99999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    transition: right 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.mobile-drawer-panel.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 163, 255, 0.2);
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.drawer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00a3ff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.drawer-close-btn {
    color: #94a3b8;
    font-size: 1.8rem;
    text-decoration: none;
    line-height: 1;
    transition: color 0.2s ease;
}

.drawer-close-btn:hover {
    color: #ff4444;
}

.drawer-user-welcome {
    background: rgba(0, 163, 255, 0.1);
    border-left: 3px solid #00a3ff;
    padding: 10px 12px;
    margin-bottom: 20px;
    border-radius: 6px;
    color: #e2e8f0;
    font-size: 0.88rem;
}

.drawer-section {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px;
}

.drawer-section-title {
    font-weight: 700;
    color: #00c3ff;
    margin-bottom: 10px;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.drawer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-menu-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    color: #cbd5e1;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.88rem;
    transition: all 0.2s ease;
}

.drawer-menu-list li a:hover {
    background: rgba(0, 163, 255, 0.15);
    color: #ffffff;
    padding-left: 14px;
}

.drawer-menu-list i {
    width: 18px;
    color: #00a3ff;
    text-align: center;
}

.drawer-sub-header {
    font-size: 0.75rem;
    color: #60a5fa;
    padding: 10px 6px 4px 6px;
    font-weight: 700;
    text-transform: uppercase;
}

.drawer-info-note {
    font-size: 0.8rem;
    color: #94a3b8;
    padding: 8px 10px;
    font-style: italic;
    line-height: 1.3;
}

/* ==========================================
   9. ANIMATIONS
========================================== */
@keyframes pulse {
    0% { filter: drop-shadow(0 0 2px rgba(255, 68, 68, 0.6)); }
    50% { filter: drop-shadow(0 0 10px rgba(255, 68, 68, 1)); }
    100% { filter: drop-shadow(0 0 2px rgba(255, 68, 68, 0.6)); }
}

@keyframes borderPulse {
    0% { opacity: 0.75; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.01); }
    100% { opacity: 0.75; transform: scale(1); }
}

@keyframes glowPulse {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.08); }
    100% { filter: brightness(1); }
}

/* ==========================================
   10. EGYEDI NEON GÖRGETŐSÁV STÍLUS
========================================== */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(8, 14, 26, 0.8);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 163, 255, 0.4);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00a3ff;
    box-shadow: 0 0 10px #00a3ff;
}

/* ==========================================
   11. MEDIA QUERIES (RESPONSIVE)
========================================== */
@media (max-width: 1500px) {
    .side-card {
        width: 160px;
        height: 260px;
        flex: 0 0 160px;
    }
    .center-card {
        width: 250px;
        height: 360px;
        flex: 0 0 250px;
    }
    .hero-showroom {
        gap: 14px;
    }
}

@media (max-width: 1100px) {
    .brand-wrap {
        justify-content: center;
    }
    .header-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-showroom {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 34px;
        width: 100%;
        perspective: 1800px;
        perspective-origin: center center;
        transform-style: preserve-3d;
        flex-wrap: nowrap;
        min-height: 420px;
        overflow: visible;
    }
    .center-card {
        min-width: 150px;
    }
}

@media (max-width: 1000px) {
    .header-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .main-nav.glass-nav {
        flex-direction: column;
        align-items: stretch;
    }
    .nav-item-dropdown > a {
        width: 100%;
        justify-content: space-between;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 100%;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.3);
        margin-top: 4px;
        border-color: rgba(255, 255, 255, 0.1);
    }
    .nav-item-dropdown:hover .dropdown-menu {
        display: block;
    }
    .dropdown-menu::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-showroom {
        display: flex !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory;
        padding: 15px 10px !important;
        gap: 15px !important;
        min-height: auto !important;
        width: 100% !important;
        box-sizing: border-box !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    .showroom-card {
        scroll-snap-align: center;
        flex-shrink: 0 !important;
    }
    .stat-item {
        flex: 1 1 45%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .side-card {
        width: 130px !important;
        height: 190px !important;
        flex: 0 0 130px !important;
        overflow: hidden;
        opacity: 0.82;
        transition: 0.45s ease;
        filter: brightness(0.92) saturate(0.98);
        box-shadow: 0 0 18px rgba(0, 140, 255, 0.12);
        transform: none !important;
    }
    .side-card img {
        object-fit: contain;
    }
    .side-card::after {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: 26px;
        border: 1px solid rgba(0, 170, 255, 0);
        box-shadow: 0 0 0 rgba(0, 170, 255, 0);
        transition: 0.45s ease;
        pointer-events: none;
    }
    .side-card:hover {
        transform: scale(1.04) translateY(-6px);
        opacity: 1;
        filter: brightness(1) saturate(1.1);
        box-shadow: 0 0 28px rgba(0, 140, 255, 0.28);
    }
    .center-card {
        width: 200px !important;
        height: 260px !important;
        flex: 0 0 200px !important;
        transform: none !important;
        overflow: visible;
    }
    .center-card img {
        object-fit: contain;
    }
    .center-overlay h1 {
        font-size: 1.4rem;
    }
    .main-nav {
        overflow-x: auto;
        justify-content: flex-start;
        white-space: nowrap;
    }
}