@keyframes slideUpFooter {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Footer Container */
.footer {
    position: relative;
    z-index: 100;
    background: linear-gradient(145deg, rgba(20, 20, 25, 0.65), rgba(12, 12, 15, 0.85));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    max-width: 1400px;
    width: calc(100% - 3rem);
    margin: 4rem auto 2rem auto;
    padding: 4rem 4rem 2rem 4rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* Sleek Top Glow Line */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 70, 85, 0.8), transparent);
    box-shadow: 0 0 30px 2px rgba(255, 70, 85, 0.4);
    pointer-events: none;
    z-index: 10;
}

.footer::after {
    display: none;
}

.footer-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.footer-logo img {
    height: 64px;
    width: 64px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.footer-logo:hover img {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.6);
}

.footer-logo span {
    background: linear-gradient(135deg, #ffffff 0%, #d4d4d8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.2rem;
    font-weight: 400;
}

/* Modern Social Icons */
.footer-socials {
    display: flex;
    gap: 1.2rem;
}

.social-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    color: #fff;
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover i {
    transform: scale(1.15);
}

/* Brand Colors on Hover */
.social-icon.discord:hover { box-shadow: 0 12px 24px rgba(88, 101, 242, 0.3); border-color: rgba(88, 101, 242, 0.5); color: #5865F2;}
.social-icon.instagram:hover { box-shadow: 0 12px 24px rgba(220, 39, 67, 0.3); border-color: rgba(220, 39, 67, 0.5); color: #E1306C; }
.social-icon.twitter:hover { box-shadow: 0 12px 24px rgba(29, 161, 242, 0.3); border-color: rgba(29, 161, 242, 0.5); color: #1DA1F2; }
.social-icon.youtube:hover { box-shadow: 0 12px 24px rgba(255, 0, 0, 0.3); border-color: rgba(255, 0, 0, 0.5); color: #FF0000; }

/* Footer Links Grid */
.footer-links-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    min-width: 130px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    letter-spacing: 0.5px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #ff4655, #ff7a85);
    border-radius: 4px;
    transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-col:hover h4::after {
    width: 60%;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
}

/* Glowing Dot Hover Indicator */
.footer-col a::before {
    content: '';
    position: absolute;
    left: -15px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff4655;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 10px rgba(255, 70, 85, 0.6);
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(15px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.footer-col a:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 2;
    padding-top: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-copy {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Suggestion Column */
.suggestion-col {
    min-width: 250px;
    max-width: 320px;
}

.suggestion-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.footer-discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #5865F2; /* Discord brand color */
    color: #fff !important;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Remove default footer link hover effects for this specific button */
.footer-col a.footer-discord-btn::before {
    display: none;
}

.footer-col a.footer-discord-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5);
    background: #4752C4;
    text-shadow: none;
}

.footer-discord-btn i {
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .footer {
        padding: 3.5rem 2.5rem 2rem 2.5rem;
    }
    .footer-top {
        flex-direction: column;
        gap: 3.5rem;
    }
    .footer-links-grid {
        width: 100%;
        justify-content: flex-start;
        gap: 3.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        width: 100%;
        max-width: 100%;
        margin: 2rem 0 0 0;
        padding: 2.5rem 1.5rem 1.5rem 1.5rem;
        border-radius: 32px 32px 0 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        background: linear-gradient(180deg, rgba(22, 22, 28, 0.8), rgba(12, 12, 15, 0.98));
    }
    
    .footer-top {
        align-items: center;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-width: 100%;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 0.8rem;
    }

    .footer-logo img {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }

    .footer-logo span {
        font-size: 1.5rem;
    }

    .footer-desc {
        font-size: 0.9rem;
        max-width: 300px;
        margin: 0 auto 1.5rem auto;
    }

    .footer-socials {
        justify-content: center;
        gap: 0.8rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        border-radius: 12px;
    }

    .footer-links-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1rem;
        width: 100%;
    }

    .footer-col {
        align-items: center;
        text-align: center;
        gap: 0.75rem;
        min-width: 0;
    }

    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
        width: 16px;
    }

    .footer-col:hover h4::after {
        width: 32px;
    }

    .footer-col a {
        font-size: 0.85rem;
        padding: 0.2rem 0;
    }

    .footer-col a::before {
        display: none;
    }

    .footer-col a:hover {
        transform: translateY(-2px);
    }

    /* Yasal Sütununu Ortala */
    .footer-col:nth-child(3) {
        grid-column: 1 / -1;
        margin-top: 0.5rem;
    }

    .suggestion-col {
        grid-column: 1 / -1;
        background: rgba(255, 255, 255, 0.02);
        padding: 1.5rem 1rem;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        margin: 2rem auto 0 auto;
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .suggestion-desc {
        font-size: 0.85rem;
        max-width: 280px;
        margin: 0 auto 1.2rem auto;
        color: rgba(255, 255, 255, 0.5);
    }

    .footer-discord-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .footer-copy {
        font-size: 0.8rem;
    }
}
