:root {
    --black: #050505;
    --dark: #111111;
    --card-dark: #0a0a0a;
    --white: #F8F8F8;
    --light-grey: #EBEBEB;
    --red: #C8102E;
    --gray: #707070;
    --blade-cut-btn: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, html {
    background-color: var(--black); color: var(--white);
    font-family: 'General Sans', sans-serif; overflow-x: hidden;
    width: 100%; cursor: none;
}

/* Typography */
h1, h2, h3, h4, h5, .bebas { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.05em; line-height: 0.85; text-transform: uppercase; }
.brush-font { font-family: 'Permanent Marker', cursive; letter-spacing: 2px; text-transform: uppercase; }
.text-red { color: var(--red); }
.slash { color: var(--red); font-family: 'General Sans', sans-serif; margin: 0 5px; font-weight: 300; }

.noise { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E'); 
    opacity: 0.02; z-index: 9000; pointer-events: none; 
}

.cursor {
    position: fixed; top: 0; left: 0; width: 24px; height: 24px;
    border: 1px solid rgba(248, 248, 248, 0.4); border-radius: 50%; pointer-events: none;
    z-index: 9999; transform: translate(-50%, -50%);
    transition: width 0.2s ease-out, height 0.2s ease-out, border-color 0.2s ease-out, background-color 0.2s ease-out;
    display: flex; align-items: center; justify-content: center;
}
.cursor.dark-mode { border-color: rgba(5, 5, 5, 0.4); }
.cursor::after {
    content: ''; width: 4px; height: 4px; background: var(--red); border-radius: 50%; transition: opacity 0.2s;
}
.cursor.active {
    width: 50px; height: 50px; /* Scaling up effect */
    border-color: var(--red); background: rgba(200, 16, 46, 0.05);
}
.cursor.active::after { opacity: 0; }

.preloader { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh; 
    background-color: var(--black); z-index: 9999; 
    display: flex; justify-content: center; align-items: center; flex-direction: column; 
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo { width: clamp(150px, 20vw, 300px); max-width: 90%; opacity: 1; }

header { 
    position: fixed; top: 0; left: 0; width: 100%; padding: clamp(20px, 3vw, 40px) clamp(20px, 5vw, 60px); 
    display: flex; justify-content: space-between; align-items: center; z-index: 100; transition: background-color 0.4s ease, padding 0.4s ease; 
}
header.scrolled { background-color: rgba(5, 5, 5, 0.95); backdrop-filter: blur(10px); padding: 20px clamp(20px, 5vw, 60px); border-bottom: 1px solid rgba(255,255,255,0.05); }
.logo img { width: clamp(120px, 15vw, 180px); max-width: 150px; }

/* Desktop Nav */
.desktop-nav { display: flex; gap: clamp(20px, 3vw, 40px); }
.desktop-nav a { color: var(--white); text-decoration: none; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s; }
.desktop-nav a:hover { color: var(--gray); }
.desktop-nav a.shop-link { color: #ff2a4b; text-shadow: 0 0 8px rgba(255, 42, 75, 0.4); }

/* Mobile Menu Toggle (Hamburger) */
.menu-toggle {
    display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 101;
}
.menu-toggle span { display: block; width: 30px; height: 1px; background-color: var(--white); transition: 0.3s; }
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Overlay */
.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-color: var(--black);
    z-index: 99; display: flex; flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav { display: flex; flex-direction: column; gap: 30px; text-align: center; }
.mobile-nav a { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--white); text-decoration: none; transition: color 0.3s; }
.mobile-nav a:hover { color: var(--gray); }
.mobile-nav a.shop-link { color: #ff2a4b; }

/* Hero Section */
.hero-slider { position: relative; width: 100%; height: 100vh; overflow: hidden; background-color: var(--black); }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; visibility: hidden; z-index: 1; display: flex; align-items: center; padding: 0 clamp(20px, 15vw, 200px); transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out; }
.slide.active { opacity: 1; visibility: visible; z-index: 2; }
.slide-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: -1; transform: scale(1); transition: transform 0s; }
.slide.active .slide-bg { transform: scale(1.08); transition: transform 8s ease-out; }
.slide::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(5,5,5,0.85) 0%, rgba(5,5,5,0.4) 40%, rgba(5,5,5,0) 100%); z-index: -1; }
.slide-content { position: relative; z-index: 3; max-width: 800px; margin-left: clamp(40px, 8vw, 100px); }
.hero-title { font-size: clamp(60px, 12vw, 160px); color: var(--white); margin-bottom: 20px; display: flex; flex-direction: column; line-height: 0.85; }
.hero-title .red-square { display: inline-block; width: clamp(15px, 2.5vw, 30px); height: clamp(15px, 2.5vw, 30px); background-color: var(--red); margin-left: 5px; }
.hero-sub { font-size: clamp(11px, 1vw, 13px); letter-spacing: 0.3em; line-height: 1.8; margin-bottom: 40px; color: var(--white); font-weight: 500; position: relative; padding-left: 20px; }
.hero-sub::before { content: ''; position: absolute; left: 0; top: 5px; width: 2px; height: calc(100% - 10px); background-color: var(--red); transform: skewX(-15deg); }

/* Buttons */
.btn-group { display: flex; gap: 20px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 15px 30px; font-family: 'General Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; color: var(--white); position: relative; transition: color 0.3s; cursor: pointer; }
.btn-red { background-color: var(--white); color: var(--white); border: none; clip-path: var(--blade-cut-btn); transition: color 0.4s ease, transform 0.4s ease; position: relative; z-index: 1; }
.btn-red::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--red); z-index: -1; transition: transform 0.4s ease-in-out; }
.btn-red:hover { color: var(--red); transform: scale(1.05); }
.btn-red:hover::before { transform: translateX(100%); }
.btn-red .arrow { margin-left: 10px; font-size: 14px; transition: transform 0.4s ease; }
.btn-red:hover .arrow { transform: translateX(4px); }
.btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.3); clip-path: var(--blade-cut-btn); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

