/* base.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #0c0f1f, #1a1d34);
    color: #fff;
    padding-top: 96px;
}

footer {
    padding: 30px;
    background-color: #0c0f1f;
    font-size: 0.9rem;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.footer-content p {
    margin: 0 auto;
    text-align: center;
    flex: 1;
}

.footer-nft-calendar {
    position: absolute;
    right: 0;
}

@media screen and (max-width: 768px) {
    footer {
        padding: 22.5px; /* уменьшено на 25% */
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-nft-calendar {
        position: static;
        margin-top: 12px;
    }
}