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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0b1a0e;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transform: scale(1.05);
    animation: kenburns 40s ease-in-out infinite alternate;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(11, 26, 14, 0.15) 0%, rgba(11, 26, 14, 0.55) 100%);
    z-index: -1;
}

.main-layout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    padding: 20px;
    gap: 24px;
}

.logo-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px) saturate(130%);
    -webkit-backdrop-filter: blur(20px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 12px 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 90%;
    width: auto;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.logo-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.28);
}

.logo-img {
    width: auto;
    height: auto;
    max-width: 320px;
    max-height: 120px;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
    border-radius: 12px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
    transition: filter 0.5s ease;
}

.logo-card:hover .logo-img {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes kenburns {
    0% { transform: scale(1.05) translate(0, 0); }
    50% { transform: scale(1.12) translate(-1%, -1%); }
    100% { transform: scale(1.05) translate(0, 0); }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .logo-card {
        padding: 16px 20px;
    }
    .logo-img {
        max-width: 240px;
        max-height: 120px;
    }
    .tagline {
        font-size: 0.95rem;
    }
}
