:root {
    --bg-color: #02010a;
    --text-color: #e0e0fd;
    --accent-color: #7943ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow: hidden;
    height: 100vh;
    font-family: 'Quicksand', sans-serif;
}

/* Custom Cursor */
.cursor-dot, .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: #fff;
    box-shadow: 0 0 10px #fff;
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-ring.active {
    width: 60px;
    height: 60px;
    background-color: rgba(255,255,255,0.1);
}

#space-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Parallax Layers */
.parallax-layer {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-position: center;
    background-repeat: repeat;
    will-change: transform;
}

.layer-bg {
    background: radial-gradient(circle at 50% 50%, #1a0b2e 0%, #02010a 100%);
    z-index: 1;
}

/* Base styling for stars generated in JS */
.star {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
}

.layer-1 { z-index: 2; opacity: 0.5; }
.layer-2 { z-index: 3; opacity: 0.8; }
.layer-3 { z-index: 4; opacity: 1; text-shadow: 0 0 5px #fff;}

/* Cards */
.cards-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 3rem;
    z-index: 10;
    perspective: 1000px;
}

.glass-card {
    width: 300px;
    padding: 3rem 2rem;
    background: rgba(20, 15, 40, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s;
    text-align: center;
    will-change: transform;
}

.glass-card:hover {
    background: rgba(40, 20, 80, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(121, 67, 255, 0.4);
}

.glass-card h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    background: linear-gradient(to bottom, #ffffff, #a88aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
    .cards-container {
        flex-direction: column;
    }
}
