* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', sans-serif;
    overflow: hidden;
    background: #232324;
}

.container {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Background Container */
.background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.background-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Group 1 */
.group1 {
    position: absolute;
    bottom: -42.22%;
    left: 0;
    right: -11.77%;
    top: -13.75%;
    animation: float-group1 20s ease-in-out infinite;
}

.group1-inner {
    position: absolute;
    bottom: 0;
    left: -12.56%;
    right: 0;
    top: -16.04%;
}

/* Group 2 */
.group2 {
    position: absolute;
    bottom: -42.22%;
    left: 0;
    right: -11.77%;
    top: -13.75%;
    mix-blend-mode: color-dodge;
    animation: float-group2 25s ease-in-out infinite;
}

.group2-inner {
    position: absolute;
    bottom: 0;
    left: -11.77%;
    right: 0;
    top: -15.09%;
}

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 70.3%;
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.6), rgba(2, 6, 23, 0));
    filter: blur(30px);
    animation: pulse-opacity 8s ease-in-out infinite;
}

/* Border */
.border-overlay {
    position: absolute;
    inset: -8px;
    border: 8px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

/* Content */
.content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 24px;
}

/* Logo */
.logo-container {
    width: 300px;
    height: 80px;
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease-out;
    display: flex;
    align-items: center;
}

.logo {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 22.65%;
    height: 100%;
    flex-shrink: 0;
}

.logo-text {
    margin-left: 8px;
    font-size: 31.2px;
    font-weight: 700;
    color: white;
    letter-spacing: -1px;
    white-space: nowrap;
    line-height: 1;
}

.logo-text-stay {
    font-weight: 800;
}

/* Text */
.text-container {
    text-align: center;
    max-width: 672px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.text {
    color: rgb(255, 255, 255);
    font-size: 24px;
    font-weight: 200;
    max-width: 448px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Dots */
.dots-container {
    margin-top: 48px;
    display: flex;
    gap: 8px;
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
}

.dot:nth-child(1) {
    animation: pulse-dot 1.0s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation: pulse-dot 1.0s ease-in-out infinite 0.2s;
}

.dot:nth-child(3) {
    animation: pulse-dot 1.0s ease-in-out infinite 0.4s;
}

/* Animations */
@keyframes float-group1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(30px, -20px) rotate(1deg) scale(1.05);
    }

    50% {
        transform: translate(-20px, 30px) rotate(-2deg) scale(0.95);
    }

    75% {
        transform: translate(20px, 20px) rotate(1deg) scale(1.02);
    }
}

@keyframes float-group2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    30% {
        transform: translate(-40px, 30px) rotate(-2deg) scale(1.08);
    }

    60% {
        transform: translate(50px, -25px) rotate(3deg) scale(0.92);
    }

    80% {
        transform: translate(-30px, -20px) rotate(-1deg) scale(1.05);
    }
}

@keyframes pulse-opacity {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* SVG Styles */
svg {
    display: block;
    width: 100%;
    height: 100%;
}