        /* CSS Variables & Reset */
        :root {
            --bg-color: #050505;
            --surface-color: #121212;
            --primary-red: #d30000;
            --primary-red-hover: #ff1a1a;
            --text-white: #ffffff;
            --text-gray: #a0a0a0;
            --border-color: #333333;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }
 img, video, model-viewer {
    max-width: 100%;
    height: auto;
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
        body {
            background-color: var(--bg-color);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* Navigation */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(5, 5, 5, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }
        .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 5vw, 40px);
}
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
                padding: 1rem clamp(1rem, 5vw, 2rem);

            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-white);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
        }

        .logo span {
            color: var(--primary-red);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            cursor: pointer;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--primary-red);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-white);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Page System */
        .page {
            display: none;
            animation: fadeIn 0.5s ease;
            padding-top: 70px; /* Account for fixed header */
            min-height: 100vh;
        }

        .page.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Hero Slider (Bloody.pl inspired) */
        .hero {
            position: relative;
                min-height: calc(100vh - 70px);
    height: auto;
    padding: 2rem 0;

            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease;
            display: flex;
            align-items: center;
            background-size: cover;
            background-position: center;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.2) 100%);
        }

        .slide.active {
            opacity: 1;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

        .hero-tag {
            color: var(--primary-red);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            display: block;
        }

        .hero h1 {
                font-size: clamp(2rem, 6vw, 4rem);

            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            max-width: 800px;
        }

        .hero p {
                font-size: clamp(1rem, 3vw, 1.2rem);

            color: var(--text-gray);
            max-width: 600px;
            margin-bottom: 2rem;
        }

        .btn {
            display: inline-block;
            background: var(--primary-red);
            color: var(--text-white);
            padding: 1rem 2.5rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn:hover {
            background: var(--primary-red-hover);
            transform: translateY(-2px);
        }

        .slider-nav {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 1rem;
        }

        .slider-dot {
            width: 40px;
            height: 4px;
            background: rgba(255,255,255,0.3);
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background: var(--primary-red);
        }

        /* Sections */
        .section {
                padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 2rem);
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .section-header p {
            color: var(--text-gray);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Grid Layouts */
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
.grid-2, .grid-3 {
    gap: clamp(1.5rem, 4vw, 3rem);
}
        /* Cards */
        .card {
            background: var(--surface-color);
            padding: 2.5rem;
            border-top: 3px solid transparent;
            transition: var(--transition);
        }

        .card:hover {
            border-top-color: var(--primary-red);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-white);
        }

        .card p {
            color: var(--text-gray);
        }

        /* Images */
        .img-fluid {
            width: 100%;
            height: auto;
            border-radius: 4px;
        }

        /* Footer */
        footer {
            background: #000;
            padding: 4rem 2rem 2rem;
            border-top: 1px solid var(--border-color);
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-col h4 {
            color: var(--text-white);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .footer-col ul li {
            margin-bottom: 0.8rem;
        }

        .footer-col ul li a {
            color: var(--text-gray);
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--primary-red);
        }

      .footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);

    display: flex;
    flex-wrap: wrap; /* ✅ important */
        justify-content: center; /* center instead of space-between */

    gap: 1rem;
    text-align: center;
}

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(18, 18, 18, 0.95);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 9999;
            border-top: 1px solid var(--primary-red);
        }

        .cookie-banner p {
            font-size: 0.85rem;
            color: var(--text-gray);
            max-width: 80%;
        }

        .cookie-banner a {
            color: var(--primary-red);
            text-decoration: underline;
        }
        .error {
    color: #ff4d4d;
    font-size: 0.8rem;
    margin-top: 5px;
}
.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-red);
    transform: translateX(4px);
}
        /* Responsive */
        @media (max-width: 992px) {
                .footer-grid {
        grid-template-columns: 1fr;
    }
            .hero h1 { font-size: 3rem; }
            .grid-2, .grid-3, .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--bg-color);
                flex-direction: column;
                padding: 2rem;
                text-align: center;
                border-bottom: 1px solid var(--border-color);
            }


            
            .nav-links.show { display: flex; }
            .mobile-menu-btn { display: block; }
            .hero h1 { font-size: 2.2rem; }
            .cookie-banner { flex-direction: column; gap: 1rem; text-align: center; }
            .cookie-banner p { max-width: 100%; }
        }
                @media (max-width: 500px) {
    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }
}    
.toast {
    position: fixed;
    top: 30px;
    right: 30px;
    background: #111;
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 9999;
        min-width: 250px;

}

/* show state */
.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* success */
.toast.success {
    border-left: 4px solid #00c853;
}

/* error */
.toast.error {
    border-left: 4px solid #ff5252;
}

.model-container {
  position: relative;
}

.hand {
  transition: opacity 0.3s ease;
}

.model-container:hover .hand {
  opacity: 0.3; /* fade */
}
.model-viewer {
    width: min(90vw, 350px);
    height: auto;
    aspect-ratio: 1 / 1;
}
.footer-col,
.footer-bottom {
    word-wrap: break-word;
    overflow-wrap: break-word;
}
footer {
    overflow: hidden;
}
@media (max-width: 400px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}