* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: #010204;
}

body {
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;

    background:
        radial-gradient(
            ellipse at 50% 115%,
            rgba(44, 192, 255, 0.34) 0%,
            rgba(13, 102, 148, 0.17) 28%,
            transparent 58%
        ),
        radial-gradient(
            circle at 14% 82%,
            rgba(22, 132, 187, 0.12) 0%,
            transparent 32%
        ),
        radial-gradient(
            circle at 88% 18%,
            rgba(36, 166, 223, 0.07) 0%,
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #010204 0%,
            #02060a 48%,
            #06131c 100%
        );

    color: #ffffff;
    font-family: "Poppins", sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 30px;
}

#stars {
    position: fixed;
    inset: 0;

    z-index: 0;

    overflow: hidden;
    pointer-events: none;
}

.star {
    position: absolute;
    display: block;

    border-radius: 50%;

    background: rgba(188, 237, 255, 0.9);

    box-shadow:
        0 0 4px rgba(94, 214, 255, 0.55),
        0 0 8px rgba(94, 214, 255, 0.22);

    animation-name: twinkle;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.star.big {
    box-shadow:
        0 0 5px rgba(164, 232, 255, 0.8),
        0 0 11px rgba(71, 206, 255, 0.45);
}

@keyframes twinkle {
    0%,
    100% {
        opacity: 0.25;
        transform: scale(0.85);
    }

    50% {
        opacity: 0.85;
        transform: scale(1.15);
    }
}

.container {
    width: 1200px;
    min-height: 700px;

    position: relative;
    z-index: 1;

    display: flex;

    padding: 50px;
    gap: 60px;

    border: 1px solid rgba(86, 215, 255, 0.85);
    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 0 18px rgba(70, 207, 255, 0.23),
        inset 0 0 30px rgba(255, 255, 255, 0.025);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.left {
    width: 45%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {

    width: 170px;
    height: 170px;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 35px;

    border-radius: 50%;

    border: 1px solid rgba(94,220,255,.55);

    background: rgba(255,255,255,.03);

    box-shadow:
        0 0 30px rgba(70,210,255,.18),
        inset 0 0 18px rgba(255,255,255,.03);

}

.logo {
    width: 170px;
    height: 170px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 35px;

    border: 1px solid rgba(94, 220, 255, 0.55);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.03);

    box-shadow:
        0 0 30px rgba(70, 210, 255, 0.18),
        inset 0 0 18px rgba(255, 255, 255, 0.03);

    overflow: hidden;
}

.logo img {
    width: 85px !important;
    height: 85px !important;

    max-width: 85px !important;
    max-height: 85px !important;

    display: block;

    object-fit: contain;
    border-radius: 0;

    filter: drop-shadow(0 0 8px rgba(83, 212, 255, 0.22));
}

h1 {
    margin-bottom: 15px;

    font-size: 52px;
    font-weight: 600;
    line-height: 1;

    text-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
}

h2 {
    margin-bottom: 30px;

    color: #7edfff;

    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;

    text-shadow: 0 0 14px rgba(78, 213, 255, 0.25);
}

.slogan {
    color: #b9c4ca;

    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
}

.right {
    width: 55%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 18px;
}

.menu-button {
    width: 100%;
    min-height: 62px;

    display: flex;
    align-items: center;

    padding: 9px 18px 9px 10px;

    border: 1px solid rgba(120, 220, 255, 0.18);
    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 8px 25px rgba(0, 0, 0, 0.2);

    color: #ffffff;
    text-decoration: none;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.button-icon {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 16px;

    border: 1px solid rgba(109, 222, 255, 0.25);
    border-radius: 12px;

    background: rgba(80, 210, 255, 0.08);

    color: #8ce4ff;

    font-size: 21px;
    font-weight: 400;

    box-shadow:
        inset 0 0 12px rgba(102, 221, 255, 0.04),
        0 0 10px rgba(65, 209, 255, 0.04);
}

.button-text {
    flex: 1;

    font-size: 17px;
    font-weight: 400;
}

.button-arrow {
    margin-left: 15px;

    color: rgba(145, 229, 255, 0.65);

    font-size: 27px;
    font-weight: 300;

    transition:
        transform 0.25s ease,
        color 0.25s ease;
}

.menu-button:hover {
    transform: translateY(-3px);

    border-color: rgba(100, 220, 255, 0.7);

    background:
        linear-gradient(
            135deg,
            rgba(76, 208, 255, 0.16),
            rgba(255, 255, 255, 0.04)
        );

    box-shadow:
        0 0 20px rgba(62, 207, 255, 0.14),
        0 10px 30px rgba(0, 0, 0, 0.28);
}

.menu-button:hover .button-icon {
    border-color: rgba(115, 226, 255, 0.55);

    background: rgba(80, 210, 255, 0.14);

    box-shadow: 0 0 15px rgba(69, 208, 255, 0.12);
}

.menu-button:hover .button-arrow {
    color: #9fe9ff;

    transform: translateX(4px);
}