/* =========================
   Reset
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    min-height: 100vh;

    font-family: Arial, Helvetica, sans-serif;

    background: #ffffff;
}


/* =========================
   Main Wrapper
========================= */

.social-wrapper {
    width: 100%;
    padding: 6px 0;
}


/* =========================
   Social Box
========================= */

.social-box {
    width: calc(100% - 4px);

    min-height: 168px;

    margin: 0 auto 12px;

    padding: 13px 20px 15px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    border: 3px dashed #ff0000;
    border-radius: 24px;

    background: linear-gradient(
        to bottom,
        #ffd91a 0%,
        #ffe45a 35%,
        #ffffff 100%
    );
}


/* =========================
   Text
========================= */

.social-text {
    width: 100%;

    margin-bottom: 10px;

    text-align: center;

    color: #777777;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.4;
}


/* =========================
   Button
========================= */

.social-button {
    min-width: 280px;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 40px;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.social-button:hover {
    transform: scale(1.03);
}


/* =========================
   WhatsApp
========================= */

.whatsapp-btn {
    background: #00c928;

    color: #ffffff;

    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}


/* =========================
   Telegram
========================= */

.telegram-btn {
    background: #26a9e0;

    color: #ffffff;

    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}


/* =========================
   Icons
========================= */

.social-icon {
    width: 84px;
    height: 84px;

    margin-left: -18px;
    margin-right: 12px;

    flex-shrink: 0;

    display: block;
}

.social-icon svg {
    width: 100%;
    height: 100%;

    display: block;
}


/* =========================
   Button Content
========================= */

.button-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    line-height: 1.1;
}

.button-title {
    font-size: 24px;
    font-weight: 700;
}

.button-subtitle {
    margin-top: 5px;

    font-size: 17px;
    font-weight: 600;
}


/* =========================
   Tablet
========================= */

@media (max-width: 768px) {

    .social-box {
        min-height: 150px;

        padding: 12px 14px;

        border-radius: 20px;
    }

    .social-text {
        font-size: 16px;
    }

    .social-button {
        min-width: 250px;
        height: 68px;
    }

    .social-icon {
        width: 75px;
        height: 75px;
    }

    .button-title {
        font-size: 21px;
    }

    .button-subtitle {
        font-size: 15px;
    }
}



* {
    box-sizing: border-box;
}

.schedule-section {
    width: 100%;
    padding: 6px 0;
}

.schedule-card {
    width: calc(100% - 4px);
    margin: 0 auto;

    padding: 12px 15px 28px;

    text-align: center;

    border: 3px dashed #ff0000;
    border-radius: 24px;

    background: linear-gradient(
        to bottom,
        #ffd800 0%,
        #ffe44f 35%,
        #fff 100%
    );

    overflow: hidden;
}


/* Header */

