/* CARD STYLES */
.xcz {
    display: block;
    background: #fff;
    border-radius: 15px;
    border: 2px solid #8e44ad;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    padding: 15px;
    position: relative;
}

.xcz:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(142, 68, 173, 0.3);
    border-color: #9b59b6;
}

.xcz .art {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.xcz img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    transition: all 0.4s ease;
}

@media (max-width: 600px) {
    .xcz img {
        height: 180px !important;
    }
}

.xcz:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.xcz .pls {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #8e44ad;
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.xcz .lsf {
    padding: 10px 0;
}

.xcz .price {
    font-weight: 700;
    margin-bottom: 8px;
}

.xcz .isg {
    text-decoration: line-through;
    opacity: 0.6;
    margin-right: 8px;
    color: #999;
}

.xcz .cvx {
    color: #8e44ad;
}

.xcz .discount {
    margin-left: 8px;
    color: #d35400;
}

.xcz h6 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #333;
}

.xcz .description {
    font-size: .9rem;
    color: #555;
    margin-bottom: 12px;
}

.xcz .lth {
    background: #8e44ad;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 1px;
}

.xcz .lth:hover {
    background: #9b59b6;
    box-shadow: 0 5px 20px rgba(155, 89, 182, 0.4);
}

/* SIDEBAR STYLING */
.uyz .pgf a:hover {
    color: #8e44ad;
    font-weight: 600;
}

/* PAGINATION */
.yzx #border-yzx li a.active {
    border: 2px solid #8e44ad;
    padding: 6px 14px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.yzx #border-yzx li a.active:hover {
    background: #8e44ad;
    color: #fff;
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.3);
}


.neon-modal {
    position: relative;
    background: rgba(76, 0, 138, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 2px solid #6a11cb;
    overflow: hidden;
}

.neon-left,
.neon-right {
    content: '';
    position: absolute;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #6a11cb, #440084);
    animation: neonSlide 2s linear infinite;
    z-index: 10;
}

.neon-left {
    left: 0;
    border-radius: 5px 0 0 5px;
}

.neon-right {
    right: 0;
    border-radius: 0 5px 5px 0;
}

@keyframes neonSlide {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 0 50px;
    }

    100% {
        background-position: 0 0;
    }
}

