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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow: hidden;
    background: #000;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    gap: 2rem;
}

.title {
    font-family: 'Courier New', Courier, monospace;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 0.3em;
    color: #8b9a6f;
    text-shadow: 
        2px 2px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        0 0 20px rgba(107, 142, 35, 0.5);
    text-transform: uppercase;
    animation: fadeInTitle 1.2s ease-in;
    text-align: center;
    padding: 0 1rem;
}

.logo {
    max-width: 80%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    animation: fadeIn 1.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInTitle {
    from {
        opacity: 0;
        transform: translateY(-20px);
        letter-spacing: 0.5em;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 0.3em;
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 90%;
    }
    
    .title {
        font-size: 1.5rem;
        letter-spacing: 0.2em;
    }
    
    .content {
        gap: 1.5rem;
    }
}
