/* =========================================================
   MYTHRA CRAFT — MONOLITH FOOTER
   Tek blok / kompakt / performanslı
   ========================================================= */

#mythra-footer {
    --mf-pink: #ff0099;
    --mf-hot-pink: #fc036b;
    --mf-purple: #922bff;
    --mf-violet: #6303ff;
    --mf-surface: #130a13;
    --mf-surface-deep: #09080b;

    position: relative;
    z-index: 20;
    padding: 30px 0 18px;
    color: #fff;

    background:
        linear-gradient(
            180deg,
            #160711 0%,
            #0d070d 100%
        );

    border-top: 1px solid rgba(255, 0, 153, 0.18);
    isolation: isolate;
    overflow-x: clip;
}

/* =========================================================
   FOOTER ÜST ÇİZGİ — UZUN, SMOOTH VE KESİNTİSİZ
   ========================================================= */

/* Sabit ve ince ana bağlantı çizgisi */
#mythra-footer::before {
    content: "";
    position: absolute;
    z-index: 3;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    pointer-events: none;

    background: linear-gradient(
        90deg,
        rgba(255, 0, 153, 0.08),
        rgba(146, 43, 255, 0.38),
        rgba(255, 0, 153, 0.48),
        rgba(146, 43, 255, 0.38),
        rgba(255, 0, 153, 0.08)
    );
}

/* Soldan sağa akan uzun ışık. Başlangıç ve bitişte tamamen ekran
   dışında kaldığı için döngü başa sararken görünür kesinti oluşmaz. */
#mythra-footer::after {
    content: "";
    position: absolute;
    z-index: 4;
    top: -2px;
    right: 100%;
    left: auto;

    width: 86vw;
    min-width: 520px;
    max-width: 1120px;
    height: 3px;

    pointer-events: none;
    border-radius: 999px;

    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(146, 43, 255, 0.04) 5%,
        rgba(146, 43, 255, 0.24) 18%,
        rgba(255, 0, 153, 0.62) 35%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 0, 153, 0.64) 65%,
        rgba(146, 43, 255, 0.24) 82%,
        rgba(146, 43, 255, 0.04) 95%,
        transparent 100%
    );

    box-shadow:
        0 0 4px rgba(255, 255, 255, 0.74),
        0 0 10px rgba(255, 0, 153, 0.60),
        0 0 20px rgba(255, 0, 153, 0.34),
        0 0 32px rgba(146, 43, 255, 0.18);

    transform: translate3d(0, 0, 0);
    will-change: transform;
    animation: mythraFooterTopSignal 6.2s linear infinite;
}

@keyframes mythraFooterTopSignal {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(calc(100vw + 100%), 0, 0);
    }
}
/* =========================================================
   TEK FOOTER BLOĞU
   ========================================================= */

#mythra-footer .mythra-footer-shell {
    position: relative;
    overflow: visible;
    isolation: isolate;

    border: 1px solid rgba(255, 0, 153, 0.24);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(28, 12, 26, 0.97) 0%,
            rgba(16, 10, 17, 0.985) 47%,
            rgba(8, 8, 11, 0.99) 100%
        );

    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.055),
        inset 0 -4px 0 rgba(0, 0, 0, 0.30),
        0 16px 34px rgba(0, 0, 0, 0.24);
}

/* Dekorasyonu panel sınırında tutan katman */
#mythra-footer .mythra-footer-shards {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
    pointer-events: none;
}

/*
 * Daire yerine çapraz dijital çizgiler.
 * Büyük alanda blur veya filter kullanılmaz.
 */
#mythra-footer .mythra-footer-shards::before {
    content: "";
    position: absolute;
    inset: -90px;

    opacity: 0.19;

    background-image:
        linear-gradient(
            135deg,
            transparent 0 46%,
            rgba(255, 0, 153, 0.20) 47% 48%,
            transparent 49% 100%
        ),
        linear-gradient(
            45deg,
            transparent 0 47%,
            rgba(146, 43, 255, 0.13) 48% 49%,
            transparent 50% 100%
        );

    background-size:
        76px 54px,
        112px 83px;

    transform: translate3d(0, 0, 0);
    will-change: transform;
    animation: mythraFooterShardFall 18s linear infinite;
}

