/* styles.css */


html {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat';
    background: radial-gradient(circle, #060630, black);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
    text-align: center;
    position: relative;
}

/* Floating Stars Animation */
.floating-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}


/* Updated Floating Stars Animation */
@keyframes floatStars {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(-15px, 15px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translate(10px, -10px) rotate(270deg);
        opacity: 0.7;
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0.8;
    }
}

.floating-dots span {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: floatStars 10s ease-in-out infinite;
}

/* Ghost Buttons */
.button {
    background: transparent;
    color: rgba(255, 255, 255, 1);
    border: 2px solid rgba(255, 255, 255, 1);
    padding: 8px 16px;
    font-size: 0.9em;
    cursor: pointer;
    margin: 10px;
    border-radius: 3px;
}

.button:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Screens */
.screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100vw;
    height: 100vh;
    transition: opacity 0.5s ease-in-out;
}

/* Titles */
.title {
    font-size: 3em;
    line-height: 1em;
    font-family: 'Rakkas', cursive;
}

.tagline {
    font-size: 1.2em;
    margin: 10px 0;
}

.result-title {
    font-size: 1.2em;
    width: 90vw;
    margin-bottom: 0;
}

.name-container {
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    flex-direction: column;
    width: 90vw;
    min-height: 220px;
    margin-top: 20px;
}

.shop-name {
    display: block;
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Button Container */
.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 150px;
}

.about-text {
    padding: 20px;
    border-radius: 10px;
    color: white;
    font-size: 0.8em;
    position: absolute;
    bottom: 10px;
}

a {
    color: white;
}

.loader {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: animloader 1s linear infinite;
}

@keyframes animloader {
  0% {
    box-shadow: -36px 0 #FFF inset;
  }
  100% {
    box-shadow: 24px 0 #FFF inset;
  }
}

#changing-word {
    transition: opacity 0.5s ease-in-out;
}

#loader {
    margin-top: 30px;
}

#shop-name {
    margin-top: 0px;
}