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

body {
    margin: 0;
    padding: 0;
    background: #0a0a0a;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

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

.logo {
    width: 40vw;
    max-width: 200px;
    animation: pulse 2s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

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

.code-line {
    position: absolute;
    white-space: nowrap;
    color: rgba(0, 255, 180, 0.06);
    font-size: 1em;
    animation: moveCode 30s linear infinite;
}

@keyframes moveCode {
    0% { transform: translateY(100vh); }
    100% { transform: translateY(-100vh); }
}

.tech-text {
    font-size: 1.2em;
    background: linear-gradient(to right, #00f0ff, #5c00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-right: 2px solid #00f0ff;
    white-space: nowrap;
    overflow: hidden;
}

@media screen and (max-width: 600px) {
    .tech-text {
        font-size: 1em;
        max-width: 100%;
    }

    .logo {
        width: 50vw;
    }
}
