* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Roboto Mono', monospace;
    overflow-x: hidden;
}
#canvas-bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.15;
}
nav {
    background: #0d0d0d;
    padding: 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #333;
}
nav .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav h1 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    color: #00e6e6;
    text-shadow: 0 0 8px rgba(0, 230, 230, 0.5);
}
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}
nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
nav a:hover {
    color: #00e6e6;
    transform: translateY(-2px);
}
section {
    padding: 5rem 1rem;
    min-height: 60vh;
    display: grid;
    place-items: center;
}
.container {
    max-width: 900px;
    margin: 0 auto;
}
h1, h2 {
    font-family: 'JetBrains Mono', monospace;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}
h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}
p {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}
#home {
    min-height: 100vh;
    background: linear-gradient(180deg, #0d0d0d, #1a1a1a);
    text-align: center;
}
#home .container {
    animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}
#about, #journey {
    background: #1a1a1a;
}
.hobbies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}
.hobby-card {
    background: #252525;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hobby-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 230, 230, 0.2);
}
.hobby-card h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.8rem;
    color: #00e6e6;
    margin-bottom: 0.75rem;
}
#socials {
    background: #0d0d0d;
    text-align: center;
}
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #333;
    color: #e0e0e0;
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-btn:hover {
    background: #00e6e6;
    color: #0d0d0d;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 230, 230, 0.5);
}
footer {
    background: #0d0d0d;
    color: #b0b0b0;
    text-align: center;
    padding: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    border-top: 1px solid #333;
}
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 600px) {
    nav .container {
        flex-direction: column;
        gap: 1rem;
    }
    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 2rem;
    }
    .hobbies {
        grid-template-columns: 1fr;
    }
}