@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');

body {
    font-family: 'Space Mono', monospace;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    position: relative;
    overflow: hidden;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    opacity: 0.3;
}



main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.social-links a {
    color: #FFFF00;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.social-links a:hover {
    text-decoration: underline;
}

.social-links i {
    color: #ffffff;
    margin-right: 4px;
}

.main-content {
    text-align: left;
    max-width: 800px;
}

.main-text {
    font-size: 39px;
    line-height: 1.4;
    margin-bottom: 80px;
    font-weight: 400;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .main-text {
        font-size: 24px;
        margin-bottom: 40px;
    }

    main {
        padding: 20px 20px 20px calc(20px * 1.25);
    }

    .social-links {
        gap: 20px;
        flex-direction: column;
    }
}

.toggle-button {
    position: fixed;
    bottom: 40px;
    left: calc(20px * 1.25);
    width: 50px;
    height: 26px;
    background-color: #111111;
    border: none;
    border-radius: 13px;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background-color: #FFFF00;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-button.active .toggle-slider {
    transform: translateX(24px);
}

.content-hidden .main-content,
.content-hidden .social-links {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.main-content,
.social-links {
    transition: opacity 0.3s ease;
}

.content-hidden .video-background {
    opacity: 1;
}

.workhorse-link {
    color: #FFFF00;
    text-decoration: none;
}

.workhorse-link:hover {
    text-decoration: underline;
}
