﻿.dashboard-banner {
    background: linear-gradient(135deg, #1e2125 0%, #111 100%);
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 4px solid #dc3545;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
    .dashboard-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 15px;
    }
}

.dash-stat-box {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 8px 15px;
    text-align: center;
    min-width: 130px;
    border: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 991px) {
    .dash-stat-box {
        min-width: 0 !important;
        padding: 10px 5px !important;
    }

    .dash-title {
        font-size: 0.65rem !important;
        letter-spacing: 0px !important;
        margin-bottom: 3px;
    }

    .dash-val {
        font-size: 1.3rem !important;
    }

    .dash-stat-box .dash-title .d-none.d-md-inline {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .dash-stat-box .dash-title .d-none.d-md-inline {
        display: inline !important;
    }
}

.dash-stat-box.bg-white {
    background: #fff !important;
    color: #000;
    border-color: #fff;
}

.dash-stat-box.bg-danger {
    background: #dc3545 !important;
    color: #fff;
    border-color: #dc3545;
}

.dash-stat-box.bg-success {
    background: #198754 !important;
    color: #fff;
    border-color: #198754;
}

.dash-stat-box.bg-dark-warning {
    background: rgba(255, 204, 0, 0.1) !important;
    border-color: #ffcc00;
}

.dash-title {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 2px;
    opacity: 0.9;
}

.dash-val {
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1;
}

.ai-filter-container {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

@media (max-width: 991px) {
    .ai-filter-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .ai-filter-btn {
        font-size: 0.70rem !important;
        padding: 8px 2px;
    }
}

.ai-filter-btn {
    border: 1px solid #e9ecef;
    background: #f8f9fa;
    font-weight: 700;
    border-radius: 8px;
    transition: 0.3s;
    padding: 10px;
}

    .ai-filter-btn.active {
        background: #1a1d20;
        color: #dc3545;
        border-color: #1a1d20;
    }
/* Gold sayfasında aktif buton kırmızımtırak sarıydı */

.prediction-card {
    position: relative;
    background: #fff;
    border: 1px solid #f8e5b0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: 0.2s;
}

    .prediction-card:hover {
        transform: translateY(-5px);
        border-color: #dc3545;
    }

.match-structure {
    display: grid;
    grid-template-columns: 1fr 70px 1fr;
    align-items: start;
    gap: 5px;
    padding: 15px 10px;
    background: #fcfcfc;
    border-radius: 10px;
    margin: 10px;
}

.team-block {
    width: 100%;
    overflow: hidden;
}

.team-name-text {
    font-size: 0.9rem;
    font-weight: 800;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.live-score-text {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.prediction-card.is-won .live-score-text {
    color: #28a745 !important;
    text-shadow: none !important;
}

.team-stats {
    display: flex;
    gap: 5px;
    margin-top: 6px;
}

.stat-badge {
    font-size: 0.70rem;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #eee;
}

.odds-highlight {
    background: #ffcc00;
    color: #000;
    font-weight: 900;
    padding: 5px 10px;
    border-radius: 6px;
}

.prediction-highlight {
    background: #fff;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.electric-check {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.prediction-card.is-won .electric-check {
    display: block;
}

.check-path {
    stroke: #dc3545;
    stroke-width: 14;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawCheck 0.6s forwards;
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

@keyframes floatRobot {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.status-filter-btn {
    cursor: pointer;
    transition: all 0.3s ease;
}

    .status-filter-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .status-filter-btn.active-filter {
        outline: 3px solid #00E5FF;
        outline-offset: 2px;
        transform: scale(1.05);
    }
