:root {
    /* PC Bang Theme Colors */
    --bg-dark: #0a0a0f;
    --bg-card: #15151e;
    --bg-card-hover: #1e1e2a;
    
    --neon-cyan: #00f3ff;
    --neon-pink: #ff0055;
    --neon-purple: #bd00ff;
    
    --text-main: #ffffff;
    --text-muted: #8b8b9b;
    
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    
    --shadow-neon-cyan: 0 0 10px rgba(0, 243, 255, 0.5), 0 0 20px rgba(0, 243, 255, 0.3);
    --shadow-neon-pink: 0 0 10px rgba(255, 0, 85, 0.5), 0 0 20px rgba(255, 0, 85, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-cyan);
    border-radius: 4px;
}

.neon-text {
    color: #fff;
    text-shadow: 
        0 0 7px #fff,
        0 0 10px #fff,
        0 0 21px #fff,
        0 0 42px var(--neon-cyan),
        0 0 82px var(--neon-cyan);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    border-left: 5px solid var(--neon-pink);
    padding-left: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
