/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #d4d8e1;          /* dark background - feels crypto/nerdy */
    color: #323232;
}

/* Center the logo perfectly in viewport */
.logo-container {
    height: 100vh;                      /* full screen height */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;                      /* small breathing room on mobile */
}

/* Logo styling */
.main-logo {
    max-width: 80%;                     /* never wider than 80% of screen */
    max-height: 80vh;                   /* never taller than 80% of viewport height */
    width: auto;
    height: auto;
    object-fit: contain;                /* keeps aspect ratio, no distortion */
    transition: transform 0.3s ease;    /* subtle hover effect */
}

.main-logo:hover {
    transform: scale(1.05);             /* gentle zoom on hover */
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .logo-container {
        padding: 15px;
    }
    
    .main-logo {
        max-width: 90%;                 /* bigger on small screens */
    }
}

@media (max-width: 480px) {
    .main-logo {
        max-width: 95%;
    }
}