:root {
    --bg: #001e40;
    --panel: #ffffff;
    --text: #ffffff;
    --text2: #000000;
    --muted: #9aa0a6;
    --accent: #ffffff;
    --card: #025bbf;
    --card-hover: #4caf50;
    --chip: #6f3c2a;
    --chip-text: #ffffff;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    background: #001e40;
    color: var(--text);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
    overflow: hidden;
}


@media(max-width:560px) {
    body {
        background: #03101d;
    }
}



::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #72b4ff;
}

::-webkit-scrollbar-thumb {
    background: #025bbf;
}

::-webkit-scrollbar-thumb:hover {
    background: #3e8fea;
}

::-webkit-scrollbar-thumb:active {
    background: #a5cfff;
}


.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(8px);
    background: #040f1ca6;
    border-bottom: 1px solid #a4e3a7;
}

.container {
    max-width: 98%;
    padding: 18px 16px;
    margin: 0% 0% 0% 1%;
}

.headline {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px
}

.headline i {
    font-size: 28px;
    color: var(--accent);
}


#introSimple span {
    margin: 0px 0px 0px 1px;
    border-left: 2px solid;
    padding: 0px 0px 0px 13px;
}

.headline h1 {
    margin: 0px 0px 0px 3px;
    font-size: 20px;
    font-weight: 700;
    border-left: 2px solid;
    padding: 0px 0px 0px 13px;
}

.actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    position: relative
}

.button {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    border: 1px solid #35c33b;
    background: #4caf50;
    color: #ffffff;
    padding: 10px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.4s;
    animation: none;
}

.button:hover {
    background: #247427;
    animation: fa-bounce 1s;
}

.filters {
    display: grid;
    grid-template-columns: 1fr 120px 120px;
    gap: 10px;
    align-items: center;
    margin-top: 10px
}

@media(max-width:900px) {
    .filters {
        grid-template-columns: 1fr 0.4fr 0.4fr;
    }
}

.input,
.select {
    background: var(--panel);
    border: 1px solid #232334;
    color: var(--text2);
    padding: 12px;
    border-radius: 4px;
    width: 100%;
}

.input:focus,
select:focus {
    outline: 2px #025bbf solid;
    outline-offset: -2px;
}

.input::placeholder {
    color: #7d8399
}

.stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px
}

.chip {
    padding: 3px 9px 5px 8px;
    background: var(--chip);
    color: var(--chip-text);
    border-radius: 4px;
    border: 1px solid #2b2b42;
    font-size: 13px;
    height: 27px;
    text-align: center;
}



.chip2 {
    padding: 3px 6px 3px 5px;
    background: var(--chip);
    color: var(--chip-text);
    border-radius: 4px;
    border: 1px solid #2b2b42;
    font-size: 9px;
    text-align: center;
    display: none;
    right: 66px;
    position: absolute;
}

@media(max-width:560px) {
    .chip2 {
        display: block;
    }
}

.grid {
    margin-top: -2px
}

@media(max-width:1100px) {
    .grid {
        grid-template-columns: repeat(5, 1fr)
    }
}

