

.site-footer {
    margin-top: 15px;
    padding: 5px 5px;
    font-family: inherit;
    font-size: xx-small;
    line-height: 1.5;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-top {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.footer-top p {
    font-size: medium;
}
/* Disclaimer paragraph */
.footer-disclaimer p {
    margin: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* bottom small text */
.footer-bottom {
    display: flex;
    justify-content: center;
    margin-top: 4px;
}

/* ====== RESPONSIVE DESIGN - MEDIA QUERIES ====== */

/* 1200px breakpoint - Large tablets and smaller desktops */
@media (max-width: 1200px) {
    .site-footer {
        margin-top: 12px;
        padding: 4px 4px;
    }
    
    .footer-inner {
        max-width: 95%;
        gap: 10px;
    }
    
    .footer-top p {
        font-size: small;
    }
    
    .footer-disclaimer p {
        padding: 10px;
        font-size: small;
    }
}

/* 900px breakpoint - Tablets */
@media (max-width: 900px) {
    .site-footer {
        margin-top: 10px;
        padding: 3px 3px;
    }
    
    .footer-inner {
        max-width: 90%;
        gap: 8px;
    }
    
    .footer-top {
        align-items: center;
        text-align: center;
    }
    
    .footer-top p {
        font-size: small;
    }
    
    .footer-disclaimer p {
        padding: 8px;
        font-size: small;
        border-radius: 6px;
    }
    
    .footer-bottom {
        margin-top: 2px;
    }
}

/* 520px breakpoint - Large mobile devices */
@media (max-width: 520px) {
    .site-footer {
        margin-top: 8px;
        padding: 2px 2px;
        font-size: x-small;
    }
    
    .footer-inner {
        max-width: 95%;
        gap: 6px;
        padding: 0 10px;
    }
    
    .footer-top {
        align-items: center;
        text-align: center;
    }
    
    .footer-top p {
        font-size: x-small;
    }
    
    .footer-disclaimer p {
        padding: 6px;
        font-size: x-small;
        border-radius: 4px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }
    
    .footer-bottom {
        margin-top: 1px;
        font-size: x-small;
    }
}

/* 375px breakpoint - Small mobile devices */
@media (max-width: 375px) {
    .site-footer {
        margin-top: 6px;
        padding: 1px 1px;
        font-size: x-small;
    }
    
    .footer-inner {
        max-width: 100%;
        gap: 4px;
        padding: 0 8px;
    }
    
    .footer-top {
        align-items: center;
        text-align: center;
    }
    
    .footer-top p {
        font-size: x-small;
        line-height: 1.3;
    }
    
    .footer-disclaimer p {
        padding: 4px;
        font-size: x-small;
        border-radius: 3px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        line-height: 1.3;
    }
    
    .footer-bottom {
        margin-top: 0;
        font-size: x-small;
    }
}