/* SANA OZEL DASHBOARD - PREMIUM MMA UI */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&display=swap');

:root {
    --bg-dark: #0a0a0c;
    --card-dark: #111114;
    --ka-red: #D20A0A;
    --ka-border: rgba(255, 255, 255, 0.05);
    --text-main: #ffffff;
    --text-muted: #888888;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
}

/* CONTAINER */
.so-v8-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
}

/* SECTIONS */
.so-section {
    margin-bottom: 60px;
}

.so-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.so-section-header h2 {
    font-size: 16px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
}

.so-section-header a {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
}

.so-section-header a:hover {
    color: var(--text-main);
}

.so-section-header a i {
    margin-left: 5px;
    font-size: 10px;
}

/* SECTION 1 - COUNTDOWN */
.so-countdown-card {
    width: 100%;
    height: 220px;
    background: var(--card-dark);
    border: 1px solid var(--ka-border);
    border-radius: 16px;
    display: flex;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.so-cd-left {
    width: 35%;
    position: relative;
    background: url('../images/arena-mock.jpg') center/cover; /* Placeholder for octagon */
    mask-image: linear-gradient(to right, #000 50%, transparent);
    -webkit-mask-image: linear-gradient(to right, #000 50%, transparent);
}

/* Fallback red glow if no image */
.so-cd-left::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at left, rgba(210, 10, 10, 0.4) 0%, transparent 80%);
}

.so-cd-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.so-cd-label {
    font-size: 10px;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 20px;
    letter-spacing: 1.5px;
}

.so-cd-timer {
    display: flex;
    gap: 40px;
}

.cd-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cd-box .num {
    font-size: 42px;
    font-weight: 900;
    color: var(--ka-red);
    line-height: 1;
    text-shadow: 0 0 20px rgba(210, 10, 10, 0.3);
}

.cd-box .text {
    font-size: 10px;
    font-weight: 800;
    color: var(--text-muted);
    margin-top: 5px;
}

.so-cd-right {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
    z-index: 2;
    background: linear-gradient(to right, transparent, var(--card-dark) 30%);
}

.so-cd-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.so-cd-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
}

.so-cd-meta i {
    width: 16px;
}

.so-btn-outline {
    margin-top: 25px;
    align-self: flex-start;
    border: 1px solid var(--ka-red);
    color: var(--ka-red);
    background: transparent;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 0.5px;
}

.so-btn-outline:hover {
    background: var(--ka-red);
    color: #fff;
    box-shadow: 0 0 15px rgba(210, 10, 10, 0.4);
}

/* SECTION 2 - STATS */
.so-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.so-stat-card {
    background: var(--card-dark);
    border: 1px solid var(--ka-border);
    border-radius: 14px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s;
}

.so-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