@media(max-width:900px) {
    .grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media(max-width:720px) {
    .grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:520px) {
    .grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media screen and (max-width: 1755px) {
    .card {
        width: 24.6% !important;
    }
}

@media screen and (max-width: 1455px) {
    .card {
        width: 24.6% !important;
    }
}

@media screen and (max-width: 1175px) {
    .card {
        width: 32.9% !important;
    }
}

@media screen and (max-width: 890px) {
    .card {
        width: 49.6% !important;
    }
}

@media screen and (max-width: 605px) {
    .card {
        width: 100% !important;
    }
}

.card {
    background: var(--card);
    border: 1px solid #222231;
    border-radius: 4px;
    padding: 12px;
    cursor: pointer;
    position: relative;
    min-height: 145px;
    transition: .15s;
    overflow: visible;
    width: 16.2%;
    float: left;
    margin: 0.2% 0.2% 0.2% 0.2%;
    transition: 0.4s;
    /*animation: none;*/
}

.card:hover {
    /*animation: fa-beat 1s;*/
    background: var(--card-hover);
    transform: translateY(-4px);
    z-index: 49;
    /* scale: 0.97;; */
}

.ico {
    display: grid;
    place-items: center;
    height: 130px;
    margin-bottom: -30px;
    font-size: 40px;
    padding: 0px 0px 0px 0px;
}

.name {
    font-size: 12.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: -32px 0px 0px 0px;
}

.meta {
    position: relative;
    right: 1px;
    bottom: -4px;
    display: flex;
    gap: 6px;
    z-index: 3;
    width: fit-content;
}

.metaEx {
    background: #4a99f100 !important;
    border: 1px solid #ffffff4a !important;
    color: #ffffff !important;
    transition: 0.4s;
}

.metaEx:hover {
    background: #0000003d !important;
}

.tag {
    font-size: 11px;
    padding: 4px 8px;
    background: #1f1f2e;
    border: 1px solid #2b2b42;
    color: #c8cbe0;
    border-radius: 4px;
    top: -41px;
    position: relative;
    left: -1px;
}

.copybar {
    position: absolute;
    right: 10px;
    top: 8px;
    display: flex;
    gap: 6px;
    z-index: 3
}

.btn {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 6px 8px;
    border-radius: 4px;
    border: 1px solid #2a2a3c;
    background: #1a1a26;
    color: #d7dbf3;
    font-size: 11.5px;
    flex: 1;
    text-align: center;
    border: 1px solid #2a2a3c;
    background: #1a1a26;
    color: #d7dbf3;
    padding: 6px 6px 5px 7px;
    border-radius: 4px;
    /* font-size: 12px; */
    cursor: pointer;
    transition: 0.4s;
    animation: none;
}

.btn:hover {
    background: #354364;
    animation: fa-bounce 1s;
}

.btn.palette {
    padding: 6px 8px
}

.pager {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 18px 0 28px;
    clear: both;
    position: relative;
    top: 24px;
}

.pbtn {
    padding: 3px 12px 3px 12px;
    border-radius: 4px;
    border: 1px solid #2a2a3c;
    background: #1a1a26;
    color: #d7dbf3;
    cursor: pointer;
    transition: 0.4s;
    height: 27px;
    font-size: 12px;
}

.pbtn:hover {
    background: #2a2a32;
}

.pbtn[disabled] {
    opacity: .45
}

.toast {
    position: fixed;
    left: 50%;
    top: 26px;
    transform: translateX(-50%);
    background: #4caf50;
    color: #dff7da;
    border: 1px solid #35c33b;
    padding: 9px 27px 10px 27px;
    border-radius: 4px;
    font-size: 13px;
    display: none;
    z-index: 9999999;
}

/* ERROR TOAST (kırmızı) */
.toast.error {
    background: #c62828;
    color: #fdecea;
    border-color: #a81f1f;
    animation: toastBlink 0.6s ease-in-out 2;
}

@keyframes toastBlink {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(198, 40, 40, .0);
        transform: translateX(-50%) scale(1);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(198, 40, 40, .25);
        transform: translateX(-50%) scale(1.02);
    }
}


/* === Palet Popover (kartlar) === */

#integrPop {
    /* right: -110px !important; */
    width: auto;
}

/* top: 152px;width: 100%; */

.palette-pop {
    position: absolute;
    top: 36px;
    right: 0px;
    background: #12121a;
    border: 1px solid #2b2b42;
    border-radius: 4px;
    padding: 10px;
    display: none;
    z-index: 6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
    width: 196px;
}

.palette-pop.show {
    display: block
}

.palette-row {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px
}

.palette-row:last-child {
    margin-bottom: 0
}

.color-box {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    border: 1px solid #2a2a3c
}

.hex-input {
    flex: 1;
    min-width: 0;
    background: #0f0f18;
    border: 1px solid #2a2a3c;
    color: #eaeaf1;
    border-radius: 4px;
    padding: 8px 10px;
    font-size: 12px
}

.mini-swatches {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 4px
}

.sw {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid #2a2a3c;
    cursor: pointer
}

.note {
    font-size: 11px;
    color: #9aa0a6
}

/* === Global Palet === */
.global-wrap {
    position: relative
}

.global-pop {
    position: absolute;
    top: 46px;
    background: #12121a;
    border: 1px solid #2b2b42;
    border-radius: 4px;
    padding: 10px;
    width: 240px;
    display: none;
    z-index: 60;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5)
}

.global-pop.show {
    display: block
}

#integrPop .g-row {
    display: block;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px
}

.g-row {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px
}

.g-row:last-child {
    margin-bottom: 0
}

.g-hex {
    flex: 1;
    background: #0f0f18;
    border: 1px solid #2a2a3c;
    color: #eaeaf1;
    border-radius: 4px;
    padding: 8px 10px;
    font-size: 12px
}

.g-box {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    border: 1px solid #2a2a3c
}

.g-actions {
    display: flex;
    gap: 8px
}

.g-btn {
    flex: 1;
    text-align: center;
    border: 1px solid #2a2a3c;
    background: #1a1a26;
    color: #d7dbf3;
    padding: 8px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.4s;
}

