body {
    margin: 0;
    overflow: hidden;
    background-color: #0b142b;
    /* Dark blue fallback */
    font-family: 'Arial', sans-serif;
    /* Or a more modern sans-serif like 'Open Sans', 'Montserrat' */
    color: white;
}

#three-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Behind the content */
}

.content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    /* Spacing between elements */
    padding: 20px;
    /* Optional: slight background for readability if particles are too busy behind text
    background-color: rgba(11, 20, 43, 0.3);
    border-radius: 10px;
    */
}

.logo {
    width: 130px;
    /* Adjust as needed */
    height: auto;
    margin-bottom: 5px;
    /* Space between logo and text */
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.4));
}

h1 {
    font-size: 2.8em;
    /* Adjust as needed */
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: bold;
    /* Make it bolder */
    /* Subtle text shadow for depth, similar to your example */
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5), 0 0 15px rgba(120, 180, 255, 0.2);
}

.text-yellow {
    color: #f0c419;
    /* Yellow from your logo */
    text-shadow: 0 0 10px rgba(240, 196, 25, 0.5), 0 0 5px rgba(240, 196, 25, 0.3);
}

.text-purple {
    color: #774aa4;
    /* Purple from your logo */
    text-shadow: 0 0 10px rgba(119, 74, 164, 0.5), 0 0 5px rgba(119, 74, 164, 0.3);
}

.email-link {
    margin-top: 15px;
    font-size: 1em;
}

.email-link a {
    color: #cccccc;
    text-decoration: none;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease, text-shadow 0.3s ease;
}

.email-link a:hover {
    color: #f0c419;
    border-color: #f0c419;
    text-shadow: 0 0 8px rgba(240, 196, 25, 0.7);
}

/* For smaller screens */
@media (max-width: 600px) {
    .logo {
        width: 90px;
    }

    h1 {
        font-size: 1.9em;
        letter-spacing: 2px;
    }

    .email-link {
        font-size: 0.9em;
    }

    .content-overlay {
        gap: 10px;
    }
}