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

html {
    height: 100%;
}

body {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: Georgia, serif;
    background-color: #000;
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.logo {
    max-width: 400px;
    height: auto;
    animation: logoSpin 0.4s ease-out;
}

@keyframes logoSpin {
    0% { transform: rotateY(90deg); opacity: 0; filter: blur(8px); }
    70% { filter: blur(2px); }
    100% { transform: rotateY(0deg); opacity: 1; filter: blur(0); }
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.menu a {
    font-size: 40px;
    color: #b3d900;
    font-family: 'Apple Garamond', Garamond, Georgia, serif;
    text-decoration: underline;
    text-decoration-color: #b3d900;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
    transition: opacity 0.2s;
    cursor: pointer;
}

.menu a:hover {
    opacity: 0.7;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    z-index: 1;
    font-size: 12px;
    font-style: italic;
    border-top: 1px solid #99cc00;
    background: #000;
}

.footer p {
    line-height: 1.4;
    color: #fff;
}

.footer a {
    color: #b3d900;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .logo {
        max-width: 250px;
    }

    .menu a {
        font-size: 24px;
        gap: 10px;
    }

    .footer {
        font-size: 10px;
    }

    .container {
        gap: 30px;
    }
}
