/* ==========================================================
   FAROELOTTO
   STATISTICS PAGE
   ========================================================== */

.statistics-section {
    padding: 20px 0 70px;
}

.statistics-wrapper {
    background: #06111d;
    border: 1px solid rgba(245, 196, 81, 0.18);
    border-radius: 16px;
    overflow: hidden;
}


/* ==========================================================
   HEADER
   ========================================================== */

.statistics-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.statistics-title-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.statistics-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(245, 196, 81, 0.35);
    border-radius: 9px;

    background: rgba(245, 196, 81, 0.06);
    color: #f5c451;

    font-size: 20px;
    font-weight: 800;
}

.statistics-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 19px;
    font-weight: 900;
    letter-spacing: 0.3px;
}

.statistics-header p {
    margin: 4px 0 0;
    color: #6f8ba8;
    font-size: 12px;
}


/* ==========================================================
   STATISTICS GRID
   ========================================================== */

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;

    padding: 22px 26px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 14px;

    min-height: 105px;

    padding: 18px;

    background: #081522;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;

    transition:
        border-color 0.2s ease,
        transform 0.2s ease;
}

.stat-card:hover {
    border-color: rgba(245, 196, 81, 0.3);
    transform: translateY(-2px);
}


/* ==========================================================
   STAT ICON
   ========================================================== */

.stat-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(245, 196, 81, 0.08);
    border: 1px solid rgba(245, 196, 81, 0.22);

    color: #f5c451;

    font-size: 18px;
    font-weight: 900;
}


/* ==========================================================
   STAT CONTENT
   ========================================================== */

.stat-content {
    min-width: 0;
}

.stat-title {
    display: block;

    margin-bottom: 7px;

    color: #6f8ba8;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}

.stat-value {
    display: block;

    color: #ffffff;

    font-size: 24px;
    font-weight: 900;

    line-height: 1.1;

    white-space: nowrap;
}


/* ==========================================================
   CURRENT PERIOD
   ========================================================== */

.statistics-period {
    margin: 0 26px 22px;

    padding: 15px 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #081522;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
}

.statistics-period span {
    color: #6f8ba8;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}

.statistics-period strong {
    color: #f5c451;

    font-size: 14px;
    font-weight: 800;
}


/* ==========================================================
   HOT NUMBERS
   ========================================================== */

.hot-numbers-section {
    padding: 24px 26px 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.hot-numbers-header {
    margin-bottom: 20px;
}

.hot-numbers-header h3 {
    margin: 0;

    color: #ffffff;

    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.4px;
}

.hot-numbers-header p {
    margin: 5px 0 0;

    color: #6f8ba8;

    font-size: 12px;
}


/* ==========================================================
   HOT NUMBER GRID
   ========================================================== */

.hot-numbers-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 12px;
}

.hot-number-card {
    min-height: 120px;

    padding: 16px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: #081522;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;

    transition:
        border-color 0.2s ease,
        transform 0.2s ease;
}

.hot-number-card:hover {
    border-color: rgba(245, 196, 81, 0.35);
    transform: translateY(-2px);
}


/* ==========================================================
   HOT NUMBER
   ========================================================== */

.hot-number {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 10px;

    border: 2px solid #f5c451;
    border-radius: 50%;

    color: #f5c451;

    font-size: 24px;
    font-weight: 900;

    background: rgba(245, 196, 81, 0.04);

    box-shadow:
        0 0 18px rgba(245, 196, 81, 0.08);
}

.hot-number-count {
    display: flex;
    align-items: center;
    gap: 5px;

    color: #6f8ba8;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.5px;
}

.hot-number-count strong {
    color: #ffffff;

    font-size: 13px;
}


/* ==========================================================
   EMPTY
   ========================================================== */

.statistics-empty {
    padding: 30px;

    text-align: center;

    color: #6f8ba8;

    font-size: 13px;

    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}


/* ==========================================================
   INFORMATION NOTE
   ========================================================== */

.statistics-note {
    margin: 0 26px 26px;

    padding: 18px;

    background: rgba(245, 196, 81, 0.035);

    border: 1px solid rgba(245, 196, 81, 0.12);
    border-radius: 10px;
}

.statistics-note strong {
    display: block;

    margin-bottom: 6px;

    color: #f5c451;

    font-size: 12px;
    font-weight: 800;
}

.statistics-note p {
    margin: 0;

    color: #6f8ba8;

    font-size: 11px;
    line-height: 1.6;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1000px) {

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hot-numbers-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}


@media (max-width: 700px) {

    .statistics-grid {
        grid-template-columns: 1fr;
    }

    .hot-numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .statistics-header {
        padding: 18px;
    }

    .statistics-grid {
        padding: 18px;
    }

    .statistics-period {
        margin-left: 18px;
        margin-right: 18px;
    }

    .hot-numbers-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .statistics-note {
        margin-left: 18px;
        margin-right: 18px;
    }
}


@media (max-width: 450px) {

    .statistics-period {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .hot-numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-value {
        font-size: 21px;
    }
}