/* Noise Texture */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.05"/></svg>');
    pointer-events: none;
    z-index: 9999;
}

/* Custom Cursor */
.cursor-glow {
    width: 20px;
    height: 20px;
    background: var(--accent-purple-light);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: screen;
    filter: blur(8px);
    transition: transform 0.1s ease-out;
    opacity: 0.6;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-purple-light);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease-out;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20000;
    transition: opacity 0.8s ease;
}

.loader-logo {
    width: 80px;
    animation: pulseLogo 2s infinite ease-in-out;
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
        filter: drop-shadow(0 0 5px var(--accent-purple));
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
        filter: drop-shadow(0 0 20px var(--accent-purple-light));
    }
}

/* Glitch Effect */
.glitch {
    position: relative;
    cursor: pointer;
}

.glitch:hover::before,
.glitch:hover::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.glitch:hover::before {
    color: #ff00ff;
    animation: glitch-anim 0.3s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
    transform: translate(-2px, -2px);
}

.glitch:hover::after {
    color: #00ffff;
    animation: glitch-anim 0.3s infinite reverse;
    clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
    transform: translate(2px, 2px);
}

@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);
    }
}

/* Frosted Glassmorphism */
.card,
.tier-card,
.feature-box {
    background: rgba(15, 11, 21, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Conic Gradient Border Animation */
.tier-card.active {
    position: relative;
    z-index: 1;
}

.tier-card.active::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: conic-gradient(from var(--angle), transparent 70%, var(--accent-purple-light), var(--accent-blue), var(--accent-purple-light));
    border-radius: inherit;
    z-index: -1;
    animation: rotateAngle 4s linear infinite;
    opacity: 0.5;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotateAngle {
    to {
        --angle: 360deg;
    }
}

:root {
    --bg-dark: #020202;
    --bg-card: rgba(10, 10, 15, 0.7);
    --accent-purple-light: #d946ef;
    --accent-purple: #c026d3;
    --accent-purple-deep: #701a75;
    --accent-blue: #00d2ff;
    --accent-blue-deep: #3a7bd5;
    --ticker-bg: rgba(0, 0, 0, 0.4);
    --ticker-text: #00ffca;
    --accent-cyan: #06b6d4;
    --text-main: #ffffff;
    --text-muted: #8b949e;
    --glass: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
    --neon-shadow: 0 0 30px rgba(192, 38, 211, 0.3);
    --gradient: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    --status-safe: #00ff88;
    --status-risk: #ffaa00;
    --status-down: #ff4444;
    --cyber-yellow: #fde047;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(120, 25, 140, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(14, 165, 233, 0.08), transparent 25%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-purple);
    border-radius: 10px;
}

/* Background mesh - Simplified for performance and cleaner look */
.bg-mesh {
    display: none;
    /* Replaced by body gradients */
}

header {
    width: 100%;
    padding: 1.2rem 5%;
    position: fixed;
    top: 0;
    z-index: 100;
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s ease;
}

header.scrolled {
    padding: 0.8rem 5%;
    background: rgba(5, 5, 5, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-main);
    letter-spacing: -1px;
}

.logo img {
    height: 40px;
    border-radius: 8px;
}

.logo span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    font-size: 0.9rem;
    position: relative;
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: 0.3s ease;
}

nav ul li a:hover {
    color: var(--text-main);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

nav ul li a:hover::after {
    width: 100%;
}

.btn {
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--text-main);
    color: black;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    z-index: -1;
    transition: 0.4s;
    opacity: 0;
}

.btn-primary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(192, 38, 211, 0.6);
}

.btn-primary:hover::before {
    opacity: 1;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M10 10h1v1h-1zM20 20h1v1h-1zM30 30h1v1h-1z" fill="rgba(255,255,255,0.02)"/></svg>');
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Statistics Section */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 4rem 10%;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Activity Ledger */
.ledger-section {
    padding: 2rem 5%;
    overflow: hidden;
    background: rgba(191, 90, 242, 0.02);
}

.ledger-track {
    display: flex;
    gap: 2rem;
    animation: scrollLedger 40s linear infinite;
    width: max-content;
}

.ledger-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 0.85rem;
}

.ledger-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--status-safe);
    box-shadow: 0 0 10px var(--status-safe);
}

@keyframes scrollLedger {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ledger-user {
    color: var(--accent-purple-light);
    font-weight: 600;
}

.ledger-product {
    color: var(--accent-blue);
    font-weight: 600;
}

/* 3D Starfield Canvas */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at center, #0f0c29 0%, #000000 100%);
    pointer-events: none;
}

/* Terminal Ticker */
.terminal-ticker {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ticker-bg);
    border: 1px solid rgba(0, 255, 202, 0.2);
    padding: 6px 20px;
    border-radius: 20px;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--ticker-text);
    overflow: hidden;
    white-space: nowrap;
    backdrop-filter: blur(5px);
    width: 300px;
}

.ticker-content {
    display: inline-block;
}

.ticker-item {
    margin-right: 30px;
    opacity: 0.8;
}

