@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
    background: #0a001f;
    color: #a29bfe;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle, rgba(54, 0, 153, 0.8) 0%, rgba(10,0,31,1) 100%);
    z-index: -1;
}

.header {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* z-index: 10; */
    display: flex;
    justify-content: center;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    color: #a29bfe;
    font-size: 54px;
    transition: 0.3s;
}

.social-icon:hover {
    color: #ff00ff;
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.title-container {
    display: flex;
    justify-content: center;
    user-select: none;
}

.glowing-text {
    user-select: none;
    font-size: 6rem;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    animation: glowing 1.5s ease-in-out infinite;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 40px #ff00ff, 0 0 50px #ff00ff, 0 0 75px #ff00ff;
}


@keyframes glowing {
    0% { text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 40px #ff00ff, 0 0 50px #ff00ff, 0 0 75px #ff00ff; }
    50% { text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 30px #ff00ff, 0 0 40px #ff00ff, 0 0 50px #ff00ff, 0 0 75px #ff00ff; }
    100% { text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 40px #ff00ff, 0 0 50px #ff00ff, 0 0 75px #ff00ff; }
}

.typewriter-container {
    display: flex;
    justify-content: center;
}

.typewriter {
    overflow: hidden;
    border-right: 2px solid #a29bfe;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: 2px;
    animation: typing 3s steps(30, end), blink 0.75s step-end infinite;
    width: 100%;
    font-size: 1.6rem;
    padding: 10px;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: #a29bfe; }
}

.hack-btn {
    background: none;
    border: 2px solid #a29bfe;
    color: #a29bfe;
    font-size: 1.2rem;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.3s;
    border-radius:8px;
}

.hack-btn:hover {
    background: #a29bfe;
    color: #0a001f;
}

.hidden {
    display: none;
}

.divcord {
    padding: 20px;
}

.discord {
    text-decoration: none;
    color: white;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    width: 250px;
    height: 250px;
    border: 2px solid #a29bfe;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.1);
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle, rgba(54, 0, 153, 0.8) 0%, rgba(10, 0, 31, 1) 100%);
    z-index: -1;
    overflow: hidden;
}

.falling-chars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    display: block;
}

.falling-chars span {
    position: absolute;
    font-size: 24px;
    color: #ffffff;
    font-family: 'Courier Prime', monospace;
    animation: fall linear infinite, fadeOut 4s ease-in-out infinite;
    opacity: 1;
    white-space: nowrap;
    will-change: transform, opacity;
}



@keyframes fall {
    0% {
        transform: translateY(-100vh);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

@keyframes fadeOut {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}
