footer {
    background: transparent;
    padding: 3rem 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 0;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    transform: none;
    background: rgba(255, 215, 0, 0.28);
    pointer-events: none;
    z-index: 2;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-smooth .footer-main,
.footer-smooth .footer-bottom {
    will-change: opacity, transform;
}

.footer-smooth.footer-smooth-ready .footer-main {
    animation: footerSmoothReveal 720ms var(--ease-decelerate) both;
}

.footer-smooth.footer-smooth-ready .footer-bottom {
    animation: footerSmoothReveal 720ms var(--ease-decelerate) 120ms both;
}

@keyframes footerSmoothReveal {
    from {
        opacity: 0.35;
        transform: translateY(18px);
    }

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

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.3) 20%, rgba(255, 215, 0, 0.3) 80%, transparent 100%);
    margin: 2rem 0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition:
        opacity var(--motion-normal) var(--ease-standard),
        transform var(--motion-normal) var(--ease-standard);
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-tagline {
    font-family: 'Baby Doll', cursive;
    color: #FFD700;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.4;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition:
        color var(--motion-normal) var(--ease-standard),
        transform var(--motion-normal) var(--ease-standard);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #FFD700;
    transform: translateX(5px);
}

.footer-links a:active {
    transform: translateX(2px) scale(0.99);
}

.footer-social {
    flex: 1;
    min-width: 250px;
}

.social-title {
    font-family: 'Baby Doll', cursive;
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 250px;
    margin: 0 auto;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition:
        transform var(--motion-normal) var(--ease-standard),
        opacity var(--motion-normal) var(--ease-standard);
    position: relative;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition:
        transform var(--motion-normal) var(--ease-standard),
        background var(--motion-normal) var(--ease-standard),
        border-color var(--motion-normal) var(--ease-standard);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.social-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0.8);
    transition: filter var(--motion-normal) var(--ease-standard);
}

.social-name {
    color: #ccc;
    font-size: 0.8rem;
    transition: color var(--motion-normal) var(--ease-standard);
}

.social-item:hover .social-icon {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
}

.social-item:active .social-icon {
    transform: translateY(-1px) scale(0.97);
}

.social-item:hover .social-icon img {
    filter: brightness(1);
}

.social-item:hover .social-name {
    color: #FFD700;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 0 !important;
}

.disclaimer {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-highlight {
    color: #FFD700;
    font-family: 'Baby Doll', cursive;
    display: block;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.copyright {
    margin-top: 1.5rem;
    color: #666;
    font-size: 0.8rem;
}

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

.footer-particle {
    position: absolute;
    background-color: rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0;
    }
}

@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand,
    .footer-links {
        text-align: center;
    }

    .footer-links a:hover {
        transform: none;
    }
}

@media (max-width: 600px) {
    footer {
        padding: 2rem 1.5rem 1rem;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-logo {
        height: 50px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer-smooth .footer-main,
    .footer-smooth .footer-bottom {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
}
