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

:root {
    --black: #0a0a0a;
    --red: #D52B1E;
    --white: #ffffff;
    --gray: #666666;
    --light-gray: #999999;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-x: hidden;
    position: relative;
}

.stream-string-background {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 800px;
    width: 100%;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 4rem;
}

.title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.title-main {
    display: inline-block;
    animation: slideDown 0.8s ease-out 0.2s backwards;
}

.title-accent {
    color: var(--red);
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.tagline {
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    color: var(--red);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: slideDown 0.8s ease-out 0.4s backwards;
}

/* Main Content */
.main {
    animation: slideDown 0.8s ease-out 0.6s backwards;
}

.contact {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.email {
    color: var(--white);
    text-decoration: none;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.email::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--red);
    transition: width 0.3s ease;
}

.email:hover {
    color: var(--red);
}

.email:hover::after {
    width: 100%;
}

/* Services */
.services {
    text-align: center;
}

.services-title {
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--light-gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0;
    color: var(--white);
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    padding: 0.4rem 0;
}

.service-item::before {
    content: '—';
    color: var(--red);
    margin-right: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover {
    color: var(--red);
    transform: translateX(10px);
}

.service-item:hover::before {
    opacity: 1;
}

/* Footer */
.footer {
    margin-top: 6rem;
    text-align: center;
    animation: slideDown 0.8s ease-out 0.8s backwards;
}

.footer-line {
    width: 100px;
    height: 1px;
    background-color: var(--red);
    margin: 0 auto 1.5rem;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--gray);
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 1.5rem;
    }

    .header {
        margin-bottom: 3rem;
    }

    .contact {
        margin-bottom: 3rem;
        padding: 1.5rem 0;
    }

    .services-list {
        gap: 1rem;
    }

    .footer {
        margin-top: 4rem;
    }
}

@media (max-width: 480px) {
    .service-item:hover {
        transform: translateX(5px);
    }
}

/* Made with Bob */