.btn-gradient {
    background: linear-gradient(90deg, #6a11cb 0%, #440084 100%);
    border: none;
    color: white;
    font-size: 1.05rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #6a11cb, 0 0 50px #440084;
}

input:focus,
select:focus {
    border-color: #6a11cb !important;
    box-shadow: 0 0 10px #6a11cb, 0 0 20px #440084 inset;
    outline: none;
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #6a11cb;
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

.league-schedule .team-info img {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Mobil için .nowerty sınıfı */
@media (max-width: 768px) {

    /* 768px ve altını mobil kabul ediyoruz */
    .nowerty {
        height: 65px !important;
        width: auto !important;
    }
}

/* --- YENİ ESTETİK STİLLER --- */
.team-selection {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.teams {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 10px 0;
}

.team-item-new {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 15px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.3s;
    background-color: #fcfcfc;
    border: 3px solid transparent;
}

.team-item-new .team-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    transition: transform 0.2s;
}

.team-item-new:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-item-new.selected-team {
    border: 3px solid #8e44ad;
    box-shadow: 0 0 15px rgba(142, 68, 173, 0.7), 0 0 5px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.vote-badge {
    margin-top: 8px;
    padding: 4px 10px;
    background-color: #8e44ad;
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#teamModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow-y: auto;
}

#teamModal>div {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    margin: auto;
    transition: margin-top 0.3s ease-out;
}

/* MOBİL */
@media(max-width:768px) {
    .teams {
        gap: 10px;
        flex-wrap: nowrap;
        justify-content: space-around;
    }

    .team-item-new {
        padding: 5px;
        width: 22%;
        max-width: 80px;
    }

    .team-item-new .team-logo {
        width: 100%;
        height: auto;
        min-width: 50px;
    }

    .vote-badge {
        font-size: 9px;
        padding: 3px 6px;
        margin-top: 5px;
    }
}

@media(max-width:480px) {
    .teams {
        gap: 5px;
    }

    .team-item-new {
        width: 23%;
        padding: 3px;
    }
}

/* Pop animasyonu */
@keyframes neoxPop {
    0% {
        transform: scale(0.85);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Modal */
.neox-modal {
    position: relative;
    background: rgba(15, 15, 15, 0.55);
    border-radius: 18px;
    overflow: hidden;
    padding: 0;
    backdrop-filter: blur(15px) saturate(180%);
    animation: neoxPop .35s ease-out;
    box-shadow:
        0 0 25px rgba(0, 255, 180, 0.2),
        0 0 40px rgba(0, 255, 180, 0.1),
        inset 0 0 25px rgba(0, 0, 0, 0.4);
}

.bhy {
    color: #ececff !important;
}

/* Çerçeve boyunca hareket eden ışık */
.neox-modal::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px;

    background: linear-gradient(90deg,
            transparent,
            rgba(0, 255, 180, 1),
            rgba(0, 150, 255, 1),
            rgba(255, 0, 180, 1),
            transparent);

    background-size: 300% 100%;
    animation: neoxLightMove 4s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    opacity: 0.8;
}

/* Parlama efekti */
.neox-modal::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: radial-gradient(circle, rgba(0, 255, 180, 0.6), transparent 80%);
    filter: blur(40px);
    opacity: 0.25;
    pointer-events: none;
}

/* Işık arabası efekti */
@keyframes neoxLightMove {
    0% {
        background-position: -150% 0;
    }

    100% {
        background-position: 150% 0;
    }
}

/* Header */
.neox-header {
    background: linear-gradient(135deg, rgba(0, 255, 200, 0.25), rgba(255, 0, 200, 0.25));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 22px;
    color: #fff;
    text-shadow: 0 0 6px rgba(0, 255, 200, 0.5);
    position: relative;
}

/* Header parlaması */
.neox-header::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: radial-gradient(circle, rgba(0, 255, 200, 0.7), transparent 75%);
}

/* Yazılar */
.neox-text {
    color: #e8e8e8;
    text-shadow: 0 0 6px rgba(0, 255, 150, 0.15);
}

/* GIF */
.neox-player {
    width: 130px;
    border-radius: 50%;
    padding: 4px;
    background: radial-gradient(circle, rgba(0, 255, 180, 0.35), transparent 70%);
    filter: drop-shadow(0 0 15px rgba(0, 255, 160, 0.55));
    animation: neoxFloat 2.4s ease-in-out infinite;
}

/* Float animasyonu */
@keyframes neoxFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}


/* ERROR MODAL - Benzersiz Kırmızı Tasarım */
.football-modal-error2 {
    background: #1a0d0d;
    border-radius: 18px;
    padding: 10px 0;
    border: 2px solid #ff3b3b;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.45);
}

.football-header-error2 {
    background: #ff3b3b;
    color: #fff;
    border-bottom: 2px solid #d60000;
    border-radius: 16px 16px 0 0;
}

.football-player-error2 {
    width: 120px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.football-text-error2 {
    color: #ffb3b3;
    font-size: 17px;
    font-weight: 600;
}

.clara {
    background-color: #000000a1 !important;
}



#kvkk-box {
    position: fixed;
    bottom: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 480px;
    background: #fafafa;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    z-index: 999999;
    font-family: Arial, sans-serif;
    opacity: 0;
    transition: all .6s ease;
    border: 1px solid #eaeaea;
}

#kvkk-box.show {
    bottom: 25px;
    opacity: 1;
}