@keyframes mythraFooterShardFall {
    from {
        transform: translate3d(-34px, -54px, 0);
    }

    to {
        transform: translate3d(42px, 54px, 0);
    }
}

/* Sağ alttaki transparan açılı kristal */
#mythra-footer .mythra-footer-shards::after {
    content: "";
    position: absolute;
    right: -76px;
    bottom: -98px;

    width: 250px;
    height: 210px;

    opacity: 0.23;
    clip-path: polygon(
        50% 0%,
        100% 28%,
        82% 100%,
        18% 100%,
        0% 28%
    );

    border: 1px solid rgba(255, 0, 153, 0.24);

    background:
        linear-gradient(
            135deg,
            rgba(255, 0, 153, 0.055),
            transparent 47%,
            rgba(146, 43, 255, 0.035)
        );

    transform: rotate(-12deg);
    will-change: transform;
    animation: mythraFooterCrystalMove 16s linear infinite;
}

@keyframes mythraFooterCrystalMove {
    from {
        transform: rotate(-12deg) translate3d(0, 0, 0);
    }

    50% {
        transform: rotate(4deg) translate3d(-12px, -9px, 0);
    }

    to {
        transform: rotate(-12deg) translate3d(0, 0, 0);
    }
}

/* =========================================================
   ANA YERLEŞİM
   ========================================================= */

#mythra-footer .mythra-footer-main {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 0.92fr)
        160px
        minmax(0, 1.62fr);

    grid-template-areas:
        "about logo navigation";

    align-items: center;
    gap: 22px;

    padding: 25px 27px 22px;
}

/* =========================================================
   HAKKIMIZDA
   ========================================================= */

#mythra-footer .mythra-footer-about-zone {
    grid-area: about;
    min-width: 0;
}

#mythra-footer .mythra-footer-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 5px;

    color: #ff5cb5;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.17em;
}

#mythra-footer .mythra-footer-kicker i {
    color: var(--mf-purple);
}

#mythra-footer .mythra-footer-about-title {
    margin: 0;

    color: #fff;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
}

#mythra-footer .mythra-footer-about-text {
    max-width: 420px;
    margin-top: 9px;

    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
    font-weight: 550;
    line-height: 1.58;
}

/* =========================================================
   ORTA LOGO ÇEKİRDEĞİ
   ========================================================= */

#mythra-footer .mythra-footer-core {
    grid-area: logo;

    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    width: 160px;
    height: 178px;

    isolation: isolate;
}

/* Kare/diamond hareketli çerçeveler */
#mythra-footer .mythra-footer-core-diamond {
    position: absolute;
    z-index: -1;

    top: 50%;
    left: 50%;

    pointer-events: none;

    border: 1px solid rgba(255, 0, 153, 0.18);
    transform: translate(-50%, -50%) rotate(45deg);
}

#mythra-footer .mythra-footer-core-diamond--outer {
    width: 118px;
    height: 118px;

    animation: mythraFooterDiamondOuter 18s linear infinite;
}

#mythra-footer .mythra-footer-core-diamond--inner {
    width: 84px;
    height: 84px;

    border-color: rgba(146, 43, 255, 0.19);
    animation: mythraFooterDiamondInner 13s linear infinite reverse;
}

@keyframes mythraFooterDiamondOuter {
    from {
        transform:
            translate(-50%, -50%)
            rotate(45deg)
            scale(1);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(405deg)
            scale(1);
    }
}

@keyframes mythraFooterDiamondInner {
    from {
        transform:
            translate(-50%, -50%)
            rotate(45deg)
            scale(0.94);
    }

    50% {
        transform:
            translate(-50%, -50%)
            rotate(225deg)
            scale(1.04);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(405deg)
            scale(0.94);
    }
}

/* Header ejderhasındaki kesintisiz salınıma uyarlanmış logo */
#mythra-footer .mythra-footer-core-logo {
    display: block;

    width: 154px;
    max-width: none;
    height: auto;
    object-fit: contain;

    transform-origin: center;
    will-change: transform;

    filter:
        drop-shadow(0 7px 6px rgba(0, 0, 0, 0.28));

    animation: mythraFooterLogoFlight 7s linear infinite;
}