.header-small {
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

.header-title {
    margin-top: 5px;

    font-size: 25px;
    font-weight: 700;

    color: #222;
}


/* Schedule */

.schedule-list {
    width: fit-content;
    max-width: 100%;

    margin: 8px auto 0;

    text-align: left;
}

.schedule-row {
    display: flex;
    align-items: center;

    min-height: 31px;

    color: #222;

    font-size: 20px;
    font-weight: 700;

    white-space: nowrap;
}

.time-icon {
    width: 30px;
    flex-shrink: 0;
}

.schedule-name {
    min-width: 145px;
}

.dash {
    margin-right: 8px;
}

.schedule-time {
    min-width: 75px;
}


/* Footer */

.schedule-footer {
    margin-top: 8px;

    font-size: 25px;
    font-weight: 700;

    color: #222;
}


/* Action */

.action-title {
    margin-top: 18px;

    color: #2684c6;

    font-size: 30px;
    font-weight: 700;
}


/* WhatsApp */

.whatsapp-button {
    width: 280px;
    height: 76px;

    margin: 10px auto 0;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    border-radius: 40px;

    background: #00c928;

    color: white;

    box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
}

.whatsapp-logo {
    width: 75px;
    height: 75px;

    margin-left: -20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: white;

    color: #00c928;

    font-size: 35px;
}

.whatsapp-content {
    margin-left: 10px;

    display: flex;
    flex-direction: column;

    align-items: flex-start;
}

.whatsapp-content strong {
    font-size: 22px;
}

.whatsapp-content small {
    margin-top: 4px;

    font-size: 16px;
}


/* Tablet */

@media (max-width: 768px) {

    .schedule-card {
        padding: 12px 10px 24px;
    }

    .header-small {
        font-size: 17px;
    }

    .header-title {
        font-size: 22px;
    }

    .schedule-row {
        font-size: 17px;
        min-height: 29px;
    }

    .schedule-name {
        min-width: 125px;
    }

    .schedule-footer {
        font-size: 22px;
    }

    .action-title {
        font-size: 25px;
    }
}


/* Mobile */

@media (max-width: 480px) {

    .schedule-card {
        width: calc(100% - 4px);

        border-width: 2px;
        border-radius: 18px;

        padding: 10px 6px 20px;
    }

    .header-small {
        font-size: 15px;
    }

    .header-title {
        font-size: 19px;
    }

    .schedule-list {
        width: 100%;
    }

    .schedule-row {
        justify-content: center;

        font-size: 14px;

        min-height: 28px;
    }

    .time-icon {
        width: 22px;
    }

    .schedule-name {
        min-width: 105px;
    }

    .dash {
        margin-right: 4px;
    }

    .schedule-time {
        min-width: 62px;
    }

    .schedule-footer {
        font-size: 19px;
    }

    .action-title {
        margin-top: 15px;

        font-size: 20px;
        line-height: 1.3;
    }

    .whatsapp-button {
        width: 235px;
        height: 62px;
    }

    .whatsapp-logo {
        width: 62px;
        height: 62px;
    }

    .whatsapp-content strong {
        font-size: 18px;
    }

    .whatsapp-content small {
        font-size: 13px;
    }
}




/* =========================
   Mobile
========================= */

@media (max-width: 480px) {

    .social-wrapper {
        padding: 5px 0;
    }

    .social-box {
        width: calc(100% - 6px);

        min-height: auto;

        margin-bottom: 10px;

        padding: 12px 10px 18px;

        border-width: 2px;

        border-radius: 18px;
    }

    .social-text {
        margin-bottom: 12px;

        font-size: 14px;

        line-height: 1.35;
    }

    .social-button {
        width: 72%;
        max-width: 290px;
        min-width: 220px;

        height: 62px;
    }

    .social-icon {
        width: 68px;
        height: 68px;

        margin-left: -15px;
        margin-right: 8px;
    }

    .button-title {
        font-size: 19px;
    }

    .button-subtitle {
        margin-top: 4px;

        font-size: 13px;
    }
}


/* =========================
   Small Mobile
========================= */

@media (max-width: 360px) {

    .social-text {
        font-size: 13px;
    }

    .social-button {
        width: 80%;
        min-width: 205px;
    }

    .social-icon {
        width: 62px;
        height: 62px;
    }

    .button-title {
        font-size: 17px;
    }

    .button-subtitle {
        font-size: 12px;
    }
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #111111;
}

.results-wrapper {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

/* =========================
   TOP HEADER
========================= */

.page-header {
    min-height: 50px;
    background: #32c99a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
}

.page-header h1 {
    color: #ffffff;
    font-size: 23px;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}


/* =========================
   TABLE HEADER
========================= */

.results-header {
    min-height: 50px;
    display: grid;
    grid-template-columns: 1fr 220px 220px;
    align-items: center;
    background: #3d3d3d;
    color: #ffffff;
}

.game-heading {
    padding: 0 10px;
    font-size: 21px;
    font-weight: 500;
}

.date-heading {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
}


/* =========================
   RESULT ROW
========================= */

.result-row {
    min-height: 75px;
    display: grid;
    grid-template-columns: 1fr 220px 220px;
    align-items: center;
    border-bottom: 1px solid #d0d0d0;
    background: #ffffff;
}

.result-row.highlight {
    background: #ffc800;
}

.game-info {
    padding: 10px;
}

.game-name {
    font-size: 21px;
    line-height: 1.2;
    margin-bottom: 5px;
}

.game-time {
    font-size: 16px;
    line-height: 1.2;
}

.game-time span {
    color: #004de6;
    margin-left: 5px;
}

.result-number {
    text-align: center;
    font-size: 31px;
    font-weight: 400;
}

.result-number.upcoming {
    font-size: 31px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .page-header h1 {
        font-size: 20px;
    }

    .results-header,
    .result-row {
        grid-template-columns: minmax(250px, 1fr) 150px 150px;
    }

    .game-heading {
        font-size: 19px;
    }

    .date-heading {
        font-size: 19px;
    }

    .game-name {
        font-size: 19px;
    }

    .game-time {
        font-size: 14px;
    }

    .result-number,
    .result-number.upcoming {
        font-size: 27px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .page-header {
        min-height: 58px;
        padding: 8px 12px;
    }

    .page-header h1 {
        font-size: 16px;
    }

    .results-header {
        grid-template-columns: 1fr 80px 80px;
        min-height: 45px;
    }

    .result-row {
        grid-template-columns: 1fr 80px 80px;
        min-height: 70px;
    }

    .game-heading {
        font-size: 16px;
        padding-left: 8px;
    }

    .date-heading {
        font-size: 14px;
    }

    .game-info {
        padding: 8px;
    }

    .game-name {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .game-time {
        font-size: 12px;
    }

    .game-time span {
        display: block;
        margin-left: 0;
        margin-top: 3px;
    }

    .result-number,
    .result-number.upcoming {
        font-size: 23px;
    }
}


/* =========================
   VERY SMALL MOBILE
========================= */

@media (max-width: 380px) {

    .results-header {
        grid-template-columns: 1fr 65px 65px;
    }

    .result-row {
        grid-template-columns: 1fr 65px 65px;
    }

    .game-heading {
        font-size: 14px;
    }

    .date-heading {
        font-size: 12px;
    }

    .game-name {
        font-size: 14px;
    }

    .game-time {
        font-size: 11px;
    }

    .result-number,
    .result-number.upcoming {
        font-size: 20px;
    }
}



/* ==========================================
   RESULT CHART SECTION
========================================== */

.result-chart-section {
    width: 100%;
    max-width: 1900px;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
    background: #fff;
}


/* ==========================================
   TITLE
========================================== */

.result-chart-section .chart-title {
    width: 100%;
    min-height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 8px 15px;

    background: #31c99a;
    color: #fff;

    font-size: 16px;
    font-weight: 400;
    text-align: center;

    border-bottom: 1px solid #179f77;
}


/* ==========================================
   TABLE
========================================== */

.result-chart-section .chart-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.result-chart-section .result-chart-table {
    width: 100%;
    min-width: 700px;

    border-collapse: collapse;
    table-layout: fixed;

    font-size: 15px;
}

.result-chart-section .result-chart-table th,
.result-chart-section .result-chart-table td {
    height: 29px;

    padding: 4px 8px;

    text-align: center;
    vertical-align: middle;

    border-right: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
}

.result-chart-section .result-chart-table th {
    height: 34px;

    background: #ffc400;
    color: #111;

    font-size: 15px;
    font-weight: 500;
}

.result-chart-section .result-chart-table td {
    background: #fafafa;
}

.result-chart-section .result-chart-table td:first-child {
    color: red;
}

.result-chart-section .result-chart-table .latest-row td {
    color: red;
}


/* ==========================================
   MONTH NAVIGATION
========================================== */

.result-chart-section .month-navigation {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 94px 1fr;

    align-items: stretch;
}

.result-chart-section .month-button {
    min-height: 37px;

    border: 1px solid #1254b5;

    background: #216be0;
    color: #fff;

    font-size: 14px;

    cursor: pointer;

    transition: background 0.2s ease;
}

.result-chart-section .month-button:hover {
    background: #1558c4;
}

.result-chart-section .month-gap {
    background: #fff;
}


/* ==========================================
   BLUE CHART LINK
========================================== */

.result-chart-section .chart-link-box {
    width: min(880px, 90%);
    margin: 8px auto 0;

    background: #216be0;
    border: 1px solid #1254b5;

    text-align: center;
}

.result-chart-section .chart-link-box a {
    display: block;

    padding: 10px 15px;

    color: #fff;
    text-decoration: none;

    font-size: 14px;
}

.result-chart-section .chart-link-box a:hover {
    text-decoration: underline;
}


/* ==========================================
   SELECTOR
========================================== */

.result-chart-section .chart-selector {
    width: min(880px, 90%);

    margin: 11px auto 20px;

    padding: 10px 25px 16px;

    background: #ffc400;
}

.result-chart-section .chart-selector p {
    margin: 0 0 9px;

    text-align: center;

    font-size: 14px;
    line-height: 1.5;
}

.result-chart-section .selector-row {
    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    gap: 20px;
}

.result-chart-section .selector-row select,
.result-chart-section .selector-row button {
    width: 100%;
    height: 38px;

    border: 1px solid #aaa;

    padding: 0 10px;

    font-size: 14px;
    font-weight: 600;

    background: #fff;
}

.result-chart-section .selector-row button {
    background: #216be0;
    color: #fff;

    border-color: #1254b5;

    cursor: pointer;
}

.result-chart-section .selector-row button:hover {
    background: #1558c4;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .result-chart-section .chart-title {
        font-size: 15px;
    }

    .result-chart-section .result-chart-table {
        font-size: 14px;
    }

    .result-chart-section .selector-row {
        gap: 12px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .result-chart-section .chart-title {
        min-height: 48px;
        padding: 8px 10px;

        font-size: 13px;
        line-height: 1.4;
    }

    /*
       Table horizontally scrollable
       rahega, isliye columns tootenge nahi.
    */

    .result-chart-section .result-chart-table {
        min-width: 680px;
        font-size: 13px;
    }

    .result-chart-section .result-chart-table th {
        font-size: 13px;
    }

    .result-chart-section .result-chart-table th,
    .result-chart-section .result-chart-table td {
        height: 30px;
        padding: 4px 6px;
    }

    .result-chart-section .month-navigation {
        grid-template-columns: 1fr 25px 1fr;
    }

    .result-chart-section .month-button {
        min-height: 38px;
        font-size: 12px;
    }

    .result-chart-section .chart-link-box {
        width: calc(100% - 20px);
    }

    .result-chart-section .chart-link-box a {
        padding: 9px 8px;
        font-size: 12px;
        line-height: 1.4;
    }

    .result-chart-section .chart-selector {
        width: calc(100% - 20px);

        padding: 12px;
    }

    .result-chart-section .chart-selector p {
        font-size: 12px;
    }

    .result-chart-section .selector-row {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .result-chart-section .selector-row select,
    .result-chart-section .selector-row button {
        height: 40px;
    }

}


/* ==========================================
   HEADER SECTION
========================================== */

.result-header-section {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 5px 0 20px;

    font-family: Arial, Helvetica, sans-serif;

    text-align: center;
}


/* ==========================================
   BRAND
========================================== */

.result-header-section .brand-area {
    min-height: 120px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;
}


/* Crown / Icon */

.result-header-section .brand-icon {
    width: 78px;
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        145deg,
        #f7d65c,
        #d79a13
    );

    border: 4px solid #111;

    border-radius: 50% 50% 45% 45%;

    transform: rotate(-3deg);

    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
}

.result-header-section .crown {
    color: #111;

    font-size: 48px;
    line-height: 1;
}


/* Brand Name */

.result-header-section .brand-name {
    color: #050505;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 48px;
    font-weight: 900;

    letter-spacing: -2px;

    text-transform: uppercase;
}

.result-header-section .brand-name span {
    font-weight: 700;
}


/* ==========================================
   DESCRIPTION
========================================== */

.result-header-section .header-description {
    max-width: 900px;

    margin: 0 auto 12px;

    padding: 0 10px;

    color: #111;

    font-size: 15px;
    line-height: 1.45;

    text-align: center;
}


/* ==========================================
   NOTICE
========================================== */

.result-header-section .header-notice {
    width: calc(100% - 30px);

    max-width: 1200px;

    min-height: 41px;

    margin: 0 auto 10px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff;

    border: 1px solid #eeeeee;
}

.result-header-section .header-notice a {
    padding: 10px;

    color: #004de6;

    font-size: 15px;

    text-decoration: none;

    line-height: 1.4;
}

.result-header-section .header-notice a:hover {
    text-decoration: underline;
}


/* ==========================================
   SEPARATOR
========================================== */

.result-header-section .header-separator {
    width: calc(100% - 30px);

    max-width: 1200px;

    min-height: 40px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff;

    border: 1px solid #eeeeee;
}

.result-header-section .header-separator span {
    color: #004de6;

    font-size: 18px;

    letter-spacing: 4px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .result-header-section .brand-area {
        min-height: 100px;
    }

    .result-header-section .brand-icon {
        width: 65px;
        height: 65px;
    }

    .result-header-section .crown {
        font-size: 39px;
    }

    .result-header-section .brand-name {
        font-size: 38px;
    }

    .result-header-section .header-description {
        font-size: 14px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .result-header-section {
        padding-top: 5px;
        padding-bottom: 12px;
    }

    .result-header-section .brand-area {
        min-height: 85px;

        gap: 8px;
    }

    .result-header-section .brand-icon {
        width: 52px;
        height: 52px;

        border-width: 3px;
    }

    .result-header-section .crown {
        font-size: 30px;
    }

    .result-header-section .brand-name {
        font-size: 28px;

        letter-spacing: -1px;
    }

    .result-header-section .header-description {
        padding: 0 12px;

        font-size: 12px;

        line-height: 1.5;
    }

    .result-header-section .header-notice {
        width: calc(100% - 20px);

        min-height: 45px;
    }

    .result-header-section .header-notice a {
        padding: 8px;

        font-size: 12px;

        line-height: 1.45;
    }

    .result-header-section .header-separator {
        width: calc(100% - 20px);

        min-height: 35px;
    }

    .result-header-section .header-separator span {
        font-size: 14px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 380px) {

    .result-header-section .brand-name {
        font-size: 23px;
    }

    .result-header-section .brand-icon {
        width: 45px;
        height: 45px;
    }

    .result-header-section .crown {
        font-size: 26px;
    }

}