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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    background: #000000;
    display: flex;
    flex-direction: column;
    position: relative;
}


body > * {
    position: relative;
    z-index: 1;
}

.splash-container {
    width: 100vw;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-table {
    border-collapse: separate;
    border-spacing: 0;
    border: none;
}

.logo-cell {
    padding: 3rem;
    text-align: center;
    vertical-align: middle;
    background: transparent;
    transition: background 0.3s ease;
}

.logo-cell:hover {
    background: rgba(255, 255, 255, 0.05);
}

.logo-table tr:first-child .logo-cell:first-child {
    border-right: 2px solid #333333;
    border-bottom: 2px solid #333333;
}

.logo-table tr:first-child .logo-cell:last-child {
    border-bottom: 2px solid #333333;
}

.logo-table tr:last-child .logo-cell:first-child {
    border-right: 2px solid #333333;
}

.logo-cell a {
    display: block;
    text-decoration: none;
}

.logo-cell img {
    display: block;
    width: 350px;
    height: 350px;
    max-width: 350px;
    max-height: 350px;
    object-fit: contain;
}

/* Mobile styles */
@media (max-width: 768px) {
    .logo-cell {
        padding: 2rem;
    }

    .logo-cell img {
        width: 250px;
        height: 250px;
        max-width: 250px;
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .logo-cell {
        padding: 1.5rem;
    }

    .logo-cell img {
        width: 180px;
        height: 180px;
        max-width: 180px;
        max-height: 180px;
    }
}

.site-footer {
    border-top: 1px solid #333333;
    padding: 1.5rem 0;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: #cccccc;
    font-size: 0.9rem;
}


/* Mobile footer styles */
@media (max-width: 768px) {
    .site-footer {
        padding: 1.25rem 0;
    }

    .footer-content {
        padding: 0 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 1rem 0;
    }

    .footer-content {
        padding: 0 1rem;
        font-size: 0.75rem;
    }

}

