/* components/footer/footer.css */

@keyframes payment-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-payment-scroll {
    display: flex;
    align-items: center;
    gap: 0; 
    width: max-content;
    animation: payment-scroll 80s linear infinite; 
    will-change: transform;
    /* 🔥 GÜNCEL PADDING: Üstten kıstım, alttan hover payı bıraktım */
    padding: 5px 0 15px 0; 
}

.animate-payment-scroll:hover {
    animation-play-state: paused;
}

.payment-logo-rounded {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: contain;
    padding: 10px; 
    background: transparent;
    border: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: grayscale(0%) opacity(0.85); 
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.payment-logo-rounded:hover {
    background: transparent;
    border: none;
    filter: opacity(1) brightness(1.2) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    transform: scale(1.25);
    z-index: 10;
}

.payment-slider-mask {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

#footer-slogan { letter-spacing: 0.5px; }

footer a.aff-link { position: relative; text-decoration: none; }
footer a.aff-link::after {
    content: ''; position: absolute; width: 0; height: 1px; bottom: -2px; left: 0;
    background-color: #00ff87; transition: width 0.3s ease;
}
footer a.aff-link:hover::after { width: 100%; }

/* SOCIAL ICONS */
.social-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #161616;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.social-icon-box img {
    width: 18px;
    height: 18px;
    filter: brightness(0.7);
    transition: all 0.3s ease;
}

.social-icon-box:hover {
    background-color: #00ff87;
    border-color: #00ff87;
    transform: translateY(-2px);
}

.social-icon-box:hover img {
    filter: brightness(0);
}

/* SEO SCROLL BOX */
.seo-scroll-box {
    max-height: 158px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.18) transparent;
}

.seo-scroll-box::-webkit-scrollbar {
    width: 6px;
}

.seo-scroll-box::-webkit-scrollbar-track {
    background: transparent;
}

.seo-scroll-box::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.18);
    border-radius: 999px;
}

.seo-scroll-box::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.28);
}

/* ---- Footer SEO bloğu (10bet tarzı: kapalı başlar, Read More ile açılır) ---- */
.ft-seo-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #d1d5db;
    margin-bottom: 14px;
}

.ft-seo-body {
    position: relative;
    max-height: 240px;
    overflow: hidden;
}

.ft-seo-body::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(5, 6, 8, 0), #050608 85%);
    pointer-events: none;
}

.ft-seo.expanded .ft-seo-body {
    max-height: none;
}

.ft-seo.expanded .ft-seo-body::after {
    display: none;
}

.ft-seo-body p {
    font-size: 11.5px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 12px;
    max-width: 940px;
}

.ft-seo-body a {
    color: #00ff87;
    text-decoration: none;
}

.ft-seo-body a:hover {
    text-decoration: underline;
}

.ft-seo-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 20px 0 8px;
}

.ft-seo-list-title {
    color: #9ca3af !important;
    font-weight: 600;
    margin-bottom: 6px !important;
}

.ft-seo-list {
    list-style: disc;
    padding-left: 18px;
    margin: 0 0 14px;
}

.ft-seo-list li {
    font-size: 11.5px;
    color: #6b7280;
    line-height: 1.85;
}

.ft-seo-toggle {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #00ff87;
    background: none;
    border: 1px solid rgba(0, 255, 135, 0.25);
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.ft-seo-toggle:hover {
    background: rgba(0, 255, 135, 0.08);
    border-color: rgba(0, 255, 135, 0.5);
}

.ft-seo-toggle iconify-icon {
    transition: transform 0.25s ease;
}

.ft-seo.expanded .ft-seo-toggle iconify-icon {
    transform: rotate(180deg);
}