/* Vertical Slider Controls */
.slider-controls-vertical { position: absolute; left: clamp(10px, 3vw, 40px); top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; align-items: center; gap: 30px; z-index: 10; }
.page-num { font-family: 'General Sans', sans-serif; font-size: 12px; font-weight: 600; color: var(--gray); cursor: pointer; transition: color 0.3s; position: relative; }
.page-num.active { color: var(--red); }
.page-line-vertical { width: 1px; height: 40px; background-color: rgba(255,255,255,0.2); }

/* Scroll Indicator */
.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 10; }
.scroll-text { font-family: 'General Sans', sans-serif; font-size: 10px; letter-spacing: 0.3em; color: var(--gray); text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background-color: rgba(255,255,255,0.2); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 50%; background-color: var(--white); animation: scrollDown 2s infinite ease-in-out; }
@keyframes scrollDown { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }

/* Collection Light */
.collection-light { background-color: var(--white); color: var(--black); padding: 120px clamp(20px, 5vw, 60px); position: relative; z-index: 10; }
.collection-header-wrapper { max-width: 1400px; margin: 0 auto 60px auto; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.2em; margin-bottom: 20px; display: block; color: var(--red); }
.collection-main-title { font-size: clamp(40px, 8vw, 100px); line-height: 0.85; color: var(--black); }
.collection-main-title .brush-text { font-size: clamp(30px, 5vw, 70px); display: block; margin-top: 10px; transform: rotate(-2deg); }
.collection-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1400px; margin: 0 auto; }
.light-card { background-color: var(--light-grey); padding: 20px; display: flex; flex-direction: column; position: relative; transition: transform 0.4s ease; cursor: pointer; }
.light-card:hover { transform: translateY(-10px); }
.card-number { font-weight: 600; font-size: 16px; color: var(--red); position: absolute; top: 20px; left: 20px; z-index: 2; }
.card-img-wrap { width: 100%; aspect-ratio: 1/1; margin-bottom: 20px; display: flex; justify-content: center; align-items: center; padding: 20px; }
.card-img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform 0.6s ease; }
.light-card:hover .card-img { transform: scale(1.08); }
.card-title { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--black); line-height: 0.9; margin-bottom: 20px; }
.card-price { font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 20px; }
.btn-black-solid { width: 100%; background-color: var(--red); color: var(--white); border: none; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; font-family: 'General Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; position: relative; z-index: 1; overflow: hidden; transition: color 0.4s ease, letter-spacing 0.4s ease, transform 0.4s ease; }
.btn-black-solid::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--black); z-index: -1; transition: transform 0.4s ease-in-out; }
.btn-black-solid:hover { color: var(--white); letter-spacing: 0.15em; transform: scale(1.02); }
.btn-black-solid:hover::before { transform: translateX(100%); }
.btn-black-solid .arrow { color: var(--red); font-size: 16px; transition: transform 0.3s, color 0.4s ease; }
.btn-black-solid:hover .arrow { transform: translate(3px, -3px); color: var(--white); }

/* The Code Section */
.the-code-section { background-color: var(--black); padding: 120px clamp(20px, 5vw, 60px) 60px clamp(20px, 5vw, 60px); position: relative; overflow: hidden; }
.code-intro-wrapper { display: flex; justify-content: space-between; max-width: 1600px; margin: 0 auto 80px auto; position: relative; gap: 40px; }
.code-text-side { width: 45%; padding-top: 20px; position: relative; z-index: 5; }
.code-main-title { font-size: clamp(50px, 8vw, 140px); line-height: 0.85; color: var(--white); margin-bottom: 30px; }
.code-main-title .brush-text { font-family: 'Permanent Marker', cursive; font-size: clamp(40px, 7vw, 110px); color: var(--red); text-transform: uppercase; letter-spacing: 0; display: block; margin-top: 5px; transform: rotate(-2deg); }
.code-desc-side { font-size: 15px; color: var(--gray); line-height: 1.8; font-weight: 400; position: relative; padding-left: 25px; margin-top: 40px; }
.code-desc-side::before { content: ''; position: absolute; left: 0; top: 8px; width: 2px; height: 15px; background-color: var(--red); transform: skewX(-20deg); }
.code-image-side { width: 50%; position: relative; display: flex; align-items: center; }
.code-img-container { width: 100%; height: 100%; min-height: 500px; position: relative; background-image: url('https://images.unsplash.com/photo-1541252260730-0412e8e2108e?q=80&w=2800&auto=format&fit=crop'); background-size: cover; background-position: center; filter: grayscale(80%) contrast(140%) brightness(0.4); }
.grunge-x { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: 'Permanent Marker', cursive; font-size: clamp(150px, 30vw, 500px); color: rgba(255,255,255,0.7); line-height: 1; mix-blend-mode: overlay; pointer-events: none; z-index: 2; }
.grunge-x::after { content: 'X'; position: absolute; top: 10px; left: -10px; color: var(--red); z-index: -1; opacity: 0.4; }
.side-text-vertical { position: absolute; right: -30px; top: 50%; transform: translateY(-50%); font-size: 10px; letter-spacing: 0.3em; color: var(--gray); line-height: 2; text-align: right; border-right: 1px solid var(--red); padding-right: 15px; z-index: 3; }
.code-cards-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; max-width: 1600px; margin: 0 auto; }
.code-card { background-color: var(--card-dark); padding: 40px 30px; position: relative; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,0.02); transition: transform 0.4s ease, border-color 0.4s ease, background-color 0.4s ease; overflow: hidden; }
.code-card:hover { transform: translateY(-10px); border-color: rgba(255,255,255,0.1); background-color: #0f0f0f; }
.card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; }
.code-card-num { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--red); line-height: 1; }
.card-icon { width: 40px; height: 40px; }
.card-icon svg { width: 100%; height: 100%; stroke: var(--white); fill: none; stroke-width: 1.5; opacity: 0.8; transition: stroke 0.4s, opacity 0.4s; }
.code-card:hover .card-icon svg { stroke: var(--red); opacity: 1; }
.code-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--white); line-height: 0.95; margin-bottom: 20px; position: relative; letter-spacing: 0.08em; }
.code-card-title span { display: block; }
.code-card-title::before { content: '/'; position: absolute; left: -15px; top: -20px; color: var(--red); font-family: 'General Sans', sans-serif; font-size: 16px; opacity: 0.5; }
.code-card-text { font-size: 13px; color: var(--gray); line-height: 1.6; z-index: 2; }

