.xslots-stats-card {
    --xslots-yellow: #ffd200;
    --xslots-dark: #151515;
    --xslots-panel: #262629;
    --xslots-panel-2: #1e1f22;
    --xslots-white: #ffffff;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0;
    border-radius: 22px;
    background: radial-gradient(circle at 50% 0%, rgba(255, 210, 0, 0.08), transparent 32%), linear-gradient(180deg, var(--xslots-panel) 0%, var(--xslots-panel-2) 100%);
    box-shadow: 0 14px 34px rgba(0,0,0,0.35);
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

.xslots-stats-inner {
    padding: 36px 28px 30px;
}

.xslots-stats-title {
    margin: 0 0 26px !important;
    text-align: center;
    color: var(--xslots-yellow) !important;
    font-size: clamp(26px, 3.2vw, 42px) !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
    letter-spacing: 0.2px;
    text-shadow: 0 0 10px rgba(255, 210, 0, 0.28);
}

.xslots-stats-chart-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0 30px;
}

.xslots-stats-chart {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 10px rgba(255,255,255,0.025), 0 10px 28px rgba(0,0,0,0.30);
    transition: transform 0.25s ease, filter 0.25s ease;
}

.xslots-stats-chart::after {
    content: '';
    position: absolute;
    inset: 21%;
    border-radius: 50%;
    background: linear-gradient(180deg, #25262a 0%, #17181b 100%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 0 22px rgba(0,0,0,0.18);
}

.xslots-stats-chart:hover {
    transform: scale(1.025);
    filter: saturate(1.07);
}

.xslots-stats-legend {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 18px 24px;
    align-items: start;
    margin: 20px auto 30px;
    max-width: 1050px;
}

.xslots-stats-legend-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--xslots-white);
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
}

.xslots-stats-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex: 0 0 34px;
    box-shadow: 0 0 16px rgba(255, 210, 0, 0.20);
}

.xslots-stats-label strong {
    color: var(--xslots-yellow);
    font-weight: 800;
}

.xslots-stats-notes {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.xslots-stats-note {
    background: #090a0c;
    color: var(--xslots-white);
    border-left: 5px solid var(--xslots-yellow);
    border-radius: 8px;
    padding: 16px 22px;
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.xslots-stats-note strong {
    color: var(--xslots-yellow);
}

.xslots-stats-error {
    padding: 16px 20px;
    border-radius: 10px;
    background: #2b1f1f;
    color: #fff;
}

@media (max-width: 900px) {
    .xslots-stats-inner {
        padding: 30px 22px 24px;
    }

    .xslots-stats-chart {
        width: 260px;
        height: 260px;
    }

    .xslots-stats-legend {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .xslots-stats-legend-item {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .xslots-stats-card {
        border-radius: 16px;
        margin: 22px auto;
    }

    .xslots-stats-inner {
        padding: 24px 16px 20px;
    }

    .xslots-stats-chart {
        width: 220px;
        height: 220px;
    }

    .xslots-stats-dot {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    .xslots-stats-legend-item {
        gap: 10px;
        font-size: 16px;
    }

    .xslots-stats-note {
        font-size: 16px;
        padding: 14px 14px;
    }
}
