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

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0a0a;
    color: #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.noise {
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(255,255,255,0.015) 0px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 999;
}

.screen {
    display: flex;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    padding: 40px 60px;
    gap: 60px;
}

.left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.hero h1 {
    margin-bottom: 8px;
}

.hero .first {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    letter-spacing: 12px;
    margin-bottom: 2px;
}

.hero .last {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 3.8rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 4px;
    line-height: 1.1;
}

.pixel-accent {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.65rem;
    color: #555;
    letter-spacing: 12px;
    margin-bottom: 12px;
    animation: blink 2.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.15; }
}

.sub {
    font-size: 1.2rem;
    color: #888;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 14px;
}

.tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tags span {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.5rem;
    padding: 7px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid #333;
    border-radius: 20px;
    color: #999;
    transition: all 0.3s ease;
}

.tags span:hover {
    background: rgba(255,255,255,0.08);
    border-color: #555;
    color: #fff;
}

.about-row {
    display: flex;
    gap: 16px;
}

.about-card {
    flex: 1;
    background: #111;
    border: 1px solid #222;
    border-radius: 14px;
    padding: 22px 20px;
    transition: all 0.3s ease;
}

.about-card:hover {
    border-color: #444;
    background: #151515;
}

.about-card .icon {
    display: block;
    margin-bottom: 10px;
    color: #888;
}

.about-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 8px;
}

.about-card p {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.6;
}

.platforms {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.platform {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    text-decoration: none;
    color: #d0d0d0;
    transition: all 0.3s ease;
}

.platform:hover {
    border-color: #555;
    background: #181818;
    transform: translateX(6px);
}

.platform svg {
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.platform:hover svg {
    opacity: 1;
}

.platform.yt svg { color: #fff; }
.platform.ig svg { color: #ccc; }
.platform.tt svg { color: #ddd; }


.platform strong {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #eee;
    margin-bottom: 2px;
}

.platform span {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.45rem;
    color: #666;
    letter-spacing: 1px;
}

.quote {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.6rem;
    color: #555;
    text-align: center;
    margin-top: 10px;
    letter-spacing: 1px;
}

.copy {
    font-size: 0.75rem;
    color: #444;
    text-align: center;
}

@media (max-width: 900px) {
    .screen {
        flex-direction: column;
        padding: 30px 24px;
        gap: 24px;
        overflow-y: auto;
    }
    html, body {
        overflow-y: auto;
    }
    .hero .last {
        font-size: 2.4rem;
    }
    .about-row {
        flex-direction: column;
    }
}