.g-btn:hover {
    background: #2b354c
}

.picker-wrap {
    position: relative
}

.picker-wrap input[type="color"] {
    width: 100%;
    height: 36px;
    border: none;
    background: transparent;
    border-radius: 4px
}

.picker-wrap .hint {
    position: absolute;
    left: 10px;
    top: 8px;
    font-size: 11px;
    color: #9aa0a6;
    pointer-events: none;
    user-select: none
}

.picker-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: -webkit-fill-available;
    border-radius: 4px !important;
}

.picker-group input[type="color"] {
    width: 102.5%;
    height: 36px;
    border: none;
    background: transparent;
    border-radius: 4px;
    margin: -24px 0px -4px -1.4%;
    padding: 0px 0px 0px 0px;
    z-index: 1;
    cursor: pointer;
    border-radius: 12px !important;
}

.picker-label {
    font-size: 11px;
    color: #fff;
    margin: 6px 0px -6px 8px;
    user-select: none;
    z-index: 2;
    pointer-events: none;
}

.footer {
    margin-top: auto;
    padding: 14px;
    text-align: center;
    font-size: 13px;
    color: #9aa0a6;
    border-top: 1px solid #4caf50;
    /* background: #0c0c12; */
}

.card {
    position: relative;
    display: inline-block;
}

.card .tooltip {
    visibility: hidden;
    opacity: 0;
    width: max-content;
    background-color: #4caf50;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    position: absolute;
    bottom: -26%;
    left: 50%;
    font-weight: 700;
    padding: 5px 8px 6px 8px;
    font-size: 11px;
    transform: translateX(-50%);
    z-index: 5;
    white-space: nowrap;
    transition: opacity 0.15s ease-in-out;
}

.card .tooltip::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -7px;
    border-width: 7px;
    border-style: solid;
    border-color: transparent transparent #4CB050 transparent;
}

.card:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

/* Hover için dimmed kartlar */
.card.dimmed {
    opacity: 1 !important;
    transform: scale(0.96) !important;
    transition: 0.3s ease;
}

/* Seçili kart */
.card.selected {
    transform: scale(1) !important;
    transition: 0.3s ease;
    border: 1px solid #fff;
}

/* Seçim sonrası diğer kartlar */
.card.unselected {
    opacity: 0.3 !important;
    transform: scale(0.76) !important;
    transition: 0.3s ease;
}


/* Aktif buton görünümü */
.btn.palette.active,
.btn.bgpalette.active {
    background-color: #d377b0;
    border: 1px solid #ffa4dc;
}

@media(max-width:560px) {
    .filters {
        grid-template-columns: 1fr
    }

    .global-wrap {
        width: 100%;
    }

    .actions {
        flex-wrap: nowrap;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 4px;
        margin: -1px 0px -7px 0px;
    }

    .button {
        width: 100%;
        font-size: 9px;
        padding: 7px 4px 6px 5px;
    }

    .chip {
        width: 100%;
    }

    #integrPop {
        right: 0px !important;
        width: 140%;
    }

    .toast {
        padding: 10px 9px 10px 9px;
        width: 55%;
        top: 22px;
        text-align: center;
    }

    .pbtn {
        font-size: 9px;
        padding: 1px 12px 3px 12px;
    }

    .stats,
    #style,
    #perPage {
        display: none;
    }

    .global-pop {
        top: 27px;
        width: 270px;
    }

    #globalPalette {
        right: 0;
    }

    .toast.error {
        width: 70% !important;

    }
}

.copy-btn {
    margin: -81px 0px 0px 0px !important;
}



/* === SIMPLE INTRO === */
#introSimple {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    background: #03101d;
    /* sayfanla aynı ton */
    clip-path: circle(120% at 50% 50%);
    /* tüm ekranı kapla */
    transition: clip-path 900ms ease, opacity 300ms ease 700ms;
    pointer-events: none;
}

#introSimple .brand {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #fff;
    font: 700 22px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial;
    opacity: 0;
    transform: translateY(6px);
    animation: brandIn 500ms ease forwards 200ms;
}

#introSimple .brand i {
    font-size: 34px;
    color: #4caf50;
}

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

/* efekt tetiklenince daire küçülür, overlay kaybolur */
#introSimple.hide {
    clip-path: circle(0% at 50% 50%);
    opacity: 0;
}

/* Hareket azalt tercihine saygı */
@media (prefers-reduced-motion: reduce) {
    #introSimple {
        transition: opacity 300ms ease;
        clip-path: none;
    }

    #introSimple.hide {
        opacity: 0;
    }
}