.sc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.sc-icon.red { background: rgba(210, 10, 10, 0.1); color: var(--ka-red); box-shadow: inset 0 0 10px rgba(210,10,10,0.2); }
.sc-icon.green { background: rgba(34, 197, 94, 0.1); color: #22c55e; box-shadow: inset 0 0 10px rgba(34,197,94,0.2); }
.sc-icon.gold { background: rgba(234, 179, 8, 0.1); color: #eab308; box-shadow: inset 0 0 10px rgba(234,179,8,0.2); }
.sc-icon.blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; box-shadow: inset 0 0 10px rgba(59,130,246,0.2); }

.sc-content {
    display: flex;
    flex-direction: column;
}

.sc-label {
    font-size: 9px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sc-val {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin: 2px 0;
}

.sc-sub {
    font-size: 10px;
    font-weight: 500;
    color: #666;
}

.text-green { color: #22c55e; font-weight: 700; }

/* SECTION 3 - NEWS */
.so-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.so-news-card {
    background: var(--card-dark);
    border: 1px solid var(--ka-border);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}

.so-news-card:hover {
    border-color: rgba(210, 10, 10, 0.3);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.so-news-card:hover .snc-thumb {
    transform: scale(1.05);
}

.snc-thumb-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

.snc-thumb {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    background-size: cover;
    background-position: center;
    transition: 0.5s ease;
}

.snc-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--ka-red);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.snc-content {
    padding: 20px;
}

.snc-content h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.4;
    color: #fff;
}

.snc-date {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

/* SECTION 4 - BADGES */
.so-badges-grid {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.so-badge-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sbi-hex-wrap {
    width: 80px;
    height: 80px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--ka-border);
    padding: 2px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.sbi-hex {
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--card-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.so-badge-item:hover .sbi-hex-wrap {
    transform: translateY(-5px);
}

.sbi-hex-wrap.silver { background: #9ca3af; }
.sbi-hex-wrap.silver .sbi-hex { color: #9ca3af; background: rgba(156, 163, 175, 0.1); }

.sbi-hex-wrap.gold { background: #eab308; box-shadow: 0 0 15px rgba(234, 179, 8, 0.2); }
.sbi-hex-wrap.gold .sbi-hex { color: #eab308; background: rgba(234, 179, 8, 0.1); }

.sbi-hex-wrap.red { background: var(--ka-red); box-shadow: 0 0 15px rgba(210, 10, 10, 0.3); }
.sbi-hex-wrap.red .sbi-hex { color: var(--ka-red); background: rgba(210, 10, 10, 0.1); }

.sbi-hex-wrap.purple { background: #a855f7; }
.sbi-hex-wrap.purple .sbi-hex { color: #a855f7; background: rgba(168, 85, 247, 0.1); }

.sbi-name {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.sbi-level {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
}

/* SECTION 5 - CONTINUE WATCHING */
.so-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.so-video-card {
    cursor: pointer;
}

.svc-thumb-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
    border: 1px solid var(--ka-border);
}

.svc-thumb {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    background-size: cover;
    background-position: center;
    transition: 0.4s;
}

.so-video-card:hover .svc-thumb {
    transform: scale(1.05);
}

.svc-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    padding-left: 3px;
    transition: 0.3s;
}

.so-video-card:hover .svc-play {
    background: var(--ka-red);
    border-color: var(--ka-red);
    transform: translate(-50%, -50%) scale(1.1);
}

.svc-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.85);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
}

.svc-progress-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.2);
}

.svc-progress-fill {
    height: 100%;
    background: var(--ka-red);
    box-shadow: 0 0 10px var(--ka-red);
}

.svc-content h3 {
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #fff;
}

.svc-content span {
    font-size: 11px;
    color: var(--text-muted);
}

/* SECTION 6 - ANALYTICS */
.so-analytics-card {
    background: var(--card-dark);
    border: 1px solid var(--ka-border);
    border-radius: 16px;
    padding: 35px;
    display: flex;
    align-items: center;
}

.sac-left {
    width: 30%;
    padding-right: 35px;
    border-right: 1px solid var(--ka-border);
}

.sac-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.sac-list li {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.sac-list li i {
    width: 24px;
    font-size: 14px;
    color: #555;
}

.sac-list li span {
    margin-left: auto;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
}

.sac-center {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--ka-border);
}

.sac-chart-title {
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sac-chart {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    /* Default empty state */
    background: conic-gradient(var(--ka-red) 0deg, #222 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sac-chart-inner {
    width: 140px;
    height: 140px;
    background: var(--card-dark);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sac-chart-inner .val {
    font-size: 38px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.sac-chart-inner .lbl {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 4px;
}

.sac-right {
    width: 30%;
    padding-left: 35px;
}

.sac-title {
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sac-preds {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sac-pred-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    color: #aaa;
}

.sac-pred-item i {
    color: #22c55e;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .so-cd-timer { gap: 20px; }
    .so-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .so-news-grid { grid-template-columns: repeat(2, 1fr); }
    .so-video-grid { grid-template-columns: repeat(2, 1fr); }
    .so-badges-grid { flex-wrap: wrap; }
    .so-badge-item { width: 30%; flex: none; }
    .so-analytics-card { flex-direction: column; gap: 30px; }
    .sac-left, .sac-center, .sac-right { width: 100%; border: none; padding: 0; }
    .sac-center { padding: 30px 0; border-top: 1px solid var(--ka-border); border-bottom: 1px solid var(--ka-border); }
}

@media (max-width: 768px) {
    .so-countdown-card { flex-direction: column; height: auto; }
    .so-cd-left, .so-cd-right { width: 100%; }
    .so-cd-left { height: 150px; }
    .so-cd-right { padding: 30px; }
    .so-news-grid, .so-video-grid { grid-template-columns: 1fr; }
    .so-stats-grid { grid-template-columns: 1fr; }
}

/* HERO SLIDER (DYNAMIC) */
.so-hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.so-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.so-hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.so-hero-fighters {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1600px;
    height: 120%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 1;
    pointer-events: none;
}

.shf-left, .shf-right {
    height: 100%;
    width: 50%;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.8));
}

.shf-left {
    transform: translateX(-10%);
}

.shf-right {
    transform: scaleX(-1) translateX(-10%);
}

.so-slide-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.3; /* Biraz karartıyoruz ki arayüz öne çıksın */
}

.so-slide-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, #000 0%, transparent 60%, rgba(0,0,0,0.8) 100%);
    z-index: 0;
}

.so-hero-center-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: radial-gradient(circle at center, rgba(0,0,0,0.7) 0%, transparent 70%);
}

.shc-logo { margin-bottom: 15px; }
.shc-logo img { height: 40px; }

.ufc-num-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'UFCFont', sans-serif;
    line-height: 1;
}

.unl-ufc { color: var(--ka-red); font-size: 56px; font-weight: 900; }
.unl-num { color: #fff; font-size: 32px; margin-top: -10px; }

.shc-names {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.shc-vs { color: var(--ka-red); font-size: 16px; font-weight: 900; font-style: italic; }

.shc-date { color: var(--ka-red); font-size: 14px; font-weight: 700; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 2px; }

.shc-actions { display: flex; gap: 15px; }
.shc-actions a { text-decoration: none; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 12px 30px; border-radius: 4px; transition: 0.3s; }
.btn-incele { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: #fff; }
.btn-incele:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-tahmin { background: var(--ka-red); border: 1px solid var(--ka-red); color: #fff; box-shadow: 0 0 20px rgba(210, 10, 10, 0.4); }
.btn-tahmin:hover { background: #b00707; border-color: #b00707; box-shadow: 0 0 30px rgba(210, 10, 10, 0.6); }

@media (max-width: 768px) {
    .so-hero-fighters {
        height: 90%;
        bottom: -60px;
        width: 100%;
    }
    .shf-left { transform: translateX(15%); opacity: 0.4; }
    .shf-right { transform: scaleX(-1) translateX(15%); opacity: 0.4; }
    .shc-names { font-size: 20px; flex-direction: column; gap: 5px; }
    .shc-vs { font-size: 12px; }
    .unl-ufc { font-size: 40px; }
    .unl-num { font-size: 24px; }
}

/* TAHMINLERIM PAGE SPECIFIC STYLES */
.tahmin-hero-stats-row {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tahmin-hero-stats-row .container-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
}

.div-tabs {
    display: flex;
    justify-content: center;
    gap: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 40px;
}

.tab-item {
    padding: 15px 0;
    color: #555;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: 0.3s;
}

.tab-item:hover { color: #fff; }

.tab-item.active {
    color: #fff;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--ka-red);
    box-shadow: 0 0 10px var(--ka-red);
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    width: 100%;
}

.hero-stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    min-width: 160px;
}

.stat-icon {
    position: absolute;
    top: -5px;
    right: 0;
    width: 40px;
    opacity: 0.1;
    pointer-events: none;
    filter: grayscale(1) invert(1);
}

.stat-val-big {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.stat-label-mini {
    font-size: 10px;
    font-weight: 800;
    color: #666;
    text-transform: uppercase;
    margin: 5px 0;
    letter-spacing: 0.5px;
}

.stat-sub-detail {
    font-size: 10px;
    font-weight: 700;
    color: #444;
}

.stat-sub-detail .red { color: var(--ka-red); }
.stat-sub-detail .green { color: #22c55e; }

/* PREDICTION CARDS V7 */
.prediction-card-v7 {
    background: var(--card-dark);
    border: 1px solid var(--ka-border);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.prediction-card-v7:hover {
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.prediction-card-v7.is-win { border-left: 4px solid #22c55e; }
.prediction-card-v7.is-loss { border-left: 4px solid var(--ka-red); }

.kart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--ka-border);
}

.kh-left { flex: 1; }
.kh-center { 
    flex: 1; 
    text-align: center; 
    font-size: 10px; 
    color: #444; 
    font-weight: 800; 
    text-transform: uppercase; 
}
.kh-right { 
    flex: 1; 
    text-align: right; 
    font-size: 9px; 
    font-weight: 900; 
    color: var(--ka-red); 
    letter-spacing: 1px; 
}

.versus-v7 {
    display: flex;
    align-items: center;
    padding: 25px 20px;
    gap: 15px;
}

.sol-profil, .sag-profil {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--ka-border);
    background: #000;
}

.sol-profil img, .sag-profil img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sol-dovuscu, .sag-dovuscu {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sag-dovuscu { text-align: right; }

.d-name {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

.d-record {
    font-size: 10px;
    color: #555;
    font-weight: 700;
}

.v-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.v-vs {
    font-family: 'UFCFont', sans-serif;
    color: var(--ka-red);
    font-size: 18px;
    font-style: italic;
    font-weight: 900;
}

.v-siklet {
    font-size: 8px;
    color: #444;
    font-weight: 800;
    letter-spacing: 1px;
}

.tahmin-detay {
    display: flex;
    padding: 15px 20px;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid var(--ka-border);
    gap: 30px;
}

.td-box {
    display: flex;
    flex-direction: column;
}

.td-label {
    font-size: 8px;
    color: #444;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.winner-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    padding: 4px 12px 4px 4px;
    border-radius: 20px;
}

.wp-img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.wp-name {
    font-size: 11px;
    font-weight: 800;
    color: #fff;
}

.td-method-icon {
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

.td-round-val {
    font-size: 12px;
    font-weight: 800;
    color: #fff;
}

/* TOGGLE TAHMINLER (UPCOMING/FINISHED) */
.div-toggle-maçlar {
    display: flex;
    background: rgba(255,255,255,0.02);
    padding: 5px;
    border-radius: 8px;
    border: 1px solid var(--ka-border);
    margin-bottom: 30px;
    width: fit-content;
}

.toggle-item {
    padding: 10px 20px;
    font-size: 10px;
    font-weight: 800;
    color: #666;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

.toggle-item.active {
    background: var(--ka-red);
    color: #fff;
    box-shadow: 0 5px 15px rgba(210, 10, 10, 0.3);
}


/* PREMIUM STAT CARDS (TAHMINLERIM) */
.stats-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.stat-premium-card {
    background: var(--card-dark);
    border: 1px solid var(--ka-border);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 25px;
}

.stat-pc-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-pc-content {
    flex: 1;
    z-index: 2;
}

.stat-pc-title {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.stat-pc-val {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.stat-pc-sub {
    display: block;
    font-size: 10px;
    color: #444;
    margin-top: 8px;
    font-weight: 600;
}

.stat-pc-chart-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 60px;
    z-index: 1;
    opacity: 0.5;
}

/* STAT SECTIONS */
.stats-section-v7 {
    background: var(--card-dark);
    border: 1px solid var(--ka-border);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.ss-title {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cat-perf-grid {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 40px;
    align-items: center;
}

.cat-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cat-name {
    width: 120px;
    font-size: 11px;
    font-weight: 700;
    color: #888;
}

.cat-progress-bg {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.03);
    border-radius: 3px;
    overflow: hidden;
}

.cat-progress-fill {
    height: 100%;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.cat-pct {
    width: 40px;
    font-size: 12px;
    font-weight: 900;
    color: #fff;
    text-align: right;
}

.genel-success-box {
    width: 180px;
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-accuracy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.method-acc-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--ka-border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: 0.3s;
}

.method-acc-card:hover {
    background: rgba(255,255,255,0.04);
    transform: translateY(-3px);
}

.ma-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.ma-pct {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.ma-label {
    font-size: 9px;
    font-weight: 800;
    color: #555;
    text-transform: uppercase;
    margin: 5px 0;
}

.ma-detail {
    font-size: 10px;
    color: #333;
    font-weight: 700;
}

.ma-detail span { color: #fff; }

