:root {
    /* Colors */
    --bg-color: #0a0a0a;
    --primary-red: #CC0000;
    --accent-gold: #D4AF37;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --card-bg: rgba(20, 20, 20, 0.6);
    
    /* Typography */
    --font-display: 'Bebas Neue', display;
    --font-ui: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    
    /* Variables */
    --nav-height: 80px;
    --z-cursor: 9999;
    --z-nav: 1000;
    --z-hero: 10;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none; /* Hide default cursor for custom one */
}

/* Custom Selection */
::selection {
    background: var(--primary-red);
    color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-red);
}

/* Base Styles */
h1, h2, h3, h4, .brand, .btn {
    text-transform: uppercase;
}
a {
    text-decoration: none;
    color: inherit;
}

/* --- JS Reveal Classes --- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Allow data-delay styling via JS inline or CSS vars */

/* --- Custom Cursor --- */
.cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 6px; height: 6px;
    background: var(--primary-red);
    border-radius: 50%;
    pointer-events: none;
    z-index: var(--z-cursor);
    transform: translate(-50%, -50%);
}
.cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 32px; height: 32px;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: var(--z-cursor);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    box-sizing: border-box;
}
.cursor-ring.hover {
    width: 50px;
    height: 50px;
    border-color: var(--primary-red);
    background: rgba(204, 0, 0, 0.1);
}

/* --- Buttons --- */
.btn {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 1rem 2.5rem;
    border: none;
    cursor: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--text-main);
}
.btn-primary {
    background: var(--primary-red);
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}
.btn-primary:hover {
    background: #ff0a0a;
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.5);
    transform: translateY(-2px);
}
.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: var(--z-nav);
    transition: background 0.4s, backdrop-filter 0.4s, border-bottom 0.4s;
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.05em;
}
.cross {
    color: var(--primary-red);
    font-family: var(--font-body);
    font-weight: 300;
}
.nav-links {
    display: flex;
    gap: 3rem;
}
.nav-links a {
    font-family: var(--font-ui);
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: var(--accent-gold);
}
.badge {
    font-family: var(--font-ui);
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-grid-bg {
    position: absolute;
    inset: -50%;
    background-image: 
        linear-gradient(rgba(204, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(204, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    transform-origin: center;
}
.hero-glow-bg {
    position: absolute;
    right: -10vw;
    top: 50%;
    transform: translateY(-50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(204, 0, 0, 0.2) 0%, rgba(204, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 2;
    filter: blur(60px);
    transition: background 0.8s ease;
}
#particle-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 3;
    pointer-events: none;
}
.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: var(--z-hero);
}
.hero-left {
    flex: 1;
    max-width: 600px;
}
.eyebrow {
    font-family: var(--font-ui);
    color: var(--text-muted);
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(5rem, 9vw, 9rem);
    line-height: 0.85;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    position: relative;
}
.highlight-red {
    color: var(--primary-red);
}

/* Glitch Animation */
@keyframes glitch-anim {
    0% { transform: translate(0) }
    20% { transform: translate(-2px, 2px) }
    40% { transform: translate(-2px, -2px) }
    60% { transform: translate(2px, 2px) }
    80% { transform: translate(2px, -2px) }
    100% { transform: translate(0) }
}
.glitch-active {
    animation: glitch-anim 0.2s cubic-bezier(.25, .46, .45, .94) both infinite;
    text-shadow: 3px 0px var(--primary-red), -3px 0px var(--accent-gold);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 480px;
}
.hero-ctas {
    display: flex;
    gap: 1.5rem;
}
.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}
.jersey-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    transform-style: preserve-3d;
    perspective: 1000px;
}
.jersey-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 300px; height: 300px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 60%);
    filter: blur(30px);
    z-index: 1;
}
.jersey-img {
    width: 100%;
    height: auto;
    top: 3rem;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(204, 0, 0, 0.4));
    transition: transform 0.1s ease-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
.hero-img {
    animation: float 6s ease-in-out infinite;
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: var(--z-hero);
}
.scroll-hint span {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    transform: rotate(-90deg);
    transform-origin: left bottom;
    color: var(--accent-gold);
}
.scroll-line {
    width: 2px;
    height: 60px;
    background: 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: var(--accent-gold);
    animation: scroll-drop 1.5s infinite;
}
@keyframes scroll-drop {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

/* --- Ticker --- */
.ticker {
    background: var(--primary-red);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
}
.ticker-content {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: #fff;
    letter-spacing: 0.05em;
    display: inline-block;
    padding-left: 100%;
    animation: ticker-scroll 25s linear infinite;
}
.ticker-content span {
    display: inline-block;
    padding-right: 2rem;
}
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.ticker:hover .ticker-content {
    animation-play-state: paused;
}

/* --- Sections Common --- */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 40px;
}
.section-title {
    font-family: var(--font-display);
    font-size: 4rem;
    text-align: center;
    margin-bottom: 4rem;
}