/* =====================================================
   BANNER "WE DON'T FOLLOW HOCKEY..." (POPRAWIONy DLA MOBILE)
===================================================== */
.code-banner {
    max-width: 1600px;
    margin: 60px auto 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px clamp(20px, 5vw, 60px); 
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; /* Na komputerach bez zmian w jednej linii */
    gap: 20px;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 1; 
    min-width: 0;
}

.banner-slash-icon {
    width: 15px;
    height: 25px;
    background-color: var(--red);
    transform: skewX(-20deg);
    flex-shrink: 0; 
}

.banner-text {
    font-family: 'General Sans', sans-serif;
    font-size: clamp(10px, 1.2vw, 13px); 
    letter-spacing: 0.2em;
    font-weight: 500;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis; 
}

/* --- POPRAWKA DLA MOBILE (poniżej 768px) --- */
@media (max-width: 768px) {
    .code-banner {
        flex-wrap: wrap !important; /* Pozwala na zejście przycisku pod tekst na telefonie */
        justify-content: center !important;
        text-align: center;
        padding: 25px 20px !important;
        gap: 20px !important;
    }

    .banner-content {
        justify-content: center;
        width: 100%;
    }

    .banner-text {
        white-space: normal !important; /* Odrywa blokadę obcinania tekstu na mobile */
        font-size: 11px !important; /* Delikatne dopasowanie rozmiaru */
        line-height: 1.4;
    }

    .code-banner .core-gear-link-wrapper {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }
}

/* Collection Dark */
.collection-dark { background-color: var(--black); color: var(--white); padding: 120px clamp(20px, 5vw, 60px); position: relative; border-top: 1px solid rgba(255,255,255,0.05); }
.dark-card { background-color: var(--card-dark); padding: 20px; display: flex; flex-direction: column; position: relative; transition: transform 0.4s ease, border-color 0.4s ease; border: 1px solid rgba(255,255,255,0.02); cursor: pointer; }
.dark-card:hover { transform: translateY(-10px); border-color: rgba(255,255,255,0.1); }
.dark-card .card-title { color: var(--white); }
.dark-card .card-price { color: var(--gray); }
.dark-card .btn-black-solid { background-color: var(--red); color: var(--black); }
.dark-card .btn-black-solid::before { background-color: var(--white); }
.dark-card .btn-black-solid:hover { color: var(--white); }
.dark-card .card-img { mix-blend-mode: normal; }
.card-img.bw-to-color { filter: grayscale(100%); transition: transform 0.6s ease, filter 0.4s ease; }
.dark-card:hover .card-img.bw-to-color { filter: grayscale(0%); }

/* Newsletter */
.newsletter-section { background-color: var(--red); color: var(--white); padding: 100px clamp(20px, 5vw, 60px); text-align: center; position: relative; overflow: hidden; clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%); margin: 40px 0; }
.newsletter-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(50px, 8vw, 100px); line-height: 0.9; margin-bottom: 20px; text-transform: uppercase; }
.newsletter-sub { font-size: 14px; letter-spacing: 0.2em; margin-bottom: 40px; font-weight: 500; }
.newsletter-form { display: flex; max-width: 500px; margin: 0 auto; border-bottom: 2px solid var(--white); padding-bottom: 10px; }
.newsletter-input { flex-grow: 1; background: transparent; border: none; color: var(--white); font-family: 'General Sans', sans-serif; font-size: 16px; outline: none; }
.newsletter-input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-btn { background: transparent; border: none; color: var(--white); font-size: 24px; cursor: pointer; transition: transform 0.3s; }
.newsletter-btn:hover { transform: translateX(5px); }

/* Footer */
footer { background-color: var(--black); padding: 80px clamp(20px, 5vw, 60px) 40px clamp(20px, 5vw, 60px); border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 60px; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
.footer-logo img { width: 150px; margin-bottom: 20px; }
.footer-desc { color: var(--gray); font-size: 13px; max-width: 300px; line-height: 1.6; }
.footer-links { display: flex; gap: clamp(40px, 8vw, 100px); }
.footer-col { display: flex; flex-direction: column; gap: 15px; }
.footer-col-title { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--white); letter-spacing: 0.05em; margin-bottom: 10px; }
.footer-col a { color: var(--gray); text-decoration: none; font-size: 13px; transition: color 0.3s; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; flex-wrap: wrap; gap: 20px; }
.copyright { color: var(--gray); font-size: 12px; letter-spacing: 0.1em; }
.social-links { display: flex; gap: 20px; }
.social-links a { color: var(--white); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.3s; }
.social-links a:hover { color: var(--red); }