@keyframes mythraFooterLogoFlight {
    0% {
        transform: translate3d(-5px, 1px, 0) rotate(-1.3deg);
    }

    20% {
        transform: translate3d(-1px, -6px, 0) rotate(-0.3deg);
    }

    40% {
        transform: translate3d(5px, -3px, 0) rotate(1deg);
    }

    60% {
        transform: translate3d(5px, 4px, 0) rotate(1.3deg);
    }

    80% {
        transform: translate3d(-2px, 6px, 0) rotate(-0.4deg);
    }

    100% {
        transform: translate3d(-5px, 1px, 0) rotate(-1.3deg);
    }
}

/* Logonun altındaki hareketli sinyal */
#mythra-footer .mythra-footer-core-signal {
    position: absolute;
    bottom: 15px;
    left: 50%;

    width: 70px;
    height: 2px;

    overflow: hidden;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-50%);
}

#mythra-footer .mythra-footer-core-signal::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            #ff0099,
            #922bff,
            transparent
        );

    transform: translateX(-100%);
    animation: mythraFooterCoreSignal 2.8s linear infinite;
}

@keyframes mythraFooterCoreSignal {
    to {
        transform: translateX(100%);
    }
}

/* =========================================================
   MENÜLER
   ========================================================= */

#mythra-footer .mythra-footer-navigation {
    grid-area: navigation;
    min-width: 0;
}

#mythra-footer .mythra-footer-navigation-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

#mythra-footer .mythra-footer-navigation-column {
    position: relative;
    min-width: 0;
}

/* Kolon ayırıcıları */
#mythra-footer .mythra-footer-navigation-column:not(:last-child)::after {
    content: "";
    position: absolute;

    top: 3px;
    right: -7px;

    width: 1px;
    height: calc(100% - 6px);

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(255, 0, 153, 0.16),
            rgba(146, 43, 255, 0.13),
            transparent
        );
}

#mythra-footer .mythra-footer-navigation-title {
    display: flex;
    align-items: center;
    gap: 8px;

    margin: 0 0 8px;

    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* Önceki çizgi yerine açılı küçük kristal */
#mythra-footer .mythra-footer-title-glyph {
    position: relative;
    display: inline-block;

    width: 11px;
    height: 11px;
    flex: 0 0 11px;

    transform: rotate(45deg);

    border:
        1px solid rgba(255, 255, 255, 0.28);

    background:
        linear-gradient(
            135deg,
            #ff0099,
            #922bff
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28);

    animation: mythraFooterGlyphTurn 5s linear infinite;
}

@keyframes mythraFooterGlyphTurn {
    from {
        transform: rotate(45deg);
    }

    to {
        transform: rotate(405deg);
    }
}

#mythra-footer .mythra-footer-navigation-list {
    display: grid;
    gap: 1px;

    margin: 0;
    padding: 0;

    list-style: none;
}

#mythra-footer .mythra-footer-navigation-link {
    position: relative;

    display: flex;
    align-items: flex-start;
    gap: 7px;

    min-height: 28px;
    padding: 6px 25px 6px 8px;

    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    font-weight: 650;
    line-height: 1.36;

    transition:
        color 180ms ease,
        letter-spacing 180ms ease,
        transform 180ms ease;
}

/*
 * Yeni hover:
 * Arka planda klasik kutu/glow yok.
 * Bağlantının iki yanında portal parantezleri oluşur.
 */
#mythra-footer .mythra-footer-navigation-brackets {
    position: absolute;

    inset: 3px 1px;

    pointer-events: none;
    opacity: 0;

    border-left: 2px solid #ff0099;
    border-right: 2px solid #922bff;

    transform: scaleY(0.22);

    transition:
        opacity 180ms ease,
        transform 220ms cubic-bezier(.2, .8, .2, 1);
}

/* Alttan çıkan enerji çizgisi */
#mythra-footer .mythra-footer-navigation-link::after {
    content: "";
    position: absolute;

    left: 31px;
    bottom: 2px;

    width: 0;
    height: 1px;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            #ff0099,
            #922bff,
            transparent
        );

    transition: width 240ms ease;
}

#mythra-footer .mythra-footer-navigation-icon {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 17px;
    height: 17px;
    flex: 0 0 17px;

    color: rgba(255, 255, 255, 0.34);

    transition:
        color 180ms ease,
        transform 220ms ease;
}

