* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #1a1f2e;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    min-height: 100vh;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(0, 238, 207, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 50%, rgba(250, 255, 0, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 85%, rgba(255, 0, 92, 0.15) 0%, transparent 40%);
    animation: gradient_shift 20s ease infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gradient_shift {

    0%,
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2) rotate(5deg);
    }
}

body::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.logo {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 24px;
    font-weight: 400;
    background: linear-gradient(180deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    position: relative;
    z-index: 1;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.logo_bold {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer {
    margin-top: auto;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: lowercase;
}

.footer a:hover {
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

.footer-logo {
    width: 24px;
    height: 24px;
}

.logo-link {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: relative;
}

.icon {
    width: 96px;
    height: 96px;
    margin-top: 0px;
    margin-bottom: 24px;
}

.layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 32px 16px;
    min-height: 100vh;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: center;
}

@media (max-width: 600px) {
    .logo {
        margin-bottom: 0px;
    }
}