:root {
    --primary-color: #ff0055;
    --secondary-color: #ffd700;
    --accent-color: #00f3ff;
    --bg-color: #050505;
    --text-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Noto Sans SC', sans-serif;
    --font-cyber: 'Orbitron', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    cursor: default;
    /* Will replace with custom cursor if needed */
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Neon Flicker Animation */
@keyframes neon-flicker {

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        text-shadow:
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 20px #ff0055,
            0 0 40px #ff0055,
            0 0 80px #ff0055;
    }

    20%,
    24%,
    55% {
        text-shadow: none;
    }
}

/* Custom Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 85, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: screen;
    display: none;
    /* JS will enable */
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-family: var(--font-cyber);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--secondary-color);
}

nav a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 5px var(--secondary-color);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
#hero {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    mix-blend-mode: normal;
}

h1.glitch {
    font-family: var(--font-cyber);
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    color: var(--text-color);
    text-shadow: 0 0 20px rgba(255, 0, 85, 0.5);
    margin-bottom: 20px;
    animation: neon-flicker 3s infinite alternate;
}

.subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.cyber-btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-family: var(--font-cyber);
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--primary-color), inset 0 0 10px var(--primary-color);
}

.cyber-btn:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 30px var(--primary-color), inset 0 0 20px var(--primary-color);
}

/* Wishes Section */
#wishes {
    padding: 100px 50px;
    position: relative;
    z-index: 2;
    text-align: center;
}

h2 {
    font-family: var(--font-cyber);
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--secondary-color);
    text-shadow: 0 0 15px var(--secondary-color);
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 15px;
    width: 300px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.2);
    border-color: var(--accent-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.card p {
    color: #aaa;
    line-height: 1.6;
}

/* Wealth Section */
#wealth {
    padding: 100px 50px;
    text-align: center;
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gold-btn {
    margin-top: 40px;
    padding: 20px 60px;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #ffd700, #ffaa00);
    border: none;
    border-radius: 50px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 10;
}

.gold-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
}

.gold-btn:active {
    transform: scale(0.95);
}

/* Footer */
footer {
    padding: 30px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    h1.glitch {
        font-size: 3rem;
    }

    header {
        padding: 20px;
    }

    nav ul {
        display: flex;
        gap: 15px;
        font-size: 0.9rem;
    }

    .cards-container {
        flex-direction: column;
        align-items: center;
    }
}