/* Core Gear Link */
.core-gear-link-wrapper { width: 100%; max-width: 1400px; margin: 50px auto 0 auto; display: flex; justify-content: flex-end; padding: 0 20px; }
.core-gear-link { font-family: 'General Sans', sans-serif; font-size: 13px; font-weight: 700; color: var(--red); text-decoration: none; letter-spacing: 0.15em; text-transform: uppercase; display: inline-flex; align-items: center; transition: letter-spacing 0.4s ease, color 0.4s ease; }
.core-gear-link .arrow { margin-left: 10px; font-size: 16px; transition: transform 0.4s ease; }
.core-gear-link:hover { color: var(--white); letter-spacing: 0.25em; }
.core-gear-link:hover .arrow { transform: translate(4px, -4px); color: var(--red); }

/* =====================================================
   MEDIA QUERIES (GLOBALNE)
===================================================== */
@media (max-width: 1024px) {
    .desktop-nav { display: none; }
    .menu-toggle { display: flex; }
    .collection-header-wrapper { flex-direction: column; align-items: flex-start; }
    .collection-grid { grid-template-columns: repeat(2, 1fr); }
    .code-intro-wrapper { flex-direction: column; gap: 15px !important; margin-bottom: 20px !important; }
    .code-text-side, .code-image-side { width: 100%; }
    .code-image-side { height: 400px; min-height: auto; }
    .code-cards-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
    
    .the-code-section { padding: 40px 15px 20px 15px !important; }
    .code-img-container { min-height: 250px !important; }
    #code, .collection-light, .collection-dark { margin-top: 0 !important; margin-bottom: 0 !important; }
    .code-main-title { font-size: 50px !important; margin-bottom: 10px !important; }
    .code-desc-side { margin-top: 15px !important; font-size: 13px !important; }
    .code-card { padding: 20px !important; }

    /* Bezpieczny odstęp dla bannera bez łamania jednej linii */
    .code-banner { margin: 20px 0 0 0 !important; padding: 10px 15px !important; }
}

@media (max-width: 768px) {
    .collection-grid { grid-template-columns: 1fr; }
    /* USUNIĘTO zduplikowane style psujące układ .code-banner */
    .slider-controls-vertical { display: none; }
    .slide-content { margin-left: 0; }
    .btn-group { flex-direction: column; width: 100%; }
    .btn { width: 100%; }
    .footer-bottom { flex-direction: column-reverse; justify-content: center; text-align: center; gap: 20px; }
    .social-links { justify-content: center; width: 100%; }
    .core-gear-link-wrapper { justify-content: center; margin: 30px auto 0 auto; }
    
    .the-code-section { padding: 60px 20px 40px 20px !important; }
    .code-intro-wrapper { margin-bottom: 30px !important; gap: 20px !important; }
    .code-img-container { min-height: 300px !important; }
    .the-code-section + section { margin-top: -20px; }
    .code-main-title { font-size: 60px !important; margin-bottom: 15px !important; }
    .code-main-title .brush-text { font-size: 45px !important; }
}

/* =====================================================
   BLACK CREASE COMMUNITY
===================================================== */
.bc-community { background: var(--black); padding: 120px 5vw; }
.bc-community-grid { max-width: 1500px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1.15fr 1fr; grid-template-rows: 330px 330px; gap: 30px; align-items: stretch; }
.bc-card { position: relative; overflow: hidden; cursor: zoom-in; background: #111; box-shadow: 0 0 16px rgba(140, 10, 30, 0.45); border: 1px solid rgba(140, 10, 30, 0.2); transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease; }
.bc-card img { width: 100%; height: 100%; object-fit: cover; display: block; animation: slowZoom 18s ease-in-out infinite alternate; transition: transform 0.8s cubic-bezier(.22, 1, .36, 1); }
.bc-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent, rgba(0,0,0,.08), rgba(0,0,0,.22)); pointer-events: none; }
.bc-card:hover { transform: translateY(-4px); border-color: var(--red); box-shadow: 0 0 0 1px var(--red), 0 0 16px rgba(200, 16, 46, 0.85); }
.bc-card:hover img { transform: scale(1.12); }
.bc-card.bc-large-left { grid-column: 1; grid-row: 1 / span 2; }
.bc-card.bc-top-left { grid-column: 2; grid-row: 1; }
.bc-content { grid-column: 3; grid-row: 1 / span 2; display: flex; flex-direction: column; justify-content: center; padding: 10px; }
.bc-card.bc-top-right { grid-column: 4; grid-row: 1; }
.bc-card.bc-bottom-left { grid-column: 1; grid-row: 2; }
.bc-card.bc-bottom-center { grid-column: 2; grid-row: 2; }
.bc-card.bc-large-right { grid-column: 4; grid-row: 1 / span 2; }
.bc-label { display: inline-block; margin-bottom: 24px; color: var(--red); font-size: 13px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; }
.bc-content h2 { font-family: "Bebas Neue", sans-serif; font-size: clamp(60px, 6vw, 110px); line-height: .88; color: var(--white); margin: 0 0 30px; text-transform: uppercase; }
.bc-content h2 span { color: var(--red); }
.bc-content p { color: #b5b5b5; font-size: 17px; line-height: 1.8; max-width: 340px; margin: 0; }
.bc-links { display: flex; gap: 34px; margin-top: 42px; }
.bc-links a { color: white; text-decoration: none; font-size: 13px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; transition: .25s; }
.bc-links a:hover { color: var(--red); }
.bc-hash { margin-top: 30px; color: #666; letter-spacing: .18em; font-size: 14px; }

@media (max-width: 1100px) {
    .bc-community-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .bc-content { grid-column: 1 / span 2; grid-row: auto; text-align: center; padding: 40px 0; }
    .bc-content p { margin: 0 auto; }
    .bc-links { justify-content: center; }
    .bc-hash { text-align: center; }
    .bc-card { grid-column: auto !important; grid-row: auto !important; height: 340px; display: block !important; }
}
@media (max-width: 768px) {
    .bc-community { padding: 70px 20px; }
    .bc-community-grid { display: flex; flex-direction: column; gap: 20px; }
    .bc-content { order: -1; text-align: left; padding: 10px 0 20px 0; }
    .bc-content h2 { font-size: 52px; }
    .bc-card { height: 300px; visibility: visible !important; opacity: 1 !important; }
}

/* Community Lightbox */
.bc-lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.96); display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: 0.35s; z-index: 99999; }
.bc-lightbox.active { opacity: 1; visibility: visible; }
.bc-lightbox img { max-width: 92vw; max-height: 92vh; object-fit: contain; transform: scale(0.9); transition: 0.35s; }
.bc-lightbox.active img { transform: scale(1); }
.bc-close { position: absolute; top: 35px; right: 45px; color: white; font-size: 55px; cursor: pointer; transition: 0.3s; font-family: Arial; }
.bc-close:hover { color: var(--red); transform: rotate(90deg); }