#mythra-footer .mythra-footer-navigation-text {
    min-width: 0;
}

#mythra-footer .mythra-footer-navigation-arrow {
    position: absolute;

    top: 50%;
    right: 8px;

    color: #ff4db1;
    font-size: 8px;

    opacity: 0;
    transform: translate3d(-5px, -50%, 0);

    transition:
        opacity 180ms ease,
        transform 180ms ease;
}

#mythra-footer .mythra-footer-navigation-link:hover {
    color: #fff;
    letter-spacing: 0.012em;
    transform: translate3d(3px, 0, 0);
}

#mythra-footer .mythra-footer-navigation-link:hover
.mythra-footer-navigation-brackets {
    opacity: 1;
    transform: scaleY(1);
}

#mythra-footer .mythra-footer-navigation-link:hover::after {
    width: calc(100% - 48px);
}

#mythra-footer .mythra-footer-navigation-link:hover
.mythra-footer-navigation-icon {
    color: #ff4db1;
    transform: rotate(-8deg) scale(1.12);
}

#mythra-footer .mythra-footer-navigation-link:hover
.mythra-footer-navigation-arrow {
    opacity: 1;
    transform: translate3d(0, -50%, 0);
}

/* =========================================================
   TEK BLOK İÇİNDE ALT BAR
   ========================================================= */

#mythra-footer .mythra-footer-bottom {
    position: relative;
    z-index: 5;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;

    min-height: 56px;
    padding: 11px 18px;

    border-top:
        1px solid rgba(255, 0, 153, 0.14);

    background:
        linear-gradient(
            90deg,
            rgba(255, 0, 153, 0.022),
            transparent 35%,
            rgba(146, 43, 255, 0.025)
        );
}

#mythra-footer .mythra-footer-copyright {
    color: rgba(255, 255, 255, 0.56);
    font-size: 11px;
    line-height: 1.45;
}

#mythra-footer .mythra-footer-server-name {
    color: #fff;
    font-weight: 900;
}

#mythra-footer .mythra-footer-rights {
    margin-left: 3px;
}

#mythra-footer .mythra-footer-powered {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.34);
    font-size: 9px;
}

/* =========================================================
   DİL / PARA SEÇİMİ
   ========================================================= */

#mythra-footer .mythra-footer-selectors {
    display: flex;
    align-items: center;
    gap: 9px;
}

#mythra-footer .mythra-footer-selector {
    position: relative;
    z-index: 80;
}

#mythra-footer .mythra-footer-selector-button {
    display: flex;
    align-items: center;
    gap: 8px;

    min-height: 38px;
    padding: 5px 12px 5px 6px;

    border:
        1px solid rgba(255, 0, 153, 0.26);

    border-radius: 12px;

    color: rgba(255, 255, 255, 0.82);
    background:
        linear-gradient(
            180deg,
            rgba(32, 20, 31, 0.98),
            rgba(11, 10, 13, 0.99)
        );

    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.055),
        inset 0 -3px 0 rgba(0, 0, 0, 0.30);

    font-size: 11px;
    font-weight: 750;

    cursor: pointer;

    transition:
        color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

#mythra-footer .mythra-footer-selector-button:hover {
    color: #fff;
    border-color: rgba(255, 0, 153, 0.60);
    transform: translate3d(0, -2px, 0);
}

#mythra-footer .mythra-footer-selector-icon {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 27px;
    height: 27px;

    border-radius: 9px;

    color: #fff;
    background:
        linear-gradient(
            135deg,
            #ff0099,
            #922bff
        );

    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.23),
        inset 0 -3px 0 rgba(38, 0, 74, 0.34);
}

#mythra-footer .mythra-footer-selector-chevron {
    color: #ff54b4;
    font-size: 8px;
    transition: transform 180ms ease;
}

#mythra-footer .mythra-footer-selector-chevron.is-open {
    transform: rotate(180deg);
}

