body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    max-width: 100vw;
    overflow-x: hidden;
    background: black;
}

.dragonica-farewell-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    background: url('./assets/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;

    width: 100vw;
    height: 100vh;
}

.dragonica-farewell-schedule {
    margin-top: -9vw;
    margin-bottom: -20vw;
    display: block;
    width: 68vw;
}

.dragonica-farewell-thank-you {
    position: relative;
    z-index: 3;

    display: block;
    width: 56vw;
}

.dragonica-farewell-logo {
    position: relative;
    z-index: 3;

    display: block;
    width: 13vw;
    margin-top: 5vw;
}

/* FOOTER STYLING */
footer {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.95) 100%);
    padding: 2rem 2rem 1.5rem 2rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
    gap: 1.5rem;
}

.footer-logo {
    display: block;
    width: 120px;
    height: auto;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-text-box {
    text-align: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(2px);
}

.footer-copyright {
    margin: 0;
    font-size: 0.85rem;
    color: #e0e0e0;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.footer-publisher {
    margin: 0.5rem 0 0 0;
    font-size: 0.8rem;
    color: #b8b8b8;
    letter-spacing: 0.8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.dragonica-farewell-thank-you-mobile {
    display: none;
}

/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
    footer {
        padding: 2rem 1.5rem;
    }

    .footer-logo {
        width: 195px;
        margin-bottom: -1.2rem;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }

    .footer-publisher {
        font-size: 0.75rem;
    }

    .dragonica-farewell-container {
        overflow: hidden;
        background: url('./assets/bg-mobile.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top;
        justify-content: end;
    }

    .dragonica-farewell-schedule {
        width: 127vw;
        margin-top: -20vw;
        margin-bottom: -11vw;
    }

    .dragonica-farewell-thank-you {
        display: none;
    }

    .dragonica-farewell-thank-you-mobile {
        display: block;
        width: 95%;
    }

    .dragonica-farewell-logo {
        width: 39vw;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 1.5rem 1rem;
    }

    .footer-logo {
        width: 174px;
        margin-bottom: -18px;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }

    .footer-publisher {
        font-size: 0.7rem;
    }
}