/* Promo Video */
.video-hero-section { background: #000; padding: 40px 0; width: 100%; margin: 0; display: flex; align-items: center; justify-content: center; }
.promo-video { display: block; width: 100%; max-width: none; height: auto; border-radius: 0; box-shadow: none; }

/* =====================================================
   CORE GEAR SUBPAGE
===================================================== */
.page-hero { padding: 180px 20px 80px 20px; text-align: center; position: relative; }
.page-hero .eyebrow { font-size: 14px; font-weight: 700; letter-spacing: 0.3em; color: var(--red); display: block; margin-bottom: 15px; }
.page-hero h1 { font-size: clamp(60px, 10vw, 150px); color: var(--white); }
.page-hero .brush-accent { display: block; font-family: 'Permanent Marker', cursive; font-size: clamp(40px, 7vw, 100px); color: var(--red); transform: rotate(-2deg); margin-top: 5px; }
.core-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1400px; margin: 0 auto 100px auto; padding: 0 clamp(20px, 5vw, 60px); }
.product-card { background-color: var(--card-dark); border: 1px solid rgba(255,255,255,0.02); padding: 20px; display: flex; flex-direction: column; position: relative; transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease; }
.product-card:hover { transform: translateY(-8px); border-color: rgba(200, 16, 46, 0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.9); }
.img-wrapper { width: 100%; aspect-ratio: 4/5; position: relative; overflow: hidden; margin-bottom: 25px; background-color: #000; }
.img-primary { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; opacity: 1; filter: grayscale(100%); transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s ease; }
.img-secondary { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; opacity: 0; transform: scale(1.15); filter: blur(10px); transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s ease, filter 0.6s ease; }
.product-card:hover .img-primary { opacity: 0; transform: scale(0.95); }
.product-card:hover .img-secondary { opacity: 1; transform: scale(1); filter: blur(0); z-index: 3; }
.info-wrap { text-align: left; margin-bottom: 20px; position: relative; z-index: 4; border-left: 2px solid transparent; padding-left: 10px; transition: border-color 0.4s ease; }
.product-card:hover .info-wrap { border-left: 2px solid var(--red); }
.item-title { font-size: 32px; color: var(--white); margin-bottom: 5px; }
.item-price { font-size: 14px; color: var(--gray); font-weight: 600; letter-spacing: 0.1em; }
.btn-buy { width: 100%; background-color: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.2); padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; font-family: 'General Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; position: relative; z-index: 4; overflow: hidden; transition: color 0.4s ease, border-color 0.4s ease, letter-spacing 0.4s ease; }
.btn-buy::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--red); z-index: -1; transform: translateX(-101%); transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1); }
.product-card:hover .btn-buy { border-color: var(--red); }
.btn-buy:hover { color: var(--white); letter-spacing: 0.2em; }
.btn-buy:hover::before { transform: translateX(0); }
.btn-buy .arrow { color: var(--red); font-size: 16px; transition: transform 0.3s, color 0.3s; }
.btn-buy:hover .arrow { color: var(--white); transform: translate(4px, -4px); }

@media (max-width: 1024px) { .core-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .core-grid { grid-template-columns: 1fr; gap: 30px; } .page-hero { padding-top: 120px; } }