@media(max-width:560px) {
    .footer {
        background: #03142800;
    }

    .grid {
        display: none;
    }

    .topbar .container {
        padding: 18px 16px 28px 16px;
        top: 10px;
        position: relative;
    }

    .pager {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr !important;
    }
}

.search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.search-wrap .input {
    padding-left: 37px;
    /* ikon için boşluk */
    padding-right: 28px;
    /* x için boşluk */
}

.search-icon {
    position: absolute;
    left: 10px;
    color: #7d8399;
    pointer-events: none;
    /* tıklanmasın */
}

.clear-icon {
    position: absolute;
    right: 10px;
    color: #7d8399;
    cursor: pointer;
    display: none;
    /* input boşsa görünmesin */
}

/* 
.fa-beat {
animation: none;
}

.fa-beat:hover {
animation: fa-beat 1s;
}

.fa-beat-fade {
animation: none;
}

.fa-beat-fade:hover {
animation: fa-beat-fade 1s;
}

.fa-bounce {
animation: none;
}

.fa-bounce:hover {
animation: fa-bounce 1s;
}

.fa-fade {
animation: none;
}

.fa-fade:hover {
animation: fa-fade 1s;
}

.fa-flip {
animation: none;
}

.fa-flip:hover {
animation: fa-flip 1s;
}

.fa-shake {
animation: none;
}

.fa-shake:hover {
animation: fa-shake 1s;
}

.fa-spin {
animation: none;
}

.fa-spin:hover {
animation: fa-spin 1s;
}

.fa-spin-pulse {
animation: none;
}

.fa-spin-pulse:hover {
animation: fa-spin-pulse 1s;
} */

/* === efekt PALETİ === */
.anim-pop {
    position: absolute;
    top: -0.5px;
    right: -2px;
    background: #12121a;
    border: 1px solid #2b2b42;
    border-radius: 4px;
    padding: 7px 7px 7px 7px;
    display: none;
    z-index: 999999999999999999;
    width: 260px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

.anim-pop.show {
    display: block;
}

.anim-list {
    display: grid;
    flex-direction: column;
    gap: 3px;
    max-height: 260px;
    overflow: auto;
    grid-template-columns: repeat(1, 1fr 1fr);
}

.anim-opt {
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid #2a2a3c;
    background: #1a1a26;
    color: #d7dbf3;
    padding: 3px 4px 3px 4px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: .2s;
}

.anim-opt:hover {
    background: #2b354c;
}

.anim-opt i {
    width: 22px;
    text-align: center;
    font-size: 11px;
}

/* Popup içindeki örnek ikonlar DAİMA efekt olsun (sayfadaki hover kuralını ez) */
.anim-pop .fa-beat {
    animation: fa-beat 1s infinite;
}

.anim-pop .fa-beat-fade {
    animation: fa-beat-fade 1s infinite;
}

.anim-pop .fa-bounce {
    animation: fa-bounce 1s infinite;
}

.anim-pop .fa-fade {
    animation: fa-fade 2s infinite;
}

.anim-pop .fa-flip {
    animation: fa-flip 1.2s infinite;
}

.anim-pop .fa-shake {
    animation: fa-shake 1s infinite;
}

.anim-pop .fa-spin {
    animation: fa-spin 1.1s infinite;
}

.anim-pop .fa-spin-pulse {
    animation: fa-spin-pulse 1.1s infinite;
}


/* PNG modal */
.modal-back {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .55);
    display: none;
    align-items: center;
    justify-content: center;
}

.modal {
    background: #12121a;
    border: 1px solid #2b2b42;
    border-radius: 8px;
    padding: 12px 12px 19px 12px;
    width: min(560px, 92vw);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .55);
}

.checker-bg {
    background-image: linear-gradient(45deg, #eee 25%, transparent 25%),
        linear-gradient(-45deg, #eee 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #eee 75%),
        linear-gradient(-45deg, transparent 75%, #eee 75%);
    background-size: 16px 16px;
    background-position: 0 0, 0 8px, 8px -8px, -8px 0px;
    background-color: #c9c9c9;
}

#pngClose {
    flex: 0;
    padding: 6px 6px 6px 6px;
}

#svgClose {
    flex: 0;
    padding: 6px 6px 6px 6px;
}

#pngPx {
    max-width: 100px;
    padding: 6px 7px 5px 9px;
    background: #4caf50;
    color: #fff;
}

#svgPx {
    max-width: 100px;
    padding: 6px 7px 5px 9px;
    background: #4caf50;
    color: #fff;
}

