:root {
    --bg-color: #0d0c1d;
    --accent-color: #f8a43e; 
    --text-primary: #f0e6ff;
    --text-secondary: #a097b0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: flex-end;
    z-index: 100;
    background: rgba(13, 12, 29, 0.6);
    backdrop-filter: blur(10px);
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

#automaton-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.hero-title-svg {
    width: 90%;
    max-height: 100%;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 1.5px;
    margin-top: 0.5rem;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: var(--accent-color);
    font-size: clamp(1.5rem, 4vw, 2rem);
    transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
    text-shadow: 0 0 8px var(--accent-color), 0 0 12px var(--accent-color), 0 0 16px var(--accent-color);
}

.social-links a:hover {
    transform: scale(1.1) translateY(-3px);
    text-shadow: 0 0 12px var(--accent-color), 0 0 18px var(--accent-color), 0 0 24px var(--accent-color);
}

.content-section {
    padding: 100px 10%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-color);
}
