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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#matrix-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeIn 2s ease-in;
}

.logo-container {
    padding: 3rem;
    animation: pulse 3s ease-in-out infinite;
}

.logo {
    width: 200px;
    height: auto;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 10px 20px rgba(255, 215, 0, 0.5));
    animation: float 3s ease-in-out infinite;
}

.company-name {
    margin-top: 1.5rem;
    font-size: 2.5rem;
    color: #592b13;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(255, 215, 0, 0.3);
    -webkit-text-stroke: 1px rgba(255, 215, 0, 0.3);
    text-stroke: 1px rgba(255, 215, 0, 0.3);
}

.tagline {
    margin-top: 0.5rem;
    font-size: 1.2rem;
    color: #592b13;
    font-weight: 400;
    letter-spacing: 2px;
    -webkit-text-stroke: 0.5px rgba(255, 215, 0, 0.2);
    text-stroke: 0.5px rgba(255, 215, 0, 0.2);
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .logo-container {
        padding: 2rem;
    }
    
    .logo {
        width: 150px;
    }
    
    .company-name {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
}