#mythra-footer .mythra-footer-selector-menu {
    position: absolute;

    right: 0;
    bottom: calc(100% + 10px);

    width: 220px;
    padding: 7px;

    overflow: hidden;

    border:
        1px solid rgba(255, 0, 153, 0.28);

    border-radius: 15px;

    background:
        linear-gradient(
            155deg,
            rgba(28, 13, 27, 0.995),
            rgba(7, 7, 10, 0.998)
        );

    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.05),
        0 18px 38px rgba(0, 0, 0, 0.52);

    transform-origin: bottom right;
}

#mythra-footer .mythra-footer-selector-scroll {
    max-height: 300px;
    overflow-y: auto;
    overscroll-behavior: contain;

    scrollbar-width: thin;
    scrollbar-color:
        rgba(255, 0, 153, 0.48)
        rgba(255, 255, 255, 0.03);
}

#mythra-footer .mythra-footer-selector-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;

    min-height: 35px;
    padding: 8px 10px;

    border-radius: 9px;

    color: rgba(255, 255, 255, 0.63);
    font-size: 11px;
    font-weight: 650;

    transition:
        color 150ms ease,
        padding-left 150ms ease,
        background-color 150ms ease;
}

#mythra-footer .mythra-footer-selector-option:hover {
    color: #fff;
    padding-left: 14px;

    background:
        linear-gradient(
            90deg,
            rgba(255, 0, 153, 0.16),
            rgba(146, 43, 255, 0.07)
        );
}

#mythra-footer .mythra-footer-selector-option.active {
    color: #fff;

    background:
        linear-gradient(
            90deg,
            rgba(255, 0, 153, 0.23),
            rgba(146, 43, 255, 0.10)
        );
}

#mythra-footer .mythra-footer-selector-option.active i {
    color: #ff4dac;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 768px) and (max-width: 1100px) {
    #mythra-footer .mythra-footer-main {
        grid-template-columns: 150px minmax(0, 1fr);
        grid-template-areas:
            "logo about"
            "navigation navigation";

        align-items: center;
        gap: 17px 22px;

        padding: 22px;
    }

    #mythra-footer .mythra-footer-core {
        width: 150px;
        height: 148px;
    }

    #mythra-footer .mythra-footer-core-logo {
        width: 142px;
    }

    #mythra-footer .mythra-footer-navigation {
        padding-top: 4px;
    }

    #mythra-footer .mythra-footer-navigation-grid {
        gap: 22px;
    }
}

/* =========================================================
   MOBİL
   ========================================================= */

@media (max-width: 767px) {
    #mythra-footer {
        padding: 24px 0 14px;
    }

    #mythra-footer .mythra-footer-shell {
        border-radius: 19px;
    }

    #mythra-footer .mythra-footer-main {
        grid-template-columns: 1fr;
        grid-template-areas:
            "logo"
            "about"
            "navigation";

        gap: 14px;
        padding: 19px 16px 17px;
    }

    #mythra-footer .mythra-footer-core {
        width: 100%;
        height: 130px;
    }

    #mythra-footer .mythra-footer-core-logo {
        width: 145px;
    }

    #mythra-footer .mythra-footer-core-diamond--outer {
        width: 100px;
        height: 100px;
    }

    #mythra-footer .mythra-footer-core-diamond--inner {
        width: 70px;
        height: 70px;
    }

    #mythra-footer .mythra-footer-core-signal {
        bottom: 2px;
    }

    #mythra-footer .mythra-footer-about-zone {
        text-align: center;
    }

    #mythra-footer .mythra-footer-kicker {
        justify-content: center;
    }

    #mythra-footer .mythra-footer-about-text {
        margin-left: auto;
        margin-right: auto;
        font-size: 11px;
        line-height: 1.55;
    }

    #mythra-footer .mythra-footer-icon-links {
        justify-content: center;
    }

    #mythra-footer .mythra-footer-navigation {
        padding-top: 5px;
    }

    #mythra-footer .mythra-footer-navigation-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    #mythra-footer
    .mythra-footer-navigation-column:not(:last-child)::after {
        top: auto;
        right: 0;
        bottom: -9px;

        width: 100%;
        height: 1px;

        background:
            linear-gradient(
                90deg,
                transparent,
                rgba(255, 0, 153, 0.17),
                rgba(146, 43, 255, 0.13),
                transparent
            );
    }

    #mythra-footer .mythra-footer-navigation-title {
        justify-content: center;
        margin-bottom: 6px;
    }

    #mythra-footer .mythra-footer-navigation-link {
        min-height: 34px;
        padding: 8px 27px 8px 10px;
        font-size: 11px;
    }

    #mythra-footer .mythra-footer-bottom {
        flex-direction: column;
        gap: 12px;

        min-height: 0;
        padding: 14px 13px;

        text-align: center;
    }

    #mythra-footer .mythra-footer-selectors {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    #mythra-footer .mythra-footer-selector-menu {
        left: 50%;
        right: auto;

        width: min(220px, calc(100vw - 40px));

        translate: -50% 0;
        transform-origin: bottom center;
    }
}