/* High-End Refraction for Cards */
.tier-card,
.bento-item {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Cyber-HUD HUD Overlay */
.cyber-hud {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    opacity: 0.4;
}

.hud-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-purple-light);
}

.hud-tl {
    top: 40px;
    left: 40px;
    border-right: none;
    border-bottom: none;
}

.hud-tr {
    top: 40px;
    right: 40px;
    border-left: none;
    border-bottom: none;
}

.hud-bl {
    bottom: 40px;
    left: 40px;
    border-right: none;
    border-top: none;
}

.hud-br {
    bottom: 40px;
    right: 40px;
    border-left: none;
    border-top: none;
}

/* Enhanced Hero */
.hero {
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 6rem;
    letter-spacing: -4px;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

.hero p {
    font-size: 1.4rem;
    opacity: 0.8;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 5% 10%;
    margin-top: -100px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: 0.4s;
    z-index: -1;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: var(--neon-shadow);
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.card .badge {
    background: rgba(0, 210, 255, 0.1);
    color: var(--accent-blue);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin: 1.5rem 0 2.5rem;
}

.features-list li {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: '→';
    margin-right: 10px;
    color: var(--accent-blue);
}

.pricing {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pricing span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

footer {
    padding: 5rem 10% 2rem;
    background: #050507;
    border-top: 1px solid var(--glass-border);
    margin-top: 5rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-btns {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-social {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-social:hover {
    background: rgba(191, 90, 242, 0.1);
    border-color: var(--accent-purple-light);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(191, 90, 242, 0.4);
}

/* Status Badges */
.status-badge {
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 10px;
}

.status-ud {
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
    border: 1px solid rgba(46, 213, 115, 0.2);
}

/* Status Board Styles */
.status-section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.status-card {
    background: rgba(20, 20, 25, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 160px;
}

.status-card:hover {
    border-color: var(--status-color);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--status-color);
    box-shadow: 0 0 15px var(--status-color);
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
}

.product-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-main);
    line-height: 1.3;
    flex: 1;
    /* Allow it to take available space */
    min-width: 120px;
}

.status-pill {
    font-size: 0.7rem;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.4);
    color: var(--status-color);
    border: 1px solid var(--status-color);
    box-shadow: 0 0 10px var(--status-color);
    white-space: nowrap;
    flex-shrink: 0;
    text-shadow: 0 0 5px var(--status-color);
}

.last-update {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: monospace;
    opacity: 0.7;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.last-update::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--status-color);
    box-shadow: 0 0 12px var(--status-color);
    animation: statusPulse 2s infinite ease-in-out;
}

@keyframes statusPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
}

/* Status Colors Classes for JS */
.status-safe {
    --status-color: #22c55e;
}

.status-risk {
    --status-color: #f59e0b;
}

.status-down {
    --status-color: #ef4444;
}

/* FAQ Styling */
.faq-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 5%;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: 0.5s cubic-bezier(0, 1, 0, 1);
    color: var(--text-muted);
}

.faq-item.active {
    border-color: var(--accent-purple-light);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
    transition: 0.5s cubic-bezier(1, 0, 1, 0);
}

/* Cinematic Overlays */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 10001;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    opacity: 0.1;
}

.vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 50%, rgba(0, 0, 0, 0.8) 150%);
    z-index: 10002;
    pointer-events: none;
}

/* Plasma Mesh Arka Plan */
.plasma-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background:
        radial-gradient(circle at 0% 0%, #1e0b36 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, #2e1052 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, #150921 0%, transparent 50%);
    animation: plasma 20s ease infinite alternate;
}

@keyframes plasma {
    0% {
        filter: hue-rotate(0deg) brightness(1);
    }

    100% {
        filter: hue-rotate(45deg) brightness(1.2);
    }
}

/* Spotlight Effect Base */
.spotlight-card {
    position: relative;
    overflow: hidden;
}

.spotlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(191, 90, 242, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 2;
}

.spotlight-card:hover::before {
    opacity: 1;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
    padding: 5% 10%;
}

.bento-item {
    position: relative;
    background: rgba(15, 11, 21, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.bento-item i {
    font-size: 3rem;
    position: absolute;
    top: 2rem;
    right: 2rem;
    opacity: 0.2;
    transition: 0.5s;
}

.bento-item:hover i {
    opacity: 1;
    transform: scale(1.2) rotate(10deg);
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item.medium {
    grid-column: span 2;
}

.bento-item:hover {
    border-color: var(--accent-purple-light);
    box-shadow: 0 0 40px rgba(191, 90, 242, 0.2);
}

/* Blur/* Reveal Animation */
.reveal-blur {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-blur.active {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Premium Badges */
.premium-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(90deg, #ffd700, #ff8c00);
    color: black;
    padding: 0.3rem 1rem;
    border-radius: 4px;
    font-weight: 900;
    font-size: 0.7rem;
    text-transform: uppercase;
    transform: rotate(-10deg);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    z-index: 5;
}

.best-seller {
    background: linear-gradient(90deg, #ff00cc, #3333ff);
    color: white;
}

/* Particles Canvas */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info {
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--text-main);
}

.copyright {
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    nav {
        display: none;
    }

    .footer-links {
        gap: 2rem;
    }
}