:root body {
    background: #080808;
    margin: 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: Monospace, Arial, Helvetica, sans-serif;
    color: #FFF;
}

:root h1 {
    font-family: monospace;
    font-size: clamp(3rem, 10vw, 100rem);
    color: #e1dbd2;
    padding: 0rem clamp(1rem, 2vw, 3rem);
    border-radius: clamp(0.4rem, 0.75vw, 1rem);
}

:root h1:hover {
    color: #e1dbd2;
}

:root body {
    font-family: monospace;
    font-size: 14px;
    color: #e1dbd2;
} 

:root body #content a {
    color: #FFFFFF;
    text-decoration: none;
    padding: 5px;
    box-shadow: inset 0 0 0 0 white;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
}

:root body #content a:hover {
    text-decoration: none;
    box-shadow: inset 300px 0 0 0 white;
    color: #0A0A0A;
}

:root body #logo {
    display: grid;
    place-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

:root body #footer {
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 10px;
    margin-bottom: 5px;
    z-index: 10;
    font-size: 10px;
    background: #080808;
}

:root body #footer a {
    color: #FFFFFF;
    text-decoration: none;
    padding: 5px;
    box-shadow: inset 0 0 0 0 white;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
}

:root body #footer a:hover {
    text-decoration: none;
    box-shadow: inset 300px 0 0 0 white;
    color: #0A0A0A;
}

/* Contact Form Styles */
.contact-form {
    background: #080808;
    padding: 2rem;    
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e1dbd2;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #333;
    background: #080808;
    color: #e1dbd2;
    font-family: Monospace, Arial, Helvetica, sans-serif;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e1dbd2;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.send-button {
    background: #080808;
    color: #FFFFFF;
    border: 1px solid #333;
    padding: 0.75rem 2rem;
    cursor: pointer;
    font-family: Monospace, Arial, Helvetica, sans-serif;
    font-size: 14px;
    transition: all .3s ease-in-out;
    box-shadow: inset 0 0 0 0 white;
}

.send-button:hover {
    box-shadow: inset 300px 0 0 0 white;
    color: #0A0A0A;
}

.back-link {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #FFFFFF;
    text-decoration: none;
    padding: 5px;
    font-size: 10px;
    box-shadow: inset 0 0 0 0 white;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
}

.back-link:hover {
    text-decoration: none;
    box-shadow: inset 300px 0 0 0 white;
    color: #0A0A0A;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #080808;
}

::-webkit-scrollbar-thumb {
    background: #e1dbd2;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}

/* Firefox scrollbar styles */
* {
    scrollbar-width: thin;
    scrollbar-color: #e1dbd2 #080808;
}

/* Mobile optimization - hide image on small screens */
@media (max-width: 768px) {
    #content {
        align-items: flex-start !important;
        padding-top: 2rem !important;
        padding-bottom: 4rem !important;
    }
    
    #content > div {
        flex-direction: column !important;
        text-align: center !important;
        padding: 1rem !important;
        gap: 1.5rem !important;
        align-items: center !important;
    }
    
    #content img {
        width: 80% !important;
        max-width: 300px !important;
        height: auto !important;
        order: -1 !important; /* Move image to top */
    }
    
    #content > div > div {
        text-align: center !important;
        color: #e1dbd2 !important;
    }
}