#pngDownload {
    width: 100%;
    display: block;
    padding: 10px 12px !important;
    font-size: 12px !important;
}

#pngDownload:hover {
    animation: none;
}

#svgDownload {
    width: 100%;
    display: block;
    padding: 10px 12px !important;
    font-size: 12px !important;
}

#svgDownload:hover {
    animation: none;
}

#pngPxLabel {
    width: auto !important;
}

#svgPxLabel {
    width: auto !important;
}

.modal .actions {
    display: block !important;
}

/* Range track (arka çizgi) */
#pngRange {
    accent-color: #025bbf;
    /* Modern tarayıcılar için en kolay yöntem */
}

/* Range track (arka çizgi) */
#svgRange {
    accent-color: #025bbf;
    /* Modern tarayıcılar için en kolay yöntem */
}


#pngPal {
    z-index: 10000;
}

#popDivBut .btn {
    font-size: 9px !important;
}

.fa-legal-note {
    margin: 8px 0 0;
    padding: 8px 10px;
    font-size: 12px;
    line-height: 1.45;
    color: #9aa0a6;
    background: #1a1b23;
    border: 1px solid #2b2d3c;
    border-radius: 6px;
    gap: 8px;
    align-items: flex-start;
}

.fa-legal-note i {
    font-size: 13px;
    opacity: .9;
    margin-top: 2px;
}

.fa-legal-note strong {
    color: #cfd3dc;
    font-weight: 600;
}

.lang-switch {
    margin-left: auto;
}

.lang-switch select {
    background: #1a1a26;
    color: #d7dbf3;
    border: 1px solid #2a2a3c;
    border-radius: 4px;
    padding: 6px 8px;
    font-size: 12px;
}

.lang-toggle {
    white-space: nowrap;
    font-weight: 600;
}

.lang-toggle .on {
    text-decoration: underline;
}

.lang-toggle {
    margin-left: auto;
    position: absolute;
    right: 0;
    top: -32px;
    font-size: 12px;
    background-color: #ffffff00;
    color: #c9c9c9;
    border: none;
    padding: 0px 0px 0px 0px;
    white-space: nowrap;
    font-weight: 100;
    font-family: arial;
    cursor: pointer;
}

/* 
.ico i {
  height: 100px !important;
  align-content: center;  
} */
#gifPrev {
    image-rendering: auto;
    width: 160px;
    height: 160px;
    aspect-ratio: 1/1;
}

#gifPal {
    z-index: 10000;
}

#gifClose {
    flex: 0;
    padding: 6px 6px 6px 6px;
}

#gifPx {
    max-width: 75% !important;
    padding: 6px 7px 5px 9px;
    background: #4caf50;
    color: #fff;
}

#gifDur {
    max-width: 60% !important;
    padding: 6px 7px 5px 9px;
    background: #4caf50;
    color: #fff;
}

#gifFps {
    max-width: 75% !important;
    padding: 6px 7px 5px 9px;
    background: #4caf50;
    color: #fff;
}

#gifRender {
    width: 50%;
    float: left;
    display: block;
    padding: 10px 12px !important;
    font-size: 12px !important;
    margin: 0% 1% 0% 0% !important;
}

#gifRender:hover {
    animation: none;
}

#gifDownload {
    width: 49%;
    display: block;
    padding: 10px 12px !important;
    font-size: 12px !important;
    margin: 0% 0% 0% 0% !important;
}

#gifDownload:hover {
    animation: none;
}

#gifAnimPop {
    z-index: 10000;
}

.renk1 {
    border: 1px solid #e961b5;
    background: #d377b0;
    transition: 0.4s;
}

.renk1:hover {
    border: 1px solid #e961b5;
    background: #612249;
}

.renk2 {
    border: 1px solid #ffc524;
    background: #ffa502;
    transition: 0.4s;
}

.renk2:hover {
    border: 1px solid #ffc524;
    background: #956408;
}

.renk3 {
    border: 1px solid #07d6d6;
    background: #00b9ba;
    transition: 0.4s;
}

.renk3:hover {
    border: 1px solid #07d6d6;
    background: #046e6e;
}

.renk4 {
    border: 1px solid #35c33b;
    background: #4caf50;
    transition: 0.4s;
}

.renk4:hover {
    border: 1px solid #35c33b;
    background: #07830b;
}

#gifLoadingOverlay {
    position: absolute;
    inset: 0;
    display: none;
    /* başta görünmez */
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 6px;
    z-index: 2000;
}

#gifLoadingOverlay .msg {
    color: #fff;
    font-size: 14px;
    padding: 12px 18px;
    background: #000;
    border-radius: 8px;
    font-weight: 500;
}