:root {
    --color-black: #0a0a0a;
    --color-black-light: #1a1a1a;
    --color-gold: #FCD116;
    --color-gold-dim: rgba(252, 209, 22, 0.4);
    --color-green: #009B3A;
    --color-green-dim: rgba(0, 155, 58, 0.4);
    --color-white: #ffffff;
    --color-text-light: rgba(255, 255, 255, 0.8);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-accent: 'Playfair Display', serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: radial-gradient(circle at 50% 50%, var(--color-black-light) 0%, var(--color-black) 100%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 155, 58, 0.1) 0%, transparent 50%, rgba(252, 209, 22, 0.1) 100%);
    z-index: 2;
    pointer-events: none;
}

.content-wrapper {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 0;
}

.logo-container {
    animation: fadeInDown 1s ease-out;
    text-align: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.5rem;
    letter-spacing: -1px;
    color: var(--color-white);
}

.highlight-gold {
    color: var(--color-gold);
}

.highlight-green {
    color: var(--color-green);
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    margin: 4rem 0;
    animation: fadeInUp 1.2s ease-out;
}

.dynamic-text {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    height: 2.2em;
    /* fixed height to prevent layout shift */
}

.typewriter {
    color: var(--color-gold);
    border-right: 4px solid var(--color-green);
    padding-right: 8px;
    animation: blink 0.75s step-end infinite;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-light);
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 300;
}


.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    animation: fadeIn 1.5s ease-out;
}

.social-text {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

/* Animations */
@keyframes blink {

    0%,
    100% {
        border-color: transparent;
    }

    50% {
        border-color: var(--color-green);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 2rem 5%;
        width: 100%;
    }


    .dynamic-text {
        height: auto;
        min-height: 2.5em;
    }
}