#kvkk-box h4 {
    margin: 0 0 6px 0;
    font-size: 16px;
    background: linear-gradient(90deg, #3a0066, #b366ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

#kvkk-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

#kvkk-box a {
    color: #5e00c7;
    font-weight: bold;
    text-decoration: underline;
}

.kvkk-btns {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.kvkk-btns button {
    flex: 1;
    padding: 10px 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s;
}

#kvkk-accept {
    background: linear-gradient(90deg, #4b0082, #c27bff);
    color: white;
}

#kvkk-reject {
    background: #ececec;
    color: #444;
}

#kvkk-accept:hover {
    opacity: .85;
}

#kvkk-reject:hover {
    background: #dcdcdc;
}

/* --- YENİ ESTETİK STİLLER --- */
.team-selection {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.teams {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 10px 0;
}

.asdgwae {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 15px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.3s;
    background-color: #fcfcfc;
    border: 3px solid transparent;
}

.asdgwae .mnohys {
    width: 90px;
    height: 90px;
    object-fit: contain;
    transition: transform 0.2s;
}

.asdgwae:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.asdgwae.selected-team {
    border: 3px solid #8e44ad;
    box-shadow: 0 0 15px rgba(142, 68, 173, 0.7), 0 0 5px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.ghsfdagasd {
    margin-top: 8px;
    padding: 4px 10px;
    background-color: #8e44ad;
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#teamModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow-y: auto;
}

#teamModal>div {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    margin: auto;
    transition: margin-top 0.3s ease-out;
}

/* MOBİL */
@media(max-width:768px) {
    .teams {
        gap: 10px;
        flex-wrap: nowrap;
        justify-content: space-around;
    }

    .asdgwae {
        padding: 5px;
        width: 22%;
        max-width: 80px;
    }

    .asdgwae .mnohys {
        width: 100%;
        height: auto;
        min-width: 50px;
    }

    .ghsfdagasd {
        font-size: 9px;
        padding: 3px 6px;
        margin-top: 5px;
    }
}

@media(max-width:480px) {
    .teams {
        gap: 5px;
    }

    .asdgwae {
        width: 23%;
        padding: 3px;
    }
}


.ghjsadfvdxz {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

/* Takım Seçim */
.asdgwae {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, border 0.2s ease;
    border-radius: 12px;
    padding: 5px;
}

.asdgwae:hover {
    transform: translateY(-3px);
}

.asdgwae.selected-team {
    border-bottom: 2px solid #8e44ad;
}

.mnohys {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Oy Badge */
.ghsfdagasd {
    margin-top: 6px;
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    background: #8e44ad;
    border-radius: 12px;
    padding: 3px 8px;
}

/* Fikstür Yan Yana */
.cvb {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 12px;
}

.asdfasdas {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
    justify-content: center;
    /* Masaüstünde ortala */
}

.asdfasdas::-webkit-scrollbar {
    height: 6px;
}

.asdfasdas::-webkit-scrollbar-thumb {
    background: #8e44ad;
    border-radius: 3px;
}

.fashsfdaas {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
    background: #fff;
    flex-shrink: 0;
}

.fashsfdaas:hover {
    background: #ececec;
    transform: translateY(-2px);
}

.blsdfgh {
    font-weight: 500;
    color: #34495e;
    font-size: 0.95rem;
}

.ıhsgh {
    font-weight: 600;
    color: #8e44ad;
    font-size: 0.95rem;
    margin: 4px 0;
}

/* Mobil Uyumluluk */
@media(max-width:768px) {
    .teams {
        gap: 12px;
        justify-content: space-around;
    }

    .mnohys {
        width: 60px;
        height: 60px;
    }

    .ghsfdagasd {
        font-size: 9px;
        padding: 2px 6px;
    }

    .asdfasdas {
        justify-content: flex-start;
    }

    /* Mobilde baştan başlasın */
    .fashsfdaas {
        min-width: 100px;
    }
}

/* Mobil cihazlar için stil */
@media (max-width: 768px) {
    .melody {
        height: 190px !important;
    }
}