:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-gray: #333333;
    --text-muted: #888888;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Canvas Background */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    /* Let clicks pass through */
}

/* Layout */
.hero-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    width: 100%;
}

h1 {
    font-size: 6rem;
    line-height: 0.9;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

p {
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
    font-size: 1.25rem;
}

/* Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.cta-button:hover {
    background: var(--text-color);
    color: var(--bg-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Utility */
.highlight {
    color: var(--text-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .container {
        padding: 1.5rem;
    }
}