﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.floating-word {
    position: absolute;
    color: white;
    font-family: 'Roboto', sans-serif;
    pointer-events: none;
    white-space: nowrap;
    opacity: 0.7;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    will-change: transform;
    transition: transform 0.2s ease-out;
}

.starfield-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #121212;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    will-change: transform;
    transition: transform 0.2s ease-out;
    pointer-events: none;
}