@media (max-width: 390px) {
    #mythra-footer .mythra-footer-selectors {
        flex-direction: column;
    }

    #mythra-footer .mythra-footer-selector,
    #mythra-footer .mythra-footer-selector-button {
        width: 100%;
    }

    #mythra-footer .mythra-footer-selector-button {
        justify-content: center;
    }
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
    #mythra-footer::after,
    #mythra-footer .mythra-footer-shards::before,
    #mythra-footer .mythra-footer-shards::after,
    #mythra-footer .mythra-footer-core-logo,
    #mythra-footer .mythra-footer-core-diamond,
    #mythra-footer .mythra-footer-core-signal::after,
    #mythra-footer .mythra-footer-title-glyph,
    #mythra-footer .mythra-footer-icon-links a::after {
        animation: none !important;
    }

    #mythra-footer *,
    #mythra-footer *::before,
    #mythra-footer *::after {
        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   RESPONSIVE V2 — FOOTER GENİŞLİK GÜVENLİĞİ
   ========================================================= */
@media (max-width: 1279px) {
    #mythra-footer,
    #mythra-footer .mythra-footer-shell,
    #mythra-footer .mythra-footer-main,
    #mythra-footer .mythra-footer-bottom {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    #mythra-footer .mythra-footer-shell {
        width: min(1120px, calc(100% - 36px)) !important;
        margin-inline: auto !important;
    }
}

@media (max-width: 767px) {
    #mythra-footer .mythra-footer-shell {
        width: min(100% - 24px, 460px) !important;
    }

    #mythra-footer .mythra-footer-navigation-link {
        overflow-wrap: anywhere !important;
    }
}
/* =========================================================
   FOOTER SOSYAL BUTONLARI — KARE ÖLÇÜ DÜZELTMESİ
   Ana sayfanın animasyon ve görünümü korunur.
   Yalnızca footer ölçüsü küçültülür.
   ========================================================= */

.mythra-footer-icon-links {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    grid-column: auto !important;

    width: max-content !important;
    max-width: 100% !important;
    gap: 9px !important;
}

.mythra-footer-icon-links > a {
    width: 46px !important;
    min-width: 46px !important;
    max-width: 46px !important;

    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;

    flex: 0 0 46px !important;
    padding: 0 !important;
    gap: 0 !important;
}

.mythra-footer-icon-links > a i {
    margin: 0 !important;
    font-size: 16px !important;
    line-height: 1 !important;
}

/* Yanlışlıkla yazı kalmışsa butonu genişletmesin */
.mythra-footer-icon-links > a > span {
    display: none !important;
}
#mythra-footer .mythra-footer-icon-links {
    transform: translateY(8px);
}
/* =========================================================
   FOOTER ÜST ANİMASYONU — TEMİZ, GLOWSUZ TEK ÇİZGİ
   ========================================================= */

#mythra-footer {
    border-top: 0 !important;
    box-shadow: none !important;
}

/* Arkadaki ikinci sabit çizgiyi tamamen kaldır */
#mythra-footer::before {
    content: none !important;
    display: none !important;
}

/* Yalnızca hareketli, temiz renkli çizgi */
#mythra-footer::after {
    height: 2px !important;

    border: 0 !important;
    outline: 0 !important;
    filter: none !important;
    box-shadow: none !important;

    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(146, 43, 255, 0.08) 12%,
        rgba(146, 43, 255, 0.48) 31%,
        #ff0099 50%,
        rgba(146, 43, 255, 0.48) 69%,
        rgba(146, 43, 255, 0.08) 88%,
        transparent 100%
    ) !important;
}
