:root {
    --bg-color: #FAF9F6;
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.8);
    --accent: #2DD4BF;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

#main-header nav {
    transition: gap 0.5s ease-in-out;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-image:
        radial-gradient(at 0% 0%, rgba(45, 212, 191, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(56, 189, 248, 0.15) 0px, transparent 50%);
    background-attachment: fixed;
}

/* Typography Overrides */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

/* Quick Scalper Style Glass (Premium High-Detail) */
.glass-panel, .streak-card, .ios-card, .price-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 40px;
    border: 1px solid rgba(45, 212, 191, 0.6); /* Vibrant Teal-tinted border */
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 10px rgba(45, 212, 191, 0.1); /* Internal teal glow */
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-panel::before, .streak-card::before, .ios-card::before, .price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.9),
            transparent);
    pointer-events: none;
    z-index: 1;
}

.glass-panel::after, .streak-card::after, .ios-card::after, .price-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(45, 212, 191, 0.6), /* Teal glow on the left edge */
            transparent,
            rgba(255, 255, 255, 0.2));
    pointer-events: none;
    z-index: 1;
}

/* Specific Hover State for Interactive Cards */
.glass-panel:hover, .streak-card:hover, .ios-card:hover, .price-card:hover {
    border-color: rgba(45, 212, 191, 0.8);
    box-shadow: 
        0 20px 40px rgba(45, 212, 191, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform: translateY(-5px);
}

/* Glass Text Protection */
.glass-panel h1,
.glass-panel h2,
.glass-panel h3,
.glass-panel h4,
.glass-panel p,
.glass-panel div {
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

/* Danger/Risk Glass Variant (Reddish) */
.glass-panel-risk {
    background: rgba(63, 5, 5, 0.13);
    border-radius: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border: 1px solid rgba(63, 5, 5, 0.79);
    position: relative;
    overflow: hidden;
}

.glass-panel-risk h1,
.glass-panel-risk h2,
.glass-panel-risk h3,
.glass-panel-risk h4,
.glass-panel-risk p,
.glass-panel-risk div {
    color: #FEE2E2; /* Light red text for readability on dark glass */
}

/* Outlined Text Effect */
.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px black;
}

.text-outline-accent {
    color: transparent;
    -webkit-text-stroke: 1px var(--accent);
}

/* Custom Cursor Spotlight */
#cursor-spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%) scale(0);
    /* Hidden by default */
    z-index: 2147483647;
    transition: transform 0.15s ease-out;
    /* Slower for smooth grow */
    will-change: transform;
}

#cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: black;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.05s linear;
}

@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }

}

.animate-blob {
    animation: blob 7s infinite;
}

/* Network Background Blur (Soft Glass Effect) */
#network-bg {
    filter: blur(3px);
    /* Softens the sharp lines/nodes */
    opacity: 0.8;
    /* Slightly clearer to compensate for blur */
}