body {
    background-color: #05070a;
    color: #f8faf8;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    overflow-x: hidden;
    cursor: url('assets/cursors/Gemini_shipFlying.png'), auto;
    font-family: 'Roboto Mono', monospace;
}

a {
    cursor: url('assets/cursors/Gemini_shipAction.png'), pointer;
}
/* Fonts */
h1, h2, h3, 
.logo-text, 
.nav-links a, 
.hero-btn {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p{
    font-family: 'Roboto Mono', monospace;
}

/* --- SPACE ENGINE --- */
.space-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at bottom, #111, #05070a);
}

/* Starfields */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
}

/* Small Stars */
.stars-small {
    width: 1px;
    height: 1px;
    box-shadow: 454px 123px #fff, 1204px 543px #fff, 321px 900px #fff, 1800px 200px #fff, 900px 10px #fff, 100px 500px #fff, 1500px 800px #fff, 500px 1000px #fff;
    animation: starPulse 4s infinite alternate;
}

/* Medium Stars */
.stars-medium {
    width: 2px;
    height: 2px;
    box-shadow: 200px 400px #7b61ff, 800px 100px #fff, 1400px 600px #7b61ff, 50px 800px #fff;
    animation: starPulse 3s infinite 1s alternate;
}

/* Galaxy Effect */
.galaxy-nebula {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 20%, rgba(123, 97, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(0, 209, 255, 0.1) 0%, transparent 40%);
    filter: blur(60px);
}

/* --- PLANETS --- */
.floating-planet {
    position: absolute;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: inset -10px -10px 20px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.1);
}

.p-urans {
    width: 140px;
    height: 100px;
    background-image: url('assets/images/urans.png');
    top: 15%;
    left: 10%;
    animation: float 25s infinite ease-in-out reverse;
    border-radius: 0;
    box-shadow: none;
}

.p-jupiter {
    width: 150px;
    height: 150px;
    background-image: url('assets/images/jupiter.png');
    bottom: 10%;
    left: 15%;
    animation: float 20s infinite ease-in-out 2s;
}

.p-neptune {
    width: 100px;
    height: 100px;
    background-image: url('assets/images/neptune.png');
    top: 60%;
    right: 5%;
    animation: float 18s infinite linear;
}

.p-saturn {
   width: 200px;
    height: 150px;
    background-image: url('assets/images/saturn.png');
    top: 10%;
    right: 10%;
    opacity: 0.7;
    animation: float 25s infinite ease-in-out reverse;
    border-radius: 0;
    box-shadow: none;
}

/* --- PROFILE PLANET --- */
.profile-planet-wrap {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 2rem;
}

.profile-planet-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: inset -20px -20px 50px rgba(0, 0, 0, 0.9);
    animation: rotateSlow 60s linear infinite;
}

.profile-planet-sun {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, #ffc861 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulseGlow 4s infinite ease-in-out;
}

/* --- ANIMATIONS --- */
@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) rotate(5deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

@keyframes starPulse {
    from {
        opacity: 0.2;
    }

    to {
        opacity: 0.8;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* --- HERO & UI --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.highlight {
    color: #7b61ff;
    text-shadow: 0 0 15px #7b61ff;
}

.hero-btn {
    padding: 1rem 2.5rem;
    border: 1px solid #7b61ff;
    color: #7b61ff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(0, 209, 255, 0.05);
    backdrop-filter: blur(5px);
}

.hero-btn:hover {
    background: #7b61ff;
    color: #05070a;
    box-shadow: 0 0 30px #7b61ff;
}