:root {
    /* Colors */
    --bg-dark: #121212;
    --neon-blue: #0ea5e9;
    --electric-green: #22c55e;
    --energy-orange: #f97316;
    --power-red: #e11d48;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--neon-blue), var(--electric-green), var(--energy-orange), var(--power-red));
    --gradient-glow: linear-gradient(135deg, rgba(14,165,233,0.5), rgba(34,197,94,0.5), rgba(249,115,22,0.5), rgba(225,29,72,0.5));
    
    /* Glass UI */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-head: 'Bebas Neue', sans-serif;
    --font-sub: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* For custom cursor */
}

/* Typography */
h1, h2, h3, h4, .hero-title {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

.font-montserrat {
    font-family: var(--font-sub);
    text-transform: none;
    letter-spacing: 0;
}

p { color: #cbd5e1; }
.text-gray { color: #94a3b8; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-6 { margin-bottom: 3rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-6 { margin-top: 3rem; }
.py-6 { padding-top: 4rem; padding-bottom: 4rem; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.05em; }

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: gradientShift 5s ease infinite;
}

.text-neon { color: var(--neon-blue); }

a { text-decoration: none; color: inherit; transition: 0.3s ease; }

/* Layout & Grid */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1.5rem; }
.gap-6 { gap: 3rem; }

.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; }
.align-center { display: flex; align-items: center; }
.w-full { width: 100%; }
.h-40 { height: 10rem; }
.object-cover { object-fit: cover; }
.position-relative { position: relative; }
.block { display: block; }
.max-w-3xl { max-width: 48rem; }
.m-auto { margin: 0 auto; }

/* UI Components */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: var(--glass-hover);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px -10px rgba(14, 165, 233, 0.3);
}

.rounded-glass {
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.p-2 { padding: 0.5rem; }
.p-4 { padding: 1.5rem; }
.p-6 { padding: 2rem; }
.p-8 { padding: 3rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--font-sub);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    cursor: none;
    z-index: 1;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--bg-dark);
    color: #fff;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    z-index: -2;
    border-radius: 32px;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--bg-dark);
    z-index: -1;
    border-radius: 28px;
    transition: 0.3s ease;
}

.btn-primary:hover::after {
    background: rgba(18, 18, 18, 0.8);
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    filter: blur(15px);
    opacity: 0;
    z-index: -3;
    transition: opacity 0.3s ease;
}

.btn-primary:hover .btn-glow { opacity: 0.6; }

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #fff;
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(255,255,255,0.5);
}

.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.8rem; }

/* Tags & Badges */
.tags span {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    font-size: 0.75rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}

.badge {
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: 0.4s ease;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-head);
    font-size: 2rem;
    letter-spacing: 2px;
}

.nav-links a {
    margin-left: 2rem;
    font-family: var(--font-sub);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: none;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 101;
}

.mobile-menu-btn span {
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    transition: 0.3s ease;
}

.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 9px; }
.mobile-menu-btn span:nth-child(3) { top: 18px; }

.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg); top: 9px; }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg); top: 9px; }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(20px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open { right: 0; }

.mobile-menu a {
    font-family: var(--font-head);
    font-size: 3rem;
    margin: 1rem 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.7;
    transition: 0.3s;
}
.mobile-menu a:hover, .mobile-menu a.active { opacity: 1; transform: scale(1.1); }

/* Hero Section (Home) */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    mix-blend-mode: luminosity;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(18,18,18,0.3) 0%, rgba(18,18,18,1) 100%);
}

.animated-gradient-bg {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle at center, rgba(14,165,233,0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(249,115,22,0.1) 0%, transparent 40%);
    animation: rotateGradient 20s linear infinite;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero-title {
    font-size: clamp(4rem, 8vw, 8rem);
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
    font-family: var(--font-sub);
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.neon-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.neon-circle.blue {
    width: 300px; height: 300px;
    background: var(--neon-blue);
    top: 20%; left: 10%;
    animation: float 8s ease-in-out infinite;
}

.neon-circle.green {
    width: 250px; height: 250px;
    background: var(--electric-green);
    bottom: 10%; right: 10%;
    animation: float 10s ease-in-out infinite reverse;
}

/* Page Hero (Internal Pages) */
.page-hero {
    padding: 12rem 0 4rem;
    text-align: center;
    background: radial-gradient(circle at top, rgba(14,165,233,0.1) 0%, transparent 70%);
    border-bottom: 1px solid var(--glass-border);
}

.shop-detail-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
}

/* Sections */
.section { padding: 6rem 0; }
.dark-bg { background: rgba(0,0,0,0.3); }

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

.section-title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

/* Cards (Shops, Gear, Blog) */
.card-img-wrap, .gear-img-wrap {
    position: relative;
    overflow: hidden;
}

.shop-card img, .gear-card img, .blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.glass-card:hover img { transform: scale(1.05); }

.card-badge {
    position: absolute;
    top: 15px; right: 15px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    border: 1px solid var(--glass-border);
}

.card-content { padding: 1.5rem; }
.card-content h3 { font-size: 1.8rem; margin-bottom: 0.5rem; }

/* Shop List Page */
.shop-list { display: flex; flex-direction: column; gap: 2rem; }
.shop-list-item { display: flex; align-items: center; }
.shop-list-img { width: 40%; height: 300px; object-fit: cover; }
.shop-list-content { width: 60%; padding: 2rem; }
.shop-list-content h2 { font-size: 2.5rem; }

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.glass-image-container {
    position: relative;
    border-radius: 16px;
    padding: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.glass-image-container img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.glow-border {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

/* Filters */
.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    cursor: none;
    font-family: var(--font-sub);
    font-size: 0.9rem;
    transition: 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background: rgba(255,255,255,0.1);
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(14,165,233,0.3);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    font-family: var(--font-head);
    font-size: 1.5rem;
    letter-spacing: 1px;
    opacity: 0;
    transition: 0.3s ease;
}

.gallery-item:hover img { transform: scale(1.1); filter: brightness(0.7); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.span-col-2 { grid-column: span 2; grid-row: span 2; }

/* Forms */
.form-group { margin-bottom: 1.5rem; }
.form-input {
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    font-family: var(--font-body);
    transition: 0.3s;
}
.form-input:focus {
    outline: none;
    border-color: var(--electric-green);
    box-shadow: 0 0 10px rgba(34,197,94,0.2);
}

/* Footer */
.footer { padding: 4rem 0 2rem; border-radius: 30px 30px 0 0; border-bottom: none;}
.footer-title { font-size: 1.5rem; margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a:hover { color: var(--neon-blue); }
.newsletter-form { display: flex; gap: 0.5rem; }

/* Lists */
.styled-list { list-style: none; }
.styled-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}
.styled-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--energy-orange);
}

/* Animations & Effects */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 1000;
    width: 0%;
    transition: width 0.1s;
}

.cursor-glow {
    position: fixed;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14,165,233,0.8) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
    mix-blend-mode: screen;
}

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

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 992px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-title { font-size: 4rem; }
    .shop-list-item { flex-direction: column; }
    .shop-list-img { width: 100%; height: 250px; }
    .shop-list-content { width: 100%; }
    .split-layout { grid-template-columns: 1fr; }
    .span-col-2 { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 768px) {
    .section-title { font-size: 2.5rem; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; }
    .btn { text-align: center; }
}

@media (pointer: coarse) {
    body { cursor: auto; }
    .cursor-glow { display: none; }
    .btn, .gallery-item, .filter-btn { cursor: pointer; }
}