/* Custom Fonts */
body {
    font-family: 'Rajdhani', sans-serif;
    background-color: #0c0a1a; /* Deep space blue */
    color: #e0e0e0;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
}

/* Parallax Container */
.parallax-container {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    perspective: 10px;
    position: relative;
}

/* Parallax Layers */
.parallax-layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Layer Speeds - achieved with transform */
.layer-back {
    transform: translateZ(-30px) scale(4);
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    background-color: #0c0a1a;
}

.layer-mid {
    transform: translateZ(-10px) scale(2);
    background-image: url('https://placehold.co/1920x1080/000000/ff00ff.png?text=');
    background-blend-mode: screen;
    opacity: 0.3;
    background: linear-gradient(135deg, rgba(255, 0, 150, 0.1), rgba(0, 255, 255, 0.1)), 
                url('https://www.transparenttextures.com/patterns/gplay.png');
}

.layer-front {
        transform: translateZ(0px) scale(1);
}

/* Content Sections */
.content-section {
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background-color: rgba(12, 10, 26, 0.6); /* Semi-transparent background for readability */
    backdrop-filter: blur(2px);
}

/* Hero Section Specifics */
#hero {
    height: 100vh;
    justify-content: center;
    background: none; /* Hero content is on the front layer */
    backdrop-filter: none;
}

/* Neon Glow Effect */
.neon-text-pink {
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #ff00de,
        0 0 30px #ff00de,
        0 0 40px #ff00de,
        0 0 55px #ff00de,
        0 0 75px #ff00de;
}

.neon-text-cyan {
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #00ffff,
        0 0 30px #00ffff,
        0 0 40px #00ffff,
        0 0 55px #00ffff,
        0 0 75px #00ffff;
}

.card {
    background-color: rgba(23, 20, 43, 0.7);
    border: 1px solid #ff00de;
    box-shadow: 0 0 15px rgba(255, 0, 222, 0.4);
}

.btn-neon {
    border: 2px solid #00ffff;
    color: #00ffff;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5), inset 0 0 10px rgba(0, 255, 255, 0.3);
    text-decoration: none;
}

.btn-neon:hover {
    background-color: #00ffff;
    color: #0c0a1a;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}