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

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Roboto Mono', 'Courier New', Courier, monospace;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding-top: 5vh;
    position: relative;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2rem 0 0.25rem 0;
}

.logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.logo:hover {
    filter: drop-shadow(0 0 15px rgba(238, 255, 65, 0.4));
}

.content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 0.25rem 0;
    margin-top: 0.25rem;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.description {
    font-size: 0.95rem;
    font-weight: 400;
    color: #eeff41;
    line-height: 1.2;
    max-width: 100%;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.footer {
    margin-top: auto;
    padding: 2rem 0;
    width: 100%;
    text-align: center;
}

.email {
    color: #eeff41;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.email:hover {
    opacity: 0.8;
}

.footer-info {
    color: #eeff41;
    font-size: 0.75rem;
    letter-spacing: 0.3px;
    margin-top: 0.75rem;
    line-height: 1.5;
}

/* Responsive design */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
    
    .description {
        font-size: 0.85rem;
        padding: 0 1rem;
        white-space: normal;
    }
    
    .logo {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.6rem;
    }
    
    .description {
        font-size: 0.75rem;
        white-space: normal;
    }
    
    .logo {
        max-width: 250px;
    }
}