/* --- Features --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.feature-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, background 0.3s;
}
.card-border {
    position: absolute;
    left: 0; bottom: 0;
    width: 4px;
    height: 0%;
    background: var(--primary-red);
    transition: height 0.4s ease;
}
.feature-card:hover .card-border {
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 30, 30, 0.8);
}
.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.feature-card h3 {
    font-family: var(--font-ui);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- Stats Band --- */
.stats-band {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(5,5,5,0.5);
    gap: 4rem;
}
.stat-item {
    text-align: center;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 4.5rem;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-family: var(--font-ui);
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.1);
}

/* --- Products --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.product-card {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 2rem 1rem;
    text-align: center;
    cursor: none;
    position: relative;
    border: 1px solid transparent;
    transition: border-color 0.3s, transform 0.3s;
}
.product-card:hover {
    border-color: var(--primary-red);
    background: rgba(204, 0, 0, 0.05);
    transform: translateY(-5px);
}
.product-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}
.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-meta h4 {
    font-family: var(--font-ui);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}
.product-meta span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Quote Section --- */
.quote {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
}
.quote-bg-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('quote-bg.jpg') center/cover no-repeat;
    opacity: 0.15; /* Reduced opacity */
    z-index: 0;
}
.quote-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 60vw; height: 60vw;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(204, 0, 0, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}
.quote .section-container {
    position: relative;
    z-index: 2;
}
.quote-text {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}
.quote-attr {
    font-family: var(--font-ui);
    color: var(--accent-gold);
    letter-spacing: 0.2em;
    font-size: 1.1rem;
}

/* --- Buy Section --- */
.buy {
    background: linear-gradient(to bottom, transparent, rgba(20,20,20,0.8));
}
.buy-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.buy-left {
    flex: 1;
}
.buy-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 7vw, 6.5rem);
    line-height: 0.9;
    margin-bottom: 1.5rem;
}
.buy-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 450px;
}
.price {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}
.buy-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}
.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.trust-badges span {
    font-family: var(--font-ui);
    font-size: 0.95rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}
.buy-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.buy-img {
    animation: float 5s ease-in-out infinite reverse;
    
}
.buy-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 400px; height: 400px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 60%);
    filter: blur(40px);
    z-index: 1;
}

/* --- Footer --- */
footer {
    padding: 4rem 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.tagline {
    font-style: italic;
    color: var(--primary-red);
    font-family: var(--font-body);
    font-weight: 500;
    margin-bottom: 2rem;
}
.copyright {
    color: #666;
    font-size: 0.85rem;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .hero {
        height: auto;
        min-height: 100vh;
        padding-bottom: 4rem;
    }
    .hero-content {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 120px;
        text-align: center;
    }
    .hero-title {
        font-size: 5rem;
    }
    .hero-subtitle {
        margin: 1.5rem auto 2.5rem;
    }
    .hero-ctas {
        justify-content: center;
        margin-bottom: 3rem;
    }
    .hero-right {
        order: -1; /* Move jersey above text */
        margin-bottom: 2rem;
    }
    .hero-img {
        max-width: 300px;
    }
    .features-grid, .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-band {
        flex-direction: column;
        gap: 2rem;
    }
    .stat-divider {
        display: none;
    }
    .buy-container {
        flex-direction: column;
        text-align: center;
    }
    .buy-desc {
        margin: 0 auto 2rem;
    }
    .buy-btns {
        justify-content: center;
    }
    .trust-badges {
        align-items: center;
    }
}

@media (max-width: 600px) {
    .features-grid, .product-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 4rem;
    }
    .hero-ctas, .buy-btns {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-ctas .btn, .buy-btns .btn, .buy-btns a {
        width: 100%;
        display: block;
    }
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.product-price{
font-size:1.05rem;
font-weight:700;
color:#ffffff;
margin-top:4px;
letter-spacing:0.5px;
}

.product-card:hover .product-price{
color:#ff0000;
transition:color .3s ease;
}
