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

body {
    font-family: 'Courier New', monospace;
    overflow: hidden;
    height: 100vh;
    background: #0d1117;
    color: #c9d1d9;
}

.section {
    position: absolute;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease;
}

.hero {
    opacity: 1;
    z-index: 2;
}

.hero.fade-out {
    opacity: 0;
    pointer-events: none;
}

.about {
    opacity: 0;
    z-index: 1;
    padding: 2rem;
}

.about.fade-in {
    opacity: 1;
}

h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

h1 a {
    color: #58a6ff;
    text-decoration: none;
    text-shadow: 0 0 10px #58a6ff;
    transition: all 0.3s ease;
}

h1 a:hover {
    color: #79c0ff;
    text-shadow: 0 0 20px #58a6ff;
}

h1::before {
    content: '> ';
    color: #58a6ff;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    color: #58a6ff;
    font-size: 1.5rem;
    transition: transform 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    filter: drop-shadow(0 0 5px #58a6ff);
}

.social-links a:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px #58a6ff);
}

.about-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.about-left h2 {
    font-size: 2rem;
    color: #58a6ff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px #58a6ff;
    opacity: 0;
}

.about-left h2::before {
    content: '$ ';
}

.about-left p {
    font-size: 1.1rem;
    color: #c9d1d9;
    opacity: 0;
}

.about-right h3 {
    font-size: 1.5rem;
    color: #58a6ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px #58a6ff;
    opacity: 0;
}

.about-right h3::before {
    content: '// ';
}

.about-right ul {
    list-style: none;
    padding-left: 0;
}

.about-right li {
    font-size: 1rem;
    color: #c9d1d9;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0;
}

.about-right li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: #58a6ff;
    font-size: 1.2rem;
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    color: #58a6ff;
    font-size: 0.9rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Scanline effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(88, 166, 255, 0.03) 0px,
        transparent 1px,
        transparent 2px,
        rgba(88, 166, 255, 0.03) 3px
    );
    pointer-events: none;
    z-index: 1000;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    .social-links a {
        font-size: 1.2rem;
    }
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
}