/* =====================================================
   THE CODE SUBPAGE
===================================================== */
.code-page-wrapper { width: 100%; overflow: hidden; }
.tc-hero { padding: 220px clamp(20px, 5vw, 60px) 100px clamp(20px, 5vw, 60px); display: flex; align-items: center; position: relative; border-bottom: 1px solid rgba(255,255,255,0.05); }
.tc-hero-content { max-width: 1400px; margin: 0 auto; width: 100%; }
.tc-title { font-size: clamp(50px, 10vw, 150px); color: var(--white); line-height: 0.85; margin-bottom: 30px; }
.tc-title .tc-brush { font-family: 'Permanent Marker', cursive; color: var(--red); display: block; font-size: clamp(40px, 8vw, 130px); transform: rotate(-2deg); margin-top: 10px; }
.tc-subtitle { font-size: 15px; color: var(--gray); letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; position: relative; padding-left: 20px; display: inline-block; }
.tc-subtitle::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%) skewX(-15deg); width: 3px; height: 100%; background-color: #71c3f8; }
.tc-principles { max-width: 1400px; margin: 0 auto; padding: 150px clamp(20px, 5vw, 60px); display: flex; flex-direction: column; gap: 180px; }
.tc-block { position: relative; display: flex; align-items: center; width: 100%; }
.tc-block.right-align { justify-content: flex-end; text-align: right; }
.tc-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(200px, 35vw, 550px); line-height: 0.8; position: absolute; color: #3f3f3f; -webkit-text-stroke: 2px rgba(255,255,255,0.03); z-index: 1; top: 50%; transform: translateY(-50%); left: -8%; pointer-events: none; }
.tc-block.right-align .tc-num { left: auto; right: -8%; }
.tc-content { position: relative; z-index: 2; max-width: 700px; }
.tc-block:not(.right-align) .tc-content { padding-left: clamp(20px, 10vw, 100px); }
.tc-block.right-align .tc-content { padding-right: clamp(20px, 10vw, 100px); }
.tc-content h2 { font-size: clamp(45px, 7vw, 90px); color: var(--white); margin-bottom: 15px; }
.tc-slash { color: var(--red); font-family: 'General Sans', sans-serif; font-weight: 300; }
.tc-content h3 { font-family: 'General Sans', sans-serif; font-size: clamp(16px, 2vw, 24px); color: #71c3f8; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 30px; line-height: 1.4; }
.tc-content p { font-size: 16px; color: #dddada; line-height: 1.8; font-weight: 400; }
.tc-outro { border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 150px 20px; text-align: center; background: linear-gradient(0deg, rgba(10,10,10,1) 0%, rgba(5,5,5,1) 100%); }
.tc-outro-title { font-size: clamp(50px, 8vw, 120px); color: var(--white); margin-bottom: 40px; }
.tc-blue { color: #71c3f8; }
.tc-brand { font-size: 20px; font-weight: 700; letter-spacing: 0.4em; color: var(--white); margin-bottom: 20px; }
.tc-tagline { font-family: 'Bebas Neue', sans-serif; font-size: clamp(24px, 4vw, 40px); color: var(--gray); letter-spacing: 0.1em; }

@media (max-width: 768px) {
    .tc-principles { gap: 120px; padding-top: 60px; }
    .tc-block.right-align { text-align: left; justify-content: flex-start; }
    .tc-block:not(.right-align) .tc-content, .tc-block.right-align .tc-content { padding-left: 0; padding-right: 0; }
    .tc-num { top: -50px; transform: translateY(0); left: -10px !important; font-size: 220px; -webkit-text-stroke: 1px rgba(255,255,255,0.05); }
}

@media (max-width: 768px) {
    /* Upewnij się, że te klasy nie mają tutaj display: none; ani kolorów znikających w tle */
    .core-gear-link-wrapper {
        display: block !important;
    }
    .core-gear-link {
        color: #ffffff !important;
    }
}
/* --- POPRAWKA DLA EFEKTU HOVER / ZDJĘĆ NA MOBILE --- */

/* Domyślnie na telefonach ukrywamy drugie zdjęcie, żeby nie były one jedno pod drugim */
@media screen and (max-width: 768px) {
    .product-card .img-secondary,
    .dark-card .img-secondary,
    .light-card .img-secondary {
        display: none !important;
    }
    
    .product-card .img-primary,
    .dark-card .img-primary,
    .light-card .img-primary {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Na komputerach (powyżej 768px) przywracamy płynne przełączanie zdjęć po najechaniu */
@media screen and (min-width: 769px) {
    .product-card .img-wrapper,
    .dark-card .card-img-wrap,
    .light-card .card-img-wrap {
        position: relative;
    }

    .product-card .img-secondary,
    .dark-card .card-img-wrap img:nth-child(2),
    .light-card .card-img-wrap img:nth-child(2) {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .product-card:hover .img-secondary,
    .dark-card:hover .card-img-wrap img:nth-child(2),
    .light-card:hover .card-img-wrap img:nth-child(2) {
        opacity: 1;
    }
}

/* --- BLACK CREASE CONTACT STYLES --- */
.contact-page-wrapper {
    padding-top: 100px;
    background-color: #000000;
    color: #ffffff;
    width: 100%;
    box-sizing: border-box;
}

.contact-hero, .contact-section {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.contact-hero {
    padding-top: 50px;
    padding-bottom: 20px;
}

.contact-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 0.95;
    letter-spacing: 2px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.contact-subtitle {
    font-family: 'General Sans', sans-serif;
    font-size: 16px;
    color: #a0a0a0;
    max-width: 600px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-info-box, .contact-form-box {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    padding: 35px;
    box-sizing: border-box;
}

.contact-info-box h2, .contact-form-box h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.contact-desc {
    color: #b0b0b0;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.5;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-left: 2px solid var(--red, #ff0033);
    padding-left: 15px;
}

.method-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: #707070;
    font-family: 'Bebas Neue', sans-serif;
}

.method-val {
    font-size: 16px;
    font-weight: 500;
}

.contact-socials {
    display: flex;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
}

.contact-socials a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-socials a:hover {
    color: var(--red, #ff0033);
}

.brutal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: #a0a0a0;
}

.brutal-form input,
.brutal-form textarea {
    width: 100%;
    background: #000000;
    border: 1px solid #222222;
    padding: 14px;
    color: #ffffff;
    font-family: 'General Sans', sans-serif;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.brutal-form input:focus,
.brutal-form textarea:focus {
    border-color: var(--blue, #0055ff);
}

.w-100 {
    width: 100%;
    padding: 15px;
    background: #ffffff;
    color: #000000;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    box-sizing: border-box;
}

.w-100:hover {
    background: var(--red, #ff0033);
    color: #ffffff;
}

.contact-outro {
    text-align: center;
    padding: 50px 20px;
    border-top: 1px solid #1a1a1a;
    margin-top: 40px;
}

.contact-outro-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 4vw, 50px);
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .contact-info-box, .contact-form-box {
        padding: 20px;
    }
}

/* --- NEON GEAR ACCENTS --- */

/* Fioletowy tekst "NEON" w głównym nagłówku */
.text-neon-purple {
    color: #b829ff;
    text-shadow: 
        0 0 5px rgba(184, 41, 255, 0.5),
        0 0 15px rgba(184, 41, 255, 0.4),
        0 0 30px rgba(184, 41, 255, 0.3);
}

/* Mały tag "NEON" obok tytułów produktów */
.neon-tag {
    color: #b829ff;
    font-size: 0.6em;
    vertical-align: super;
    margin-left: 5px;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(184, 41, 255, 0.6);
}

/* Przyciski w klimacie Neon Gear */
.btn-buy.btn-neon {
    background-color: transparent;
    color: #b829ff;
    border: 1px solid #b829ff;
    box-shadow: 
        inset 0 0 10px rgba(184, 41, 255, 0.2), 
        0 0 10px rgba(184, 41, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-buy.btn-neon:hover {
    background-color: #b829ff;
    color: #000; /* Matte Black dla mocnego kontrastu przy najeździe */
    box-shadow: 
        0 0 15px rgba(184, 41, 255, 0.6), 
        0 0 30px rgba(184, 41, 255, 0.4);
}

.btn-buy.btn-neon .arrow {
    color: inherit;
}

/* --- NEON GEAR OVERRIDES --- */

/* 1. Zdejmuje czarno-biały filtr z koszulek, zachowując rozmiary i animacje */
img.img-primary.img-neon {
    filter: none !important;
}

/* 2. Zmienia tekst "THE NIGHT SHIFT" oraz ukośnik "/" na czystą biel */
.page-hero .eyebrow,
.page-hero .eyebrow .slash {
    color: var(--white) !important;
}

/* =====================================================
   NEON GEAR OVERRIDES - ZMIANA HOVERA TYLKO DLA NEON
===================================================== */

/* Pancerne nadpisanie hovera TYLKO w sekcji #collection */
section#collection a.core-gear-link:hover {
    color: #b829ff !important;
    letter-spacing: 0.25em !important; 
    background-color: transparent !important;
}

/* Pancerne nadpisanie strzałki TYLKO w sekcji #collection */
section#collection a.core-gear-link:hover .arrow {
    color: #b829ff !important;
}






/* =====================================================
   COLLECTIONS SUBPAGE (PANCERNY UKŁAD BLACK CREASE)
===================================================== */
.collections-page-wrapper {
    padding-top: 180px;
    padding-bottom: 120px;
    background-color: var(--black);
    min-height: 100vh;
    width: 100%;
}

.col-hero {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
}

.col-hero .eyebrow {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--white);
    display: block;
    margin-bottom: 15px;
}

.col-hero h1 {
    font-size: clamp(60px, 10vw, 150px);
    color: var(--white);
    line-height: 0.9;
}

.col-hero .brush-text {
    font-family: 'Permanent Marker', cursive;
    display: block;
    transform: rotate(-2deg);
    margin-top: 10px;
    font-size: clamp(50px, 8vw, 120px);
}

.col-list-section {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 0 clamp(20px, 5vw, 60px);
}

/* PANCERNA KARTA KOLEKCJI */
.col-card {
    display: flex;
    flex-direction: row; /* Wymusza układ poziomy niezależnie od zawartości */
    background-color: var(--card-dark);
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    cursor: pointer;
    min-height: 500px; /* Sztywne minimum wysokości zapobiega zapadaniu się kart */
    transition: all 0.4s ease;
}

/* ZABLOKOWANY KONTENER NA ZDJĘCIE */
.col-image-side {
    flex: 0 0 50%; /* Zdjęcie zajmuje równe 50% szerokości karty */
    position: relative; /* Punkt odniesienia dla absolute */
    overflow: hidden; /* Odcina wszystko, co wystaje poza te 50% */
    background: #000;
}

/* ZDJĘCIE, KTÓRE SŁUCHA KONTENERA, A NIE NA ODWRÓT */
.col-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Automatycznie przycina fotkę, by idealnie wypełniła kadr */
    object-position: center; /* Trzyma środek grafiki */
    filter: grayscale(100%) brightness(0.7) contrast(1.2);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), filter 0.5s ease;
}

.col-card:hover .col-img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1) contrast(1.1); 
}

/* SEKCJA TEKSTOWA */
.col-text-side {
    flex: 1; /* Wypełnia pozostałą wolną przestrzeń (drugie 50%) */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(30px, 5vw, 80px);
    position: relative; 
    z-index: 2;
    border-left: 1px solid rgba(255, 255, 255, 0.02);
}

.col-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(50px, 6vw, 90px);
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    line-height: 0.9;
}

.col-desc {
    font-family: 'General Sans', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 90%;
}

/* PODŚWIETLENIA (HOVER) */
.col-card:hover {
    transform: translateY(-5px);
    background-color: #0d0d0d;
    border-color: rgba(200, 16, 46, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.9), inset 0 0 20px rgba(200, 16, 46, 0.05);
}

.col-card.neon-card:hover {
    border-color: rgba(184, 41, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.9), inset 0 0 20px rgba(184, 41, 255, 0.08);
}

.col-card:hover .core-gear-link {
    color: var(--white);
    letter-spacing: 0.25em;
}

.col-card:hover .core-gear-link .arrow {
    color: var(--red);
    transform: translate(4px, -4px);
}

.col-card.neon-card:hover .core-gear-link.neon-link {
    color: #b829ff !important;
}

.col-card.neon-card:hover .core-gear-link.neon-link .arrow {
    color: #b829ff !important;
}

/* RESPONSIVE: Na tabletach i mobile łamiemy układ na pionowy */
@media (max-width: 900px) {
    .col-list-section {
        gap: 40px;
    }
    .col-card {
        flex-direction: column; /* Zmiana układu z poziomego na pionowy */
        min-height: auto; 
    }
    .col-image-side {
        flex: none;
        width: 100%; /* Zdjęcie na pełną szerokość ekranu telefonu */
        min-height: 350px; /* Wymuszona wysokość kontenera ze zdjęciem na mobile */
    }
    .col-text-side {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.02);
        padding: 30px;
    }
    .col-desc {
        max-width: 100%;
    }
}

/* Naprawa hovera dla przycisku NEON GEAR na jasnym tle (Desktop) */
@media (min-width: 769px) {
    .collection-light .core-gear-link:hover {
        color: #d31126 !important; 
        border-color: #d31126 !important;
    }
    
    .collection-light .core-gear-link:hover .arrow {
        color: #d31126 !important;
    }
}

/* =====================================================
   ABOUT PAGE - BLACK CREASE MANIFESTO LAYOUT
===================================================== */

.text-blue {
    color: #0055ff;
}

.text-white {
    color: var(--white);
}

/* 1. HERO SECTION */
.about-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 160px clamp(20px, 5vw, 80px) 80px;
    background-color: var(--black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.about-hero .hero-bg-silhouette {
    position: absolute;
    right: 5%;
    bottom: -10%;
    width: 50%;
    height: 110%;
    background: radial-gradient(circle at center, rgba(0, 85, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.about-hero .hero-text {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.about-hero h1 {
    font-size: clamp(55px, 10vw, 140px);
    line-height: 0.88;
    letter-spacing: 0.03em;
}

/* 2. MANIFESTO 3-COLUMN GRID */
.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: var(--black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.manifesto-box {
    position: relative;
    padding: clamp(50px, 6vw, 90px) clamp(25px, 4vw, 50px);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background-color: var(--card-dark);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

.manifesto-box:last-child {
    border-right: none;
}

.manifesto-box:hover {
    background-color: #0e0e10;
}

.manifesto-box h2 {
    font-size: clamp(38px, 4.5vw, 64px);
    line-height: 0.9;
    margin-bottom: 25px;
    letter-spacing: 0.04em;
}

.manifesto-box h2 .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--red);
    margin-left: 4px;
}

.manifesto-box p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 15px;
}

.manifesto-box:hover p {
    border-left-color: var(--red);
    color: var(--white);
}

/* 3. OUR CODE SECTION (ABOUT SPECIFIC) */
.our-code-section {
    padding: 120px clamp(20px, 5vw, 80px);
    background-color: var(--black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.code-header-container {
    max-width: 1400px;
    margin: 0 auto 60px;
}

.our-code-section .code-main-title {
    font-size: clamp(50px, 8vw, 110px);
    line-height: 0.9;
}

.code-grid-heavy {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.code-box {
    background-color: var(--card-dark);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.code-box:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 85, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

.code-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    margin-bottom: 25px;
    display: block;
    line-height: 1;
}

.code-box h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 0.95;
    letter-spacing: 0.05em;
}

.code-box p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

/* 4. WHO ARE WE SECTION */
.who-are-you {
    position: relative;
    padding: 140px clamp(20px, 5vw, 80px);
    background: radial-gradient(circle at center, #111114 0%, var(--black) 80%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.who-content-box {
    max-width: 850px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.who-content-box h2 {
    font-size: clamp(50px, 7vw, 95px);
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.who-content-box p {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.9;
    color: #cccccc;
}

/* 5. BREAK THROUGH BANNER & ROTATING BADGE */
.break-through {
    padding: 120px clamp(20px, 5vw, 80px);
    background-color: var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
}

.break-through h1 {
    font-size: clamp(45px, 6.5vw, 95px);
    line-height: 0.9;
}

.badge-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-center {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    color: var(--white);
    letter-spacing: 2px;
    z-index: 2;
}

.badge-text-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: rotateBadge 16s linear infinite;
}

@keyframes rotateBadge {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 6. RESPONSIVE / MOBILE BREAKPOINTS */
@media (max-width: 1100px) {
    .manifesto-grid {
        grid-template-columns: 1fr;
    }
    .manifesto-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        min-height: auto;
    }
    .code-grid-heavy {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding-top: 130px;
        min-height: 50vh;
    }
    .code-grid-heavy {
        grid-template-columns: 1fr;
    }
    .break-through {
        flex-direction: column;
        text-align: center;
        padding: 80px 20px;
    }
}
/* =====================================================
   PRODUCT LIGHTBOX (BLACK CREASE)
===================================================== */
.product-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 40px;
}

.product-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-lightbox img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(200, 16, 46, 0.15);
    transform: scale(0.95);
    transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.product-lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 50px;
    font-family: 'Bebas Neue', sans-serif;
    cursor: pointer;
    z-index: 100000;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

.lightbox-close:hover {
    color: var(--red);
    transform: scale(1.1) rotate(90deg);
}

@media (max-width: 768px) {
    .product-lightbox {
        padding: 20px 10px;
    }
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }
}
/* =====================================================
   PRODUCT LIGHTBOX (BLACK CREASE)
===================================================== */
.product-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 40px;
}

.product-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-lightbox img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(200, 16, 46, 0.15);
    transform: scale(0.95);
    transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.product-lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 50px;
    font-family: 'Bebas Neue', sans-serif;
    cursor: pointer;
    z-index: 100000;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

.lightbox-close:hover {
    color: var(--red);
    transform: scale(1.1) rotate(90deg);
}

@media (max-width: 768px) {
    .product-lightbox {
        padding: 20px 10px;
    }
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }
}