/* PLTRAW homepage — restored from index.html.bak-opt */
:root {
            --bg-color: #050505;
            --glass-bg: rgba(20, 20, 20, 0.95);
            --neon-red: #ff1e1e;
            --text-white: #ffffff;
            --text-gray: #b0b0b0;
            --card-bg: rgba(255, 255, 255, 0.03);
        }

        * {
            box-sizing: border-box;
            outline: none;
        }

        /* ============================================
           PREMIUM ENHANCEMENTS - SMOOTH SCROLL
           ============================================ */
        html {
            scroll-behavior: smooth;
        }

        #bg-video {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            min-height: 100vh;
            object-fit: cover;
            z-index: -2;
            opacity: 0.3;
            object-position: center;
            transform: translateZ(0);
            backface-visibility: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(5, 5, 5, 0.1) 100%);
            z-index: -1;
            pointer-events: none;
        }

        body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            background-color: var(--bg-color);
            color: var(--text-white);
            background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.95));
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
            padding-top: 0 !important;
            top: 0 !important;
        }

        /* ============================================
           PREMIUM FEATURE: SCROLL PROGRESS BAR
           ============================================ */
        .scroll-progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--neon-red), #ff6b6b);
            z-index: 10000;
            width: 0%;
            transition: width 0.1s ease-out;
            box-shadow: 0 0 10px var(--neon-red), 0 0 20px rgba(255, 30, 30, 0.5);
        }

        /* --- UKRYWANIE DOMYŚLNEGO PASKA GOOGLE --- */
        .goog-te-banner-frame,
        .goog-te-gadget-icon,
        #google_translate_element,
        .skiptranslate,
        .goog-tooltip,
        .goog-te-balloon-frame {
            display: none !important;
        }

        .goog-text-highlight {
            background-color: transparent !important;
            box-shadow: none !important;
        }

        body {
            top: 0 !important;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
        }

        a:hover {
            color: var(--neon-red);
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        /* --- 1. NAV (DESKTOP) --- */
        #nav {
            background: rgba(10, 10, 10, 0.98);
            border-bottom: 2px solid var(--neon-red);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
            width: 100%;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .nav-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: block;
            padding: 15px 20px;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            font-size: 0.95rem;
            color: #ccc;
            letter-spacing: 1px;
            transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        }

        .nav-item:hover>.nav-link {
            color: white;
            background: rgba(255, 30, 30, 0.1);
        }

        /* DROPDOWN */
        .dropdown {
            visibility: hidden;
            opacity: 0;
            position: absolute;
            top: 100%;
            left: 0;
            background: #0f0f0f;
            min-width: 220px;
            border: 1px solid #333;
            border-top: 3px solid var(--neon-red);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.95);
            z-index: 2000;
            transform: translateY(15px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .nav-item:hover>.dropdown {
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
        }

        .nav-item::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 10px;
            bottom: -10px;
            left: 0;
        }

        .dropdown li {
            display: block;
            width: 100%;
            border-bottom: 1px solid #222;
        }

        .dropdown li:last-child {
            border-bottom: none;
        }

        .dropdown li a {
            display: block;
            padding: 14px 20px;
            color: #bbb;
            font-size: 0.9rem;
            font-family: 'Roboto', sans-serif;
            transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        }

        .dropdown li a:hover {
            background: rgba(255, 30, 30, 0.15);
            color: var(--text-white);
            padding-left: 25px;
            border-left: 3px solid var(--neon-red);
        }

        /* --- MOBILE HAMBURGER MENU --- */
        .mobile-menu-toggle {
            display: none;
            position: fixed;
            top: 15px;
            right: 20px;
            z-index: 2000;
            background: rgba(10, 10, 10, 0.95);
            border: 2px solid var(--neon-red);
            border-radius: 24px;
            padding: 10px 15px;
            cursor: pointer;
            font-family: 'Oswald', sans-serif;
            color: white;
            font-size: 0.9rem;
            letter-spacing: 1px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .hamburger-icon {
            display: inline-block;
            width: 20px;
            height: 14px;
            position: relative;
            margin-left: 8px;
            vertical-align: middle;
            margin-top: 0.25em;
        }
       

        .hamburger-icon span {
            display: block;
            position: absolute;
            height: 2px;
            width: 100%;
            background: var(--neon-red);
            border-radius: 2px;
            opacity: 1;
            left: 0;
            transition: 0.25s ease-in-out;
        }

        .hamburger-icon span:nth-child(1) {
            top: 0px;
        }

        .hamburger-icon span:nth-child(2) {
            top: 6px;
        }

        .hamburger-icon span:nth-child(3) {
            top: 12px;
        }

        .mobile-menu-toggle.active .hamburger-icon span:nth-child(1) {
            top: 6px;
            transform: rotate(135deg);
        }

        .mobile-menu-toggle.active .hamburger-icon span:nth-child(2) {
            opacity: 0;
            left: -60px;
        }

        .mobile-menu-toggle.active .hamburger-icon span:nth-child(3) {
            top: 6px;
            transform: rotate(-135deg);
        }

        .mobile-sidebar {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: rgba(10, 10, 10, 0.98);
            border-left: 2px solid var(--neon-red);
            z-index: 1999;
            overflow-y: auto;
            transition: right 0.3s ease;
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .mobile-sidebar.active {
            right: 0;
        }

        .mobile-sidebar .nav-list {
            flex-direction: column;
            padding: 80px 0 20px 0;
        }

        .mobile-sidebar .nav-item {
            width: 100%;
            border-bottom: 1px solid #333;
        }

        .mobile-sidebar .nav-link {
            padding: 18px 25px;
            font-size: 1rem;
        }

        .mobile-sidebar .dropdown {
            position: static;
            visibility: visible;
            opacity: 1;
            transform: none;
            border: none;
            border-top: 1px solid #333;
            box-shadow: none;
            background: rgba(0, 0, 0, 0.5);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .mobile-sidebar .nav-item.expanded .dropdown {
            max-height: 500px;
        }

        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1998;
            transition: opacity 0.3s ease;
        }

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

        /* --- 2. HEADER --- */
        header {
            text-align: center;
            padding: 40px 20px 20px;
        }

        .logo-container {
            display: inline-block;
            width: 110px;
            height: 110px;
            margin-bottom: 10px;
            border-radius: 50%;
            border: 3px solid var(--neon-red);
            padding: 0px;
            background: rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 40px rgba(255, 30, 30, 0.4);
            transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
        }

        .logo-container:hover {
            transform: scale(1.05) rotate(5deg);
            box-shadow: 0 0 60px rgba(255, 30, 30, 0.7);
        }

        .logo-img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            display: block;
        }

        header h1 {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: white;
            text-shadow: 0 0 20px rgba(255, 30, 30, 0.5);
        }

        header h1 span {
            color: var(--neon-red);
        }

        header p {
            color: var(--text-gray);
            font-size: 0.9rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-top: 5px;
            border-top: 1px solid #444;
            display: inline-block;
            padding-top: 5px;
        }

        /* ============================================
           SCROLL DOWN INDICATOR - PREMIUM ENHANCEMENTS
           ============================================ */
        .scroll-down-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 0;
            margin-bottom: 5vh;
            /* REDUCED from 15vh */
            opacity: 1;
            transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
        }

        .scroll-down-indicator.hidden {
            opacity: 0;
            transform: translateY(-20px);
            pointer-events: none;
        }

        .arrow {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 10px;
        }

        .arrow span {
            display: block;
            width: 20px;
            height: 20px;
            border-bottom: 2px solid var(--neon-red);
            border-right: 2px solid var(--neon-red);
            transform: rotate(45deg);
            margin: -4px;
            animation: arrowBounce 1.5s infinite;
        }

        .arrow span:nth-child(2) {
            animation-delay: 0.2s;
        }

        @keyframes scrollWheel {
            0% {
                opacity: 1;
                transform: translateY(0);
            }

            100% {
                opacity: 0;
                transform: translateY(15px);
            }
        }

        @keyframes arrowBounce {
            0% {
                opacity: 0;
                transform: rotate(45deg) translate(-5px, -5px);
            }

            50% {
                opacity: 1;
            }

            100% {
                opacity: 0;
                transform: rotate(45deg) translate(5px, 5px);
            }
        }


        /* --- 3. HERO (TIMERS) --- PREMIUM ENHANCEMENTS */
        .hero-compact {
            background: rgba(0, 0, 0, 0.4) !important;
            border: 2px solid var(--neon-red) !important;
            border-radius: 14px;
            padding: 25px 20px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
            text-align: center;
            margin: 20vh auto 2vh;
            max-width: 1200px;
            width: 95%;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 30, 30, 0.1);
            /* PARALLAX HERO */
            transform: translateZ(0);
            will-change: transform;
        }

        /* DESKTOP ADJUSTMENTS - HERO HIGHER */
        @media (min-width: 901px) and (max-width: 1920px) {
            .hero-compact {
                grid-template-columns: auto 1fr auto auto;
                max-width: 1200px;
                padding: 25px 40px;
                margin-top: 25vh;
                /* REDUCED from 35vh */
            }

            .scroll-down-indicator {
                margin-top: 3vh;
            }
        }

        @media (min-width: 1921px) and (max-width: 2560px) {
            .hero-compact {
                grid-template-columns: auto 1fr auto auto;
                max-width: 1600px;
                padding: 40px 60px;
                margin-top: 30vh;
                /* REDUCED from 45vh */
            }

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

            .hero-time {
                font-size: 1.8rem;
            }

            .hero-label {
                font-size: 1rem;
            }

            .hero-button {
                padding: 18px 45px;
                font-size: 1.2rem;
            }

            .scroll-down-indicator {
                margin-top: 5vh;
                transform: scale(1.4);
            }
        }

        @media (min-width: 2561px) {
            .hero-compact {
                grid-template-columns: auto 1fr auto auto;
                max-width: 2200px;
                padding: 60px 100px;
                margin-top: 5vh;
                /* REDUCED from 7vh */
                border-width: 4px !important;
            }

            .hero-title-main {
                font-size: 3.5rem;
            }

            .hero-time {
                font-size: 2.8rem;
            }

            .hero-label {
                font-size: 1.4rem;
            }

            .hero-button {
                padding: 30px 70px;
                font-size: 1.8rem;
            }

            .scroll-down-indicator {
                margin-top: 8vh;
                transform: scale(2);
            }
        }

        .hero-timer-group {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-label {
            font-family: 'Oswald';
            color: #888;
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 3px;
        }

        .hero-time {
            font-family: 'Roboto', monospace;
            color: var(--neon-red);
            font-size: 1.2rem;
            font-weight: bold;
            text-shadow: 0 0 10px rgba(255, 30, 30, 0.3);
        }

        .hero-time.closed {
            color: #ffaa00;
            text-shadow: 0 0 15px rgba(255, 170, 0, 0.5);
            animation: pulseClosed 2s ease-in-out infinite;
        }

        @keyframes pulseClosed {
            0%, 100% {
                opacity: 1;
                text-shadow: 0 0 15px rgba(255, 170, 0, 0.5);
            }
            50% {
                opacity: 0.85;
                text-shadow: 0 0 25px rgba(255, 170, 0, 0.7);
            }
        }

        .hero-title-main {
            font-family: 'Oswald';
            font-size: 1.4rem;
            color: white;
            letter-spacing: 2px;
            margin: 0 20px;
            text-transform: uppercase;
        }

        .hero-cta {
            display: flex;
            align-items: center;
        }

        /* ============================================
           PREMIUM FEATURE: MAGNETIC BUTTON + PULSATING GLOW
           ============================================ */
        .hero-cta .hero-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 9px 24px;
            border-radius: 999px;
            border: 1px solid var(--neon-red);
            background: radial-gradient(circle at 0 0, rgba(255, 30, 30, 0.5), #151515);
            color: #ffffff;
            font-family: 'Oswald';
            text-transform: uppercase;
            letter-spacing: 0.22em;
            font-size: 0.82rem;
            box-shadow: 0 0 20px rgba(255, 30, 30, 0.7);
            transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            position: relative;
            cursor: pointer;
            animation: pulseGlow 3s ease-in-out infinite;
        }

        @keyframes pulseGlow {

            0%,
            100% {
                box-shadow: 0 0 20px rgba(255, 30, 30, 0.7);
            }

            50% {
                box-shadow: 0 0 35px rgba(255, 30, 30, 0.9), 0 0 50px rgba(255, 30, 30, 0.5);
            }
        }

        .hero-cta .hero-button::after {
            content: "→";
            margin-left: 8px;
            font-size: 0.9rem;
            transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            padding-bottom: 0.1em;
        }

        .hero-cta .hero-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 0 40px rgba(255, 30, 30, 1), 0 10px 30px rgba(0, 0, 0, 0.5);
            background: radial-gradient(circle at 100% 0, rgba(255, 30, 30, 0.8), #151515);
        }

        .hero-cta .hero-button:hover::after {
            transform: translateX(5px);
        }

        .hero-cta .hero-button:active {
            transform: translateY(-1px) scale(1.02);
        }

        /* Hero Bottom Specific - Desktop */
        .hero-compact-bottom {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 50px;
        margin-left: auto !important;
        margin-right: auto !important;
        }

        .hero-compact-bottom .hero-title-main {
            text-align: center;
            font-size: 1.5rem;
        }

        /* ============================================
           PREMIUM FEATURE: REVEAL ANIMATIONS
           Enhanced with blur + scale + fade
           ============================================ */
        .reveal {
            opacity: 0;
            filter: blur(10px);
            transform: translateY(50px) scale(0.95);
            transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
        }

        .reveal.visible {
            opacity: 1;
            filter: blur(0);
            transform: translateY(0) scale(1);
        }

        /* Stagger delays for grouped elements */
        .reveal:nth-child(1) {
            transition-delay: 0.1s;
        }

        .reveal:nth-child(2) {
            transition-delay: 0.2s;
        }

        .reveal:nth-child(3) {
            transition-delay: 0.3s;
        }

        .reveal:nth-child(4) {
            transition-delay: 0.4s;
        }

        .reveal:nth-child(5) {
            transition-delay: 0.5s;
        }

        .reveal:nth-child(6) {
            transition-delay: 0.6s;
        }

        .reveal:nth-child(7) {
            transition-delay: 0.7s;
        }

        .reveal:nth-child(8) {
            transition-delay: 0.8s;
        }

        /* MAIN CONTENT */
        .container {
            width: 95%;
            margin: 0 auto;
            max-width: 1200px;
        }

        @media (min-width: 1921px) {
            .container {
                max-width: 1600px;
            }
        }

        @media (min-width: 2561px) {
            .container {
                max-width: 2000px;
            }
        }

        .inner-content {
            background: var(--glass-bg);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
            border-radius: 14px;
            padding: 40px;
            margin: 20px 0 40px 0;
            /* REDUCED margin-top from 40px */
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        /* --- TABS (ZAKŁADKI) --- */
        .tabs {
            margin-top: 0;
        }

        .tab-buttons {
            display: flex;
            width: calc(100% + 80px);
            margin: -40px -40px 40px -40px;
            background: rgba(0, 0, 0, 0.6);
            border-bottom: 1px solid #333;
            border-radius: 14px 14px 0 0;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .tab-button {
            flex: 1;
            border: none;
            background: transparent;
            color: #888;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 2px;
            font-size: 1.1rem;
            padding: 20px 10px;
            cursor: pointer;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            border-bottom: 3px solid transparent;
        }

        .tab-button:hover {
            color: white;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 14px;
            transform: translateY(-2px);
        }

        .tab-button.active {
            color: #fff;
            background: linear-gradient(to bottom, rgba(255, 30, 30, 0.05), rgba(255, 30, 30, 0.15));
            border-bottom: 3px solid var(--neon-red);
            border-radius: 14px;
            text-shadow: 0 0 15px rgba(255, 30, 30, 0.6);
        }

        .tab-panel {
            display: none;
            opacity: 0;
            transform: translateY(10px);
        }

        .tab-panel.active {
            display: block;
            animation: tabFadeIn 0.6s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
        }

        @keyframes tabFadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

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

        /* ARTICLES */
        h2.section-title {
            font-family: 'Oswald';
            color: white;
            font-size: 1.9rem;
            border-left: 4px solid var(--neon-red);
            padding-left: 16px;
            margin: 20px 0 22px;
            text-transform: uppercase;
            letter-spacing: 0.18em;
        }

        h2.section-title:first-of-type {
            margin-top: 0;

        }
     

        /* ============================================
           PREMIUM FEATURE: 3D CARD TILT + ENHANCED HOVER
           ============================================ */
        .box.excerpt {
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            gap: 20px;
            padding: 10px 26px;
            margin-bottom: 24px;
            border-radius: 14px;
            transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
            flex-direction: row;
            align-items: center;
            position: relative;
            transform-style: preserve-3d;
            perspective: 1000px;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        .box.excerpt:hover {
            border-color: var(--neon-red);
            background: rgba(255, 255, 255, 0.06);
            transform: translateY(-8px) scale(1.02);
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.9),
                0 0 30px rgba(255, 30, 30, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .article-text-box {
            margin: 0 auto 20px;
        }

        /* ============================================
           PREMIUM FEATURE: IMAGE ZOOM (KEN BURNS)
           ============================================ */
        .image.left {
            overflow: hidden;
            border-radius: 12px;
        }

        .image.left img {
            width: 290px;
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            display: block;
            transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
        }

        .box.excerpt:hover .image.left img {
            transform: scale(1.1);
        }

        .box.excerpt h3 {
            margin: 0;
            font-family: 'Oswald';
            font-size: 1.4rem;
            letter-spacing: 0.08em;
        }

        .box.excerpt h3 a {
            position: relative;
        }

        .box.excerpt h3 a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 28%;
            height: 2px;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--neon-red), transparent);
            opacity: 0;
            transform: translateY(4px);
            transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
        }

        .box.excerpt:hover h3 a::after {
            opacity: 1;
            transform: translateY(0);
            width: 60%;
        }

        .date {
            display: block;
            color: var(--neon-red);
            font-weight: bold;
            font-family: 'Oswald';
            margin-bottom: 6px;
            font-size: 0.88rem;
            letter-spacing: 0.14em;
        }

        .box.excerpt p {
            color: #d0d0d0;
            line-height: 1.6;
            margin-bottom: 8px;
            font-size: 0.96rem;
            text-align: center;
        }

        /* ============================================
           PREMIUM FEATURE: MAGNETIC BUTTON + GRADIENT SHIFT
           ============================================ */
        .button.medium {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 11px 32px;
            background: linear-gradient(120deg, #161616, #101010);
            color: #f0f0f0;
            font-family: 'Oswald';
            text-transform: uppercase;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            letter-spacing: 0.2em;
            font-size: 0.9rem;
            transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            position: relative;
            cursor: pointer;
        }

        .button.medium::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 999px;
            background: linear-gradient(120deg, var(--neon-red), #ff6b6b);
            opacity: 0;
            transition: opacity 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            z-index: -1;
        }

        .button.medium::after {
            content: "→";
            font-size: 0.95rem;
            transform: translateX(0);
            transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            padding-bottom: 0.1em;
        }

        .button.medium:hover {
            color: #ffffff;
            border-color: var(--neon-red);
            box-shadow: 0 0 25px rgba(255, 30, 30, 0.6), 0 5px 20px rgba(0, 0, 0, 0.5);
            transform: translateY(-3px);
        }

        .button.medium:hover::before {
            opacity: 0.2;
        }

        .button.medium:hover::after {
            transform: translateX(6px);
        }

        /* KALENDARZ */
        .calendar-year-label {
            color: var(--text-gray);
            font-family: 'Oswald';
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-size: 0.85rem;
            margin-bottom: 6px;
        }

        .calendar-list {
            margin-top: 8px;
        }

        /* ============================================
           PREMIUM FEATURE: 3D TILT + GLOW on CALENDAR
           ============================================ */
        .calendar-item {
            background: rgba(12, 12, 12, 0.92);
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.09);
            padding: 16px 18px 14px;
            margin-bottom: 14px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
            transform-style: preserve-3d;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        .calendar-item::before {
            content: "✔";
            position: absolute;
            left: 16px;
            top: 14px;
            font-size: 0.9rem;
            color: var(--neon-red);
            opacity: 0.9;
        }

        .calendar-header {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            padding-left: 22px;
            align-items: baseline;
        }

        .calendar-date {
            font-family: 'Oswald';
            font-size: 0.95rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: #ffffff;
        }

        .calendar-location {
            font-size: 0.9rem;
            color: #bbbbbb;
        }

        .calendar-title {
            margin: 8px 0 4px;
            padding-left: 22px;
            font-family: 'Oswald';
            font-size: 1.05rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .calendar-desc {
            padding-left: 22px;
            margin: 4px 0 4px;
            color: #d0d0d0;
            font-size: 0.9rem;
            line-height: 1.55;
        }

        .calendar-tag {
            display: inline-block;
            margin-top: 4px;
            margin-left: 22px;
            padding: 3px 10px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: #dcdcdc;
        }

        .calendar-item:hover {
            transform: translateY(-6px) scale(1.01);
            border-color: var(--neon-red);
            background: radial-gradient(circle at 0 0, rgba(255, 30, 30, 0.25), rgba(10, 10, 10, 0.98));
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.9),
                0 0 40px rgba(255, 30, 30, 0.4);
        }

        /* WHY US */
        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-bottom: 50px;
        }

        /* ============================================
           PREMIUM FEATURE: 3D TILT + PULSATING BORDER
           ============================================ */
        .why-card {
            background: rgba(30, 30, 30, 0.6);
            border: 1px solid #333;
            padding: 25px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
            border-radius: 14px;
            position: relative;
            transform-style: preserve-3d;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        .why-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border-radius: 14px;
            background: linear-gradient(45deg, var(--neon-red), #ff6b6b, var(--neon-red));
            opacity: 0;
            z-index: -1;
            transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
            animation: gradientRotate 3s linear infinite;
            background-size: 200% 200%;
        }

        @keyframes gradientRotate {
            0% {
                background-position: 0% 50%;
            }

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

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

        .why-card:hover {
            transform: translateY(-10px) scale(1.03);
            border-color: transparent;
            background: rgba(255, 30, 30, 0.08);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 30, 30, 0.4);
        }

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

        .why-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
            transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
        }

        .why-card:hover .why-icon {
            transform: scale(1.2) rotateY(360deg);
        }

        .why-title {
            font-family: 'Oswald';
            font-size: 1.2rem;
            color: white;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .why-desc {
            color: #888;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* SPONSORS */
        .sponsors-section {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            text-align: center;
            margin-top: 50px;
            padding-top: 18px;
            padding-bottom: 26px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .sponsors-label {
            display: inline-block;
            font-family: 'Oswald';
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--neon-red);
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.25em;
        }

        .sponsor-logo {
         
            max-width: 280px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
        }

        .sponsor-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.15);
        }

        /* FOOTER */
        #footer-wrapper {
            background: #0a0a0a;
            border-top: 2px solid var(--neon-red);
            padding: 50px 0;
            margin-top: auto;
        }

        .footer-row {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
        }

        .footer-col {
            flex: 1;
            min-width: 250px;
        }

        .footer-col h2 {
            font-size: 1.2rem;
            margin-top: 0;
            color: var(--text-gray);
            letter-spacing: 1px;
            font-family: 'Oswald';
        }

        ul.divided li {
            border-top: 1px solid #333;
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        dl.contact dt {
            float: left;
            width: 100px;
            font-weight: bold;
            color: var(--neon-red);
        }

        dl.contact dd {
            margin-left: 110px;
            margin-bottom: 10px;
        }

        #copyright {
            text-align: center;
            margin-top: 50px;
            border-top: 1px solid #333;
            padding-top: 20px;
            color: #666;
            font-size: 0.8rem;
        }

        /* --- LANGUAGE FAB --- */
        .lang-fab-container {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }

        .fab-trigger {
            width: 60px;
            height: 60px;
            background: #111;
            border: 2px solid var(--neon-red);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 20px rgba(255, 30, 30, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            padding: 0;
            overflow: hidden;
        }

        .fab-trigger:hover {
            transform: scale(1.15) rotate(5deg);
            background: #1a1a1a;
            box-shadow: 0 0 40px rgba(255, 30, 30, 0.7);
        }

        .flag-icon {
            width: 30px;
            height: auto;
            border-radius: 2px;
        }

        .fab-trigger .flag-icon {
            width: 32px;
        }

        .fab-menu {
            position: absolute;
            bottom: 75px;
            right: 0;
            background: rgba(15, 15, 15, 0.98);
            border: 1px solid #333;
            border-right: 3px solid var(--neon-red);
            padding: 10px 0;
            display: none;
            flex-direction: column;
            width: 170px;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .fab-option {
            padding: 12px 20px;
            cursor: pointer;
            color: #ccc;
            font-family: 'Oswald';
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .fab-option:last-child {
            border-bottom: none;
        }

        .fab-option:hover {
            background: rgba(255, 30, 30, 0.15);
            color: var(--neon-red);
            padding-left: 25px;
        }

        .notranslate {
            transform: translate(0);
        }

        /* ============================================
           MEDIA QUERIES - MOBILE RESPONSIVE
           ============================================ */

        @media (max-width: 900px) {

            /* --- MOBILE NAVIGATION --- */
            #nav {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .mobile-sidebar {
                display: block;
            }

            /* --- HEADER --- */
            header {
                padding: 60px 20px 20px;
            }

            header h1 {
                font-size: 1.8rem;
            }

            .logo-container {
                width: 90px;
                height: 90px;
            }

            /* --- HERO SECTION - 2x2 GRID NA MOBILE --- */
            .hero-compact {
                display: grid !important;
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto auto;
                gap: 15px 20px;
                padding: 20px 15px;
                text-align: center;
            }

            .hero-compact>.hero-title-main {
                grid-column: 1;
                grid-row: 1;
                font-size: 1rem;
                margin: 0;
                line-height: 1.3;
            }

            .hero-compact>.hero-timer-group:nth-child(1) {
                grid-column: 1;
                grid-row: 2;
            }

            .hero-compact>.hero-timer-group:nth-child(3) {
                grid-column: 2;
                grid-row: 1;
            }

            .hero-compact>.hero-cta {
                grid-column: 2;
                grid-row: 2;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .hero-label {
                font-size: 0.65rem;
                letter-spacing: 1px;
            }

            .hero-time {
                font-size: 0.95rem;
            }

            .hero-button {
                padding: 10px 20px;
                font-size: 0.85rem;
            }

            /* --- HERO BOTTOM MOBILE --- */
            .hero-compact-bottom {
                display: grid !important;
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto auto;
                gap: 15px 15px;
                padding: 15px 15px !important;
            }

            .hero-compact-bottom .hero-title-main {
                grid-column: 1 / -1;
                grid-row: 1;
                font-size: 1.2rem;
                margin-bottom: 5px;
            }

            .hero-compact-bottom>.hero-timer-group:nth-child(1) {
                grid-column: 1;
                grid-row: 2;
            }

            .hero-compact-bottom>.hero-timer-group:nth-child(3) {
                grid-column: 2;
                grid-row: 2;
            }

            /* --- TABS - 3 KOLUMNY OBOK SIEBIE --- */
            .inner-content {
                padding: 20px;
            }

            .tab-buttons {
                width: calc(100% + 40px);
                margin: -20px -20px 25px -20px;
                display: grid;
                grid-template-columns: repeat(3, 1fr);
            }

            .tab-button {
                font-size: 0.75rem;
                padding: 14px 5px;
                letter-spacing: 1px;
            }

            /* --- ARTICLES --- */
            .box.excerpt {
                flex-direction: column;
                padding: 18px;
            }

            .image.left img {
                width: 100%;
            }

            h2.section-title {
                font-size: 1.5rem;
            }

            /* --- WHY US GRID - 2 KOLUMNY --- */
            .why-us-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .why-card {
                padding: 20px 15px;
            }

            .why-icon {
                font-size: 2rem;
                margin-bottom: 10px;
            }

            .why-title {
                font-size: 1rem;
            }

            .why-desc {
                font-size: 0.85rem;
            }

            /* --- SPONSORS - JEDNA LINIA --- */
            .sponsors-section {
                flex-direction: row;
                gap: 15px;
                padding: 15px 10px;
            }

            .sponsors-label {
                font-size: 1rem;
            }

            .sponsor-logo {
                max-height: 39px;
                max-width: 155px;
            }

            /* --- LANGUAGE FAB --- */
            .lang-fab-container {
                bottom: 20px;
                right: 20px;
            }

            .fab-trigger {
                width: 50px;
                height: 50px;
            }

            /* --- FOOTER --- */
            .footer-col {
                min-width: 100%;
            }

            dl.contact dt {
                width: 80px;
            }

            dl.contact dd {
                margin-left: 90px;
            }
        }

        /* Ekstra małe telefony */
        @media (max-width: 480px) {
            .hero-compact {
                gap: 12px 15px;
                padding: 15px 12px;
            }

            .hero-title-main {
                font-size: 0.9rem;
            }

            .tab-button {
                font-size: 0.7rem;
                padding: 12px 3px;
            }

            .sponsors-section {
                flex-direction: column;
                gap: 12px;
            }

            .hero-compact-bottom {
                gap: 12px 15px;
                padding: 18px 12px !important;
            }

            .hero-compact-bottom .hero-title-main {
                font-size: 1rem;
            }
        }

        /* ════════════════════════════════════════════════
           NOWE HERO — DWA TURNIEJE 2026
        ════════════════════════════════════════════════ */
        :root {
            --ev-green:  #39ff14;
            --ev-orange: #ff8a00;
            --ev-muted:  #888888;
            --hero-focal-x: 49.04%;
            --hero-focal-y: 48%;
            --hero-focal-zoom: 1.65;
            --hero-img-opacity: 0.33;
        }

        @media (min-width: 769px) {
            :root {
                --hero-focal-y: 46%;
                --hero-focal-zoom: 1.4;
            }

            .hero-compact.hero-new:not(.hero-compact-bottom) {
                display: flex !important;
                flex-direction: column;
                justify-content: center;
            }
        }

        /* ── override flex/padding dla nowego hero ── */
        .hero-compact.hero-new {
            display: block !important;
            padding: 16px 22px !important;
            gap: 0 !important;
            position: relative;
            overflow: hidden;
            isolation: isolate;
            min-height: 155px;
            background: transparent !important;
        }

        .hero-focal-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
            border-radius: inherit;
            z-index: 0;
            pointer-events: none;
        }

        .hero-focal-bg img {
            position: absolute;
            top: 0;
            left: 0;
            max-width: none;
            opacity: var(--hero-img-opacity);
            user-select: none;
            -webkit-user-drag: none;
        }

        .hero-focal-overlay {
            position: absolute;
            inset: 0;
            border-radius: inherit;
            z-index: 1;
            pointer-events: none;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.45) 0%,
                rgba(0, 0, 0, 0.65) 48%,
                rgba(0, 0, 0, 0.80) 100%
            );
        }

        .hero-compact.hero-new > *:not(.hero-focal-bg):not(.hero-focal-overlay) {
            position: relative;
            z-index: 1;
        }

        /* Cienie czytelności — wszystkie napisy i liczniki w hero */
        .hero-compact.hero-new .hero-bottom-label,
        .hero-compact.hero-new .timer-label,
        .hero-compact.hero-new .timer-value,
        .hero-compact.hero-new .cta-label,
        .hero-compact.hero-new .cta-count {
            text-shadow:
                0 1px 2px rgba(0, 0, 0, 0.98),
                0 2px 8px rgba(0, 0, 0, 0.92),
                0 4px 16px rgba(0, 0, 0, 0.85);
        }

        .hero-compact.hero-new .event-name.green {
            text-shadow:
                0 1px 3px rgba(0, 0, 0, 0.98),
                0 2px 10px rgba(0, 0, 0, 0.92),
                0 0 8px rgba(57, 255, 20, 0.85),
                0 0 22px rgba(57, 255, 20, 0.40);
        }

        .hero-compact.hero-new .event-name.orange {
            text-shadow:
                0 1px 3px rgba(0, 0, 0, 0.98),
                0 2px 10px rgba(0, 0, 0, 0.92),
                0 0 8px rgba(255, 138, 0, 0.85),
                0 0 22px rgba(255, 138, 0, 0.40);
        }

        .hero-compact.hero-new .timer-value.live,
        .hero-compact.hero-new .timer-value.closed {
            text-shadow:
                0 1px 3px rgba(0, 0, 0, 0.98),
                0 2px 10px rgba(0, 0, 0, 0.92),
                0 0 8px rgba(255, 30, 30, 0.9),
                0 0 22px rgba(255, 30, 30, 0.55);
        }

        .hero-compact.hero-new .cta-button {
            box-shadow:
                0 0 20px rgba(255, 30, 30, 0.65),
                0 4px 18px rgba(0, 0, 0, 0.75);
        }

        /* ── tytuł dolnego HERO z separatorem ── */
        .hero-bottom-label {
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #ccc;
            text-align: center;
            position: relative;
            padding-bottom: 12px;
            margin-bottom: 14px;
        }

        .hero-bottom-label::after {
            content: "";
            position: absolute;
            bottom: 0; left: 10%;
            width: 80%; height: 1px;
            background: linear-gradient(90deg,
                transparent 0%,
                rgba(255,30,30,.35) 20%,
                rgba(255,30,30,.75) 50%,
                rgba(255,30,30,.35) 80%,
                transparent 100%);
            box-shadow: 0 0 6px rgba(255,30,30,.40);
        }

        /* ── HERO GRID (4 kolumny desktop) ── */
        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0,1fr) minmax(0,1.4fr);
            max-width: 600px;
            margin: 0 auto;
            column-gap: 20px;
            align-items: center;
            width: 100%;
        }

        

        /* ── NAZWA IMPREZY ── */
        .event-name {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            line-height: 1.15;
            white-space: normal;
            word-break: normal;
            overflow-wrap: normal;
            hyphens: none;
            padding: 0 6px;
            height: 70px;
            letter-spacing: 1.5px;
            font-size: 29px;
        }

        .event-name.green {
            color: var(--ev-green);
        }

        .event-name.orange {
            color: var(--ev-orange);
        }

        /* ── STOS TIMERÓW ── */
        .timers-stack {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            justify-content: center;
            gap: 6px;
            min-height: 70px;
            padding-left: 14px;
        }

        /* ── LINIA TIMERA ── */
        .timer-line {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .timer-label {
            font-family: 'Oswald', sans-serif;
            color: var(--ev-muted);
            text-transform: uppercase;
            margin-bottom: 3px;
            line-height: 1.2;
            font-size: .62rem;
            letter-spacing: 1.8px;
        }

        .timer-value {
            font-family: 'Roboto', monospace;
            color: var(--neon-red);
            font-weight: 700;
            letter-spacing: .25px;
            line-height: 1.2;
            font-size: 1.05rem;
        }

        /* "Zapisy zamknięte" i "TURNIEJ TRWA" — czerwony neon */
        .timer-value.live {
            color: var(--neon-red);
            animation: pulseNeon 2.5s ease-in-out infinite;
        }

        .timer-value.closed {
            color: var(--neon-red);
        }

        /* Górny hero — liczniki +20% */
        #hero-grid-top .timer-label {
            font-size: 0.744rem;
        }

        #hero-grid-top .timer-value {
            font-size: 1.26rem;
        }

        @keyframes pulseNeon {
            0%,100% {
                text-shadow:
                    0 1px 3px rgba(0, 0, 0, 0.98),
                    0 2px 10px rgba(0, 0, 0, 0.92),
                    0 0 8px rgba(255, 30, 30, 0.9),
                    0 0 22px rgba(255, 30, 30, 0.55);
            }
            50% {
                text-shadow:
                    0 1px 3px rgba(0, 0, 0, 0.98),
                    0 2px 10px rgba(0, 0, 0, 0.92),
                    0 0 14px rgba(255, 30, 30, 1),
                    0 0 36px rgba(255, 30, 30, 0.8);
            }
        }

        /* ── PRZYCISK ZAPISZ SIĘ ── */
        .cta-button {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 40px;
            border-radius: 999px;
            border: 1px solid var(--neon-red);
            color: #fff;
            text-decoration: none;
            background: radial-gradient(circle at 0 0, rgba(255,30,30,.5), #151515);
            box-shadow: 0 0 20px rgba(255,30,30,.65);
            animation: pulseGlow 3s ease-in-out infinite;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .cta-label {
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            line-height: 1;
            font-size: .9rem;
            letter-spacing: 1.3px;
        }

        .cta-count {
            color: #ffcccc;
            text-transform: uppercase;
            line-height: 1.2;
            font-size: .57rem;
            letter-spacing: .7px;
            margin-top: 3px;
        }

        /* ════════════════════════════════════════
           MOBILE HERO — max-width 768px
        ════════════════════════════════════════ */
        @media (max-width: 768px) {
            .hero-compact.hero-new { display: block !important; min-height: 190px; }

            .hero-bottom-label::after { display: none; }
            .hero-bottom-label { padding-bottom: 0; margin-bottom: 12px; font-size: .85rem; }

            .hero-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto;
                row-gap: 6px;
                position: relative;
                max-width: 400px;
                margin: 0 auto;
            }
            .hero-grid .event-name:nth-child(1)   { grid-column: 1; grid-row: 1; text-align: center; justify-content: center; }
            .hero-grid .timers-stack:nth-child(2) { grid-column: 1; grid-row: 2; justify-content: center; }

            .event-name  { height: 48px; letter-spacing: .9px; font-size: 16px; }

            .timers-stack {
                height: auto;
                padding-left: 0;
                padding-top: 6px;
                gap: 4px;
            }

            .timer-label { font-size: .52rem; letter-spacing: 1px; }
            .timer-value { font-size: .82rem; }

            #hero-grid-top .timer-label { font-size: 0.624rem; }
            #hero-grid-top .timer-value { font-size: 0.984rem; }

            .cta-button { height: 34px; }
            .cta-label  { font-size: .75rem; letter-spacing: .7px; }
            .cta-count  { font-size: .47rem; letter-spacing: .5px; }
        }
/* === MOBILE: disable heavy 3D hover effects (hero parallax stays active) === */
@media (max-width: 768px) {
    .box.excerpt,
    .calendar-item,
    .why-card,
    .hero-button,
    .button.medium,
    .cta-button {
        transform: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    #bg-video { display: none !important; }
}
