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

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #050505;
    color: #e0e0e0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    opacity: 0.07;
    /* background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"); */
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #000;
    overflow: hidden;
}

.g-blob {
    position: absolute;
    filter: blur(90px);
    opacity: 0.5;
    animation: moveBlob 25s infinite alternate;
    border-radius: 50%;
}

.g-blob:nth-child(1) {
    top: 10%;
    left: 10%;
    width: 500px;
    height: 500px;
    background: #1a1a2e;
}

.g-blob:nth-child(2) {
    bottom: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: #1e1e24;
    animation-delay: -5s;
}

@keyframes moveBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

.spotlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    background: radial-gradient(600px circle at var(--x) var(--y), rgba(255, 255, 255, 0.06), transparent 40%);
    will-change: background;
}

.content-wrapper {
    z-index: 10;
    position: relative;
    text-align: center;
    max-width: 600px;
    width: 100%;
    padding: 20px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #ff9f43;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff9f43;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% {
        opacity: 0.5;
        box-shadow: 0 0 0px #ff9f43;
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 10px #ff9f43;
    }

    100% {
        opacity: 0.5;
        box-shadow: 0 0 0px #ff9f43;
    }
}

.hello-title {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -3px;
    line-height: 1;
    background: linear-gradient(to bottom right, #ffffff 30%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typewriter-container {
    white-space: nowrap;
    font-size: 1.2rem;
    color: #a0a0a0;
    font-weight: 300;
    margin-bottom: 50px;
    height: 30px;
}

.dynamic-text {
    color: #fff;
    font-weight: 500;
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 18px;
    background-color: #fff;
    animation: blink 1s infinite;
    vertical-align: middle;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    font-size: 1.6rem;
    transition: 0.3s;
    text-decoration: none;
    position: relative;
}

.social-btn:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.1);
}

.social-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
    color: #fff;
}

.copy-tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
    white-space: nowrap;
}

.copy-tooltip.show {
    opacity: 1;
    bottom: -45px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .hello-title {
        font-size: 4rem;
    }

    .typewriter-container {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hello-title {
        font-size: 3rem;
        letter-spacing: -2px;
    }

    .typewriter-container {
        font-size: 0.9rem;
    }

    .social-btn {
        font-size: 1.4rem;
    }
}