@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Funnel Display", sans-serif;
}

body {
    background-color: #0C0E1B;
    color: #fff;
    min-height: 100vh;
}

.coming-soon {
    width: 100%;
    min-height: 100vh;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.container-inner {
    width: 100%;
    text-align: left;
    padding: clamp(60px, 10vh, 180px) clamp(30px, 12vw, 220px);
}

.logo {
    display: block;
    margin: 0 0 clamp(40px, 8vh, 150px) 0;
    max-width: 100%;
    height: auto;
}

h1 {
    color: #f8f9fb;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0 0 clamp(50px, 8vh, 150px) 0;
}

h2 {
    color: #6fd1ff;
    font-size: clamp(1.5rem, 3vw, 2.8rem);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 clamp(20px, 4vh, 35px) 0;
    font-weight: 500;
}

h3 {
    color: #f8f9fb;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    margin-right: clamp(10px, 2vw, 20px);
}

.info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.button {
    padding: clamp(0.8rem, 1.5vw, 1.2rem) clamp(1.5rem, 3vw, 2.5rem);
    background: #FE517E;
    box-shadow: 0px 0px 26.6px -4px rgba(254, 81, 126, 0.6);
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #FCFCFD;
    text-decoration: none;
    transition: all 0.5s ease;
    display: inline-block;
}

.button:hover {
    box-shadow: 0px 0px 43.7px -4px #FE517E;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    h3 {
        margin-bottom: 15px;
        margin-right: 0;
    }
}

.logo {
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

h2 {
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

h1 {
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.1s forwards;
}

.info {
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.4s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    min-height: 100vh;
}

.parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/background.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    mix-blend-mode: lighten;
}

.layer.space {
    overflow: hidden;
}


.space-inner {
    width: 100%;
    height: 100%;
    background: url('../img/space.png') no-repeat center center;
    background-size: cover;
    animation: float 30s infinite linear;
}


.layer.planet {
    background: url('../img/planet-circle.jpg') no-repeat center center;
    background-size: contain;
    animation: rotate 360s infinite linear;
    width: 2500px;
    height: 2500px;
    top: 50%;
    left: 55%;
    translate: 0 -50%;
}

@media (max-width: 1199px) {
    .layer.planet {
        width: 2000px;
        height: 2000px;
        left: 50%;
    }
}
@media (max-width: 767px) {
    .layer.planet {
        width: 1500px;
        height: 1500px;
        left: 40%;
        animation: rotate 260s infinite linear;
    }
}

@media (max-width: 454px) {
    .layer.planet {
        width: 1200px;
        height: 1200px;
        left: 35%;
    }
}


.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: transform 0.1s ease-out;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle 3s infinite ease-in-out;
}


.coming-soon {
    position: relative;
    z-index: 1;
    animation: fadeIn 2s ease-out;
    transition: transform 0.3s ease-in-out;
}


.hover-effect:hover {
    transform: scale(1.05);
}


@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes twinkle {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

