:root {
    --iot-navy-950: #0b1a2d;
    --iot-navy-900: #0d1e33;
    --iot-navy-800: #142943;
    --iot-navy-700: #152943;
    --iot-navy-600: #1b3454;
    --iot-navy-500: #2b476a;
    --iot-blue-accent: #29bbee;
    --iot-green: #007c23;
    --iot-red: #c0392b;
    --iot-yellow: #ffe400;
    --iot-bg-page: #e9edf2;
    --iot-bg-panel: #f4f7fa;
    --iot-bg-panel-alt: #f8fafc;
    --iot-border: #e4eaf1;
    --iot-border-strong: #d7dfe8;
    --iot-text: #152943;
    --iot-text-secondary: #33404f;
    --iot-text-muted: #7c8ca0;
    --iot-text-muted-2: #5b6e85;
    --iot-text-muted-3: #8496ab;
    --iot-font-heading: 'Roboto Condensed', sans-serif;
    --iot-font-body: Roboto, Helvetica, Arial, sans-serif;
    --iot-radius-card: 10px;
    --iot-radius-control: 6px;
    --iot-radius-pill: 999px;
    --iot-shadow-card: 0 1px 2px rgba(21, 41, 67, .06);
    --iot-shadow-menu: 0 8px 24px rgba(20, 41, 67, .18);
    --iot-touch-target: 44px;
}

.iot-scroll {
    -webkit-overflow-scrolling: touch;
}

.iot-scroll::-webkit-scrollbar {
    height: 8px;
    width: 6px;
}

.iot-scroll::-webkit-scrollbar-thumb {
    background: #c3ccd8;
    border-radius: var(--iot-radius-pill);
}

.iot-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.iot-header {
    background: var(--iot-navy-800);
    color: #fff;
}

.iot-header-spacer {
    display: none;
}

@media (max-width: 991.98px) {
    .iot-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
    }

    .iot-header-spacer {
        display: block;
        height: var(--iot-header-height-mobile, 80px);
    }
}

.iot-header__bar {
    max-width: 1640px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (max-width: 991.98px) {

    .iot-header__bar {
        padding: 15px 12px;
    }
}

.iot-header__brand {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    color: #fff;
}

.iot-header__brand:hover {
    color: #fff;
    text-decoration: none;
}

.iot-header__brand-logo {
    width: 38px;
    height: 38px;
    display: block;
}

.iot-header__brand-name {
    font-family: var(--iot-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

@media (max-width: 991.98px) {
    .iot-header__brand {
        flex: 1;
        gap: 9px;
        justify-content: center;
        min-width: 0;
    }

    .iot-header__brand-logo {
        width: 36px;
        height: 36px;
        flex: none;
    }

    .iot-header__brand-name {
        font-size: 15px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.iot-header__actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.iot-header__actions .dropdown-toggle::after {
    vertical-align: 2px;
}

.iot-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--iot-navy-500);
    background: var(--iot-navy-600);
    color: #dce6f2;
    font-family: var(--iot-font-body);
    font-size: 13px;
    line-height: 1;
    padding: 8px 12px;
    border-radius: var(--iot-radius-control);
    cursor: pointer;
    min-height: var(--iot-touch-target);
}

.iot-action-btn:hover,
.iot-action-btn:focus {
    color: #fff;
    background: var(--iot-navy-500);
    text-decoration: none;
}

.iot-action-btn--icon {
    width: var(--iot-touch-target);
    height: var(--iot-touch-target);
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.iot-header__actions .fa {
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1;
    text-align: center;
    font-size: 14px;
}

.iot-flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .25);
}

.iot-navbar-toggler {
    border: 1px solid var(--iot-navy-500);
    border-radius: var(--iot-radius-control);
    color: #fff;
    padding: 8px 10px;
}

.iot-action-btn--donate {
    color: #f7941e !important;
}

.iot-nav-scroll {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.iot-nav-scroll::-webkit-scrollbar {
    display: none;
}

.iot-mainnav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    max-width: 82vw;
    background: var(--iot-navy-950);
    color: #fff;
    z-index: 1050;
    transform: translateX(-100%);
    transition: transform .25s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.iot-mainnav.show {
    transform: translateX(0);
}

.iot-mainnav__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--iot-navy-600);
}

.iot-mainnav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-family: var(--iot-font-heading);
    font-weight: 700;
}

.iot-mainnav__brand img {
    width: 32px;
    height: 32px;
}

.iot-mainnav__brand:hover {
    color: #fff;
    text-decoration: none;
}

.iot-mainnav__close {
    margin-left: auto;
    background: none;
    border: none;
    color: #fff;
    width: var(--iot-touch-target);
    height: var(--iot-touch-target);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.iot-mainnav__list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.iot-mainnav__link {
    display: block;
    padding: 13px 18px;
    font-family: var(--iot-font-heading);
    font-weight: 700;
    font-size: 14px;
    color: #c3d1e2;
    min-height: var(--iot-touch-target);
    border: 0;
    -webkit-tap-highlight-color: transparent;
}

.iot-mainnav__link:hover,
.iot-mainnav__link:focus {
    background: var(--iot-navy-600);
    color: #fff;
    text-decoration: none;
    outline: none;
}

.iot-mainnav__link.active {
    background: var(--iot-navy-600);
    color: #fff;
    box-shadow: inset 3px 0 0 0 var(--iot-blue-accent);
}

.iot-mainnav__link--account {
    color: var(--iot-yellow) !important;
}

.iot-mainnav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(11, 26, 45, .55);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease;
}

.iot-mainnav-backdrop.show {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 992px) {
    .iot-mainnav {
        position: static;
        height: auto;
        width: 100%;
        max-width: none;
        background: var(--iot-navy-700);
        color: inherit;
        z-index: auto;
        transform: none;
        transition: none;
        display: block;
        overflow: visible;
        border-bottom: 3px solid var(--iot-navy-900);
    }

    .iot-mainnav__header {
        display: none;
    }

    .iot-mainnav__list {
        display: flex;
        flex-wrap: nowrap;
        padding: 0;
    }

    .iot-mainnav__link {
        padding: 13px !important;
        white-space: nowrap;
        min-height: 0;
        border-bottom: 3px solid transparent;
    }

    .iot-mainnav__link:hover,
    .iot-mainnav__link:focus {
        background: var(--iot-blue-accent);
        color: var(--iot-navy-950);
    }

    .iot-mainnav__link.active {
        background: none;
        color: #fff;
        border-bottom-color: var(--iot-blue-accent);
        box-shadow: none;
    }

    .iot-mainnav-backdrop {
        display: none;
    }
}

.iot-header-compact {
    display: none;
    align-items: center;
    gap: 6px;
}

.iot-header-compact__search {
    width: 34px;
    height: 34px;
    flex: none;
}

.iot-header-compact__meta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
}

.iot-action-btn--mini {
    min-height: 24px;
    padding: 2px 6px;
    font-size: 10px;
    gap: 4px;
}

.iot-flag--mini {
    width: 15px;
    height: 11px;
}

.iot-gmt-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--iot-navy-600);
    border: 1px solid var(--iot-navy-500);
    color: #dce6f2;
    border-radius: var(--iot-radius-control);
    padding: 8px 12px;
    font-size: 13px;
}

.iot-gmt-badge--compact {
    justify-content: center;
    font-size: 10px;
    padding: 2px 6px;
    min-height: 24px;
    gap: 4px;
}

@media (max-width: 991.98px) {
    .iot-header-compact {
        display: flex;
    }

    .iot-header__actions .iot-header-full {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .iot-header-compact {
        display: none !important;
    }
}

.iot-search-bar {
    background: var(--iot-navy-600);
    padding: 16px 20px;
}

.iot-search-bar__form {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
}

.iot-search-bar__input {
    flex: 1;
    min-width: 0;
    height: var(--iot-touch-target);
    border: 0;
    border-radius: var(--iot-radius-control) 0 0 var(--iot-radius-control);
    padding: 0 14px;
    font-family: var(--iot-font-body);
    font-size: 14px;
    color: var(--iot-text);
}

.iot-search-bar__submit {
    height: var(--iot-touch-target);
    padding: 0 20px;
    border: 0;
    border-radius: 0 var(--iot-radius-control) var(--iot-radius-control) 0;
    background: var(--iot-green);
    color: #fff;
    font-family: var(--iot-font-body);
    font-weight: 700;
    cursor: pointer;
}

.iot-ad-rail {
    position: sticky;
    top: 56px;
}

.iot-ad-slot {
    border: 1px dashed #c9d3e0;
    border-radius: var(--iot-radius-card);
    background: var(--iot-bg-panel);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.iot-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: var(--iot-font-body);
    font-weight: 700;
    font-size: 13px;
    padding: 8px 16px;
    min-height: var(--iot-touch-target);
    border-radius: var(--iot-radius-control);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.iot-btn--primary {
    background: var(--iot-green);
    color: #fff;
}

.iot-btn--primary:hover,
.iot-btn--primary:focus {
    background: #026a1e;
    color: #fff;
    text-decoration: none;
}

.iot-btn--ghost {
    background: #fff;
    color: var(--iot-text);
    border-color: var(--iot-border-strong);
}

.iot-btn--ghost:hover,
.iot-btn--ghost:focus {
    background: var(--iot-bg-panel);
    color: var(--iot-text);
    text-decoration: none;
}

.iot-card {
    background: #fff;
    border-radius: var(--iot-radius-card);
    box-shadow: var(--iot-shadow-card);
    overflow: hidden;
}

.iot-card + .iot-card {
    margin-top: 14px;
}

.iot-ad-slot-inline {
    margin-top: 16px;
}

.iot-card--padded {
    padding: 24px;
}

.iot-card--filter {
    padding: 18px 20px 16px;
}

.iot-empty-state {
    margin: 0;
    padding: 44px 24px;
    text-align: center;
    font-size: 14px;
    color: #6b7c91;
}

.iot-page-hero__title {
    margin: 0;
    font-family: var(--iot-font-heading);
    font-size: 26px;
    line-height: 1.15;
    color: var(--iot-text);
    letter-spacing: -.01em;
}

.iot-page-hero__desc {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: #4d5f74;
    max-width: 62ch;
}

.iot-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-left: 4px solid var(--iot-blue-accent);
}

.iot-card__title {
    margin: 0;
    font-family: var(--iot-font-heading);
    font-size: 18px;
    color: var(--iot-text);
}

.iot-card__subtitle {
    margin: 3px 0 0;
    font-size: 12.5px;
    color: var(--iot-text-muted);
}

.iot-pill {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
    color: var(--iot-text-muted-2);
    background: #f1f4f8;
    border-radius: var(--iot-radius-pill);
    padding: 4px 11px;
}

.iot-badge-confidence {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 3px 8px;
    border-radius: var(--iot-radius-pill);
    font-size: 12px;
    font-weight: 700;
}

.iot-table-wrap .table {
    margin-bottom: 0;
}

.iot-table-wrap thead th {
    background: var(--iot-bg-panel);
    color: var(--iot-text-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    border-top: 0;
    white-space: nowrap;
}

.iot-mobile-row-card {
    background: #fff;
    border: 1px solid var(--iot-border);
    border-radius: var(--iot-radius-card);
    padding: 12px 14px;
    margin-bottom: 10px;
}

.iot-mobile-row-card:last-child {
    margin-bottom: 0;
}

.iot-breadcrumb {
    padding: 12px 0 0;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--iot-text-muted-2);
}

.iot-breadcrumb a {
    color: var(--iot-text-muted-2);
}

.iot-breadcrumb .current {
    color: var(--iot-text);
    font-weight: 700;
}

.iot-live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e63946;
    display: inline-block;
    flex: none;
    animation: iot-pulse 1.6s ease-in-out infinite;
}

@keyframes iot-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .35; }
}

.iot-stat-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--iot-border);
}

.iot-stat-bar__item {
    padding: 14px 20px;
    border-right: 1px solid var(--iot-border);
}

.iot-stat-bar__item:last-child {
    border-right: 0;
}

.iot-stat-bar__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--iot-text-muted);
}

.iot-stat-bar__value {
    font-family: var(--iot-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--iot-text);
}

.iot-stat-bar__value--won {
    color: var(--iot-green);
}

.iot-stat-bar__value--pending {
    color: #b26a00;
}

@media (max-width: 767.98px) {
    .iot-stat-bar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        border-top: 0;
    }

    .iot-stat-bar__item {
        border-right: 0;
        background: #fff;
        border-radius: var(--iot-radius-card);
        box-shadow: var(--iot-shadow-card);
        padding: 10px 11px;
    }
}

.iot-filter-legend {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    color: var(--iot-text);
}

.iot-filter-legend__dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    display: inline-block;
}

.iot-filter-legend__dot--won {
    background: var(--iot-green);
}

.iot-filter-legend__dot--pending {
    background: #f59b1b;
}

.iot-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: var(--iot-radius-pill);
    white-space: nowrap;
}

.iot-status-pill--won {
    background: #d9f2e0;
    color: var(--iot-green);
}

.iot-status-pill--pending {
    background: #fdecd2;
    color: #b26a00;
}

.iot-status-pill__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.iot-progress {
    display: flex;
    align-items: center;
    gap: 9px;
    flex: 1;
    min-width: 0;
}

.iot-progress__track {
    flex: 1;
    height: 7px;
    background: #e8edf3;
    border-radius: var(--iot-radius-pill);
    overflow: hidden;
    min-width: 34px;
}

.iot-progress__fill {
    height: 100%;
    width: var(--pct, 0%);
    background: #3d5573;
    border-radius: var(--iot-radius-pill);
}

.iot-progress__text {
    font-size: 14px;
    font-weight: 700;
    color: var(--iot-text);
    font-variant-numeric: tabular-nums;
    min-width: 38px;
    text-align: right;
}

.iot-pick-chip {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--iot-text);
    background: #eef2f7;
    border: 1px solid var(--iot-border-strong);
    padding: 5px 9px;
    border-radius: 5px;
    white-space: nowrap;
}

.iot-live-row--won td:first-child {
    border-left: 3px solid var(--iot-green);
}

.iot-live-row--pending td:first-child {
    border-left: 3px solid #f59b1b;
}

.iot-live-row td {
    vertical-align: middle;
}

.iot-live-time {
    font-size: 14px;
    font-weight: 700;
    color: var(--iot-text);
}

.iot-live-meta {
    font-size: 11px;
    color: #6b7c91;
    margin-top: 2px;
}

.iot-live-team {
    display: block;
    font-weight: 700;
    color: var(--iot-text);
}

.iot-live-minute {
    font-size: 12px;
    font-weight: 700;
}

.iot-live-row--won .iot-live-minute {
    color: var(--iot-green);
}

.iot-live-row--pending .iot-live-minute {
    color: #b26a00;
}

.iot-live-score {
    font-family: var(--iot-font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--iot-text);
}

.iot-match-card {
    background: #fff;
    border-radius: var(--iot-radius-card);
    box-shadow: var(--iot-shadow-card);
    padding: 11px 12px;
    margin-bottom: 10px;
}

.iot-match-card:last-child {
    margin-bottom: 0;
}

.iot-match-card--won {
    border-left: 4px solid var(--iot-green);
}

.iot-match-card--pending {
    border-left: 4px solid #f59b1b;
}

.iot-match-card__top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.iot-match-card__league {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    color: var(--iot-text-muted-2);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.iot-match-card__teams {
    flex: 1;
    min-width: 0;
}

.iot-match-card__team {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--iot-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.iot-match-card__score {
    flex: none;
    text-align: right;
}

.iot-match-card__score-value {
    font-family: var(--iot-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--iot-text);
    line-height: 1.05;
    font-variant-numeric: tabular-nums;
}

.iot-match-card__minute {
    font-size: 11px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.iot-match-card--won .iot-match-card__minute {
    color: var(--iot-green);
}

.iot-match-card--pending .iot-match-card__minute {
    color: #b26a00;
}

.iot-match-card__body {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.iot-match-card__footer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding-top: 9px;
    border-top: 1px solid var(--iot-border);
}

.iot-hide-pending .iot-live-row--pending,
.iot-hide-pending .iot-match-card--pending {
    display: none;
}

.iot-check-toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--iot-border-strong);
    background: #fff;
    color: var(--iot-text);
    font-family: var(--iot-font-body);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    min-height: var(--iot-touch-target);
}

.iot-check-toggle input {
    width: 16px;
    height: 16px;
    margin: 0;
}

.iot-footer {
    background: var(--iot-navy-800);
    color: #b9c8dc;
    padding: 26px 20px 34px;
}

.iot-footer a {
    color: #dce6f2;
}

.iot-footer a:hover {
    color: #fff;
}

.iot-footer__inner {
    max-width: 1640px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 28px;
}

.iot-footer__brand-col {
    min-width: 240px;
}

.iot-footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.iot-footer__brand img {
    width: 30px;
    height: 30px;
}

.iot-footer__brand span {
    font-family: var(--iot-font-heading);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.iot-footer__disclaimer {
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.7;
    color: #8fa5bf;
    max-width: 46ch;
}

.iot-footer__app-badge {
    display: inline-block;
    margin-top: 12px;
}

.iot-footer__links-col {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.iot-footer__links {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 13px;
}

.iot-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 3px;
}

.iot-footer__social a {
    width: var(--iot-touch-target);
    height: var(--iot-touch-target);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--iot-navy-600);
    border-radius: var(--iot-radius-control);
}

@media (max-width: 767.98px) {
    .iot-footer {
        padding: 18px 16px 34px;
    }

    .iot-footer__inner {
        flex-direction: column;
        gap: 14px;
    }

    .iot-footer__brand img {
        width: 26px;
        height: 26px;
    }

    .iot-footer__brand span {
        font-size: 15px;
    }

    .iot-footer__links {
        flex-direction: row;
        gap: 14px;
        font-size: 12.5px;
    }

    .iot-footer__disclaimer {
        font-size: 11.5px;
        max-width: none;
    }
}

#mySiteModal {
    top: 110px;
}

.adBanner {
    height: 2px;
    width: 2px;
    visibility: hidden;
}

body {
    background-color: var(--iot-bg-page);
}

.odd-link,
.match-link {
    color: blue !important;
}

.iot-ta-right { text-align: right; }
.iot-ta-center { text-align: center; }

.iot-accent--misli   { --accent: #007c23; --accent-text: #007c23; }
.iot-accent--banko   { --accent: #0b4c86; --accent-text: #0b4c86; }
.iot-accent--altin   { --accent: #a9821c; --accent-text: #7a5e11; }
.iot-accent--gumus   { --accent: #5b6e85; --accent-text: #4a5b70; }
.iot-accent--surpriz { --accent: #b3401f; --accent-text: #b3401f; }

.iot-shell {
    max-width: 1640px;
    margin: 0 auto;
    padding: 0 20px;
}

.iot-shell__main {
    max-width: 1070px;
    margin: 0 auto;
    min-width: 0;
    padding-top: 14px;
}

@media (max-width: 991.98px) {
    .iot-shell {
        padding: 0 12px;
    }

    .iot-shell__main {
        max-width: none;
        padding-top: 12px;
    }
}

.iot-home__head {
    display: flex;
    align-items: flex-end;
    gap: 18px;
    flex-wrap: wrap;
}

.iot-home__title {
    margin: 0;
    flex: 1 1 480px;
    min-width: 0;
    font-family: var(--iot-font-heading);
    font-size: 30px;
    line-height: 1.15;
    color: #152943;
    letter-spacing: -.01em;
}

@media (max-width: 991.98px) {
    .iot-home__head {
        gap: 5px;
    }

    .iot-home__title {
        flex: 1 1 100%;
        font-size: 21px;
        line-height: 1.2;
    }
}

.iot-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.iot-stat-card {
    background: #fff;
    border-radius: 11px;
    box-shadow: var(--iot-shadow-card);
    padding: 14px 17px 15px;
    border-top: 3px solid #152943;
}

.iot-stat-card--blue  { border-top-color: #0b4c86; }
.iot-stat-card--green { border-top-color: #007c23; }
.iot-stat-card--gold  { border-top-color: #a9821c; }

.iot-stat-card__label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #5b6e85;
}

.iot-stat-card__value {
    font-family: var(--iot-font-heading);
    font-size: 26px;
    font-weight: 700;
    color: #152943;
    line-height: 1.1;
    margin-top: 4px;
    font-variant-numeric: tabular-nums;
}

.iot-stat-card__note {
    font-size: 11.5px;
    color: #5b6e85;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .iot-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 11px;
    }

    .iot-stat-card {
        border-radius: 10px;
        padding: 11px 13px 12px;
    }

    .iot-stat-card__label {
        font-size: 9.5px;
        letter-spacing: .07em;
    }

    .iot-stat-card__value {
        font-size: 21px;
        margin-top: 3px;
    }

    .iot-stat-card__note {
        font-size: 10.5px;
    }
}

.iot-bandbar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.iot-bandbar__label {
    font-family: var(--iot-font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #46586d;
}

.iot-bandbar__chips {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    flex: 1 1 auto;
    min-width: 0;
}

@media (min-width: 992px) {
    .iot-bandbar {
        flex-wrap: nowrap;
    }
}

.iot-band-chip {
    flex: none;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d7dfe8;
    background: #fff;
    color: #152943;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 700;
    min-height: 38px;
    box-sizing: border-box;
    white-space: nowrap;
}

.iot-band-chip:hover,
.iot-band-chip:focus {
    text-decoration: none;
    border-color: #0b4c86;
    color: #152943;
}

.iot-band-chip__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex: none;
    background: var(--accent, #152943);
}

.iot-band-chip__pct {
    color: #5b6e85;
    font-weight: 400;
    font-variant-numeric: tabular-nums;
}

.iot-bandbar__sort {
    display: flex;
    align-items: center;
    gap: 8px;
}

.iot-bandbar__sort-label {
    font-size: 11.5px;
    color: #46586d;
}

.iot-segmented {
    display: flex;
    gap: 2px;
    background: #dfe5ec;
    padding: 3px;
    border-radius: 8px;
}

.iot-segmented__btn {
    border: 0;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 11px;
    border-radius: 6px;
    background: transparent;
    color: #42536a;
}

.iot-segmented__btn.is-active {
    background: #fff;
    color: #152943;
}

@media (max-width: 991.98px) {
    .iot-bandbar {
        gap: 9px;
        margin-top: 11px;
    }

    .iot-bandbar__label {
        display: none;
    }

    .iot-bandbar__chips {
        flex: 1 1 100%;
    }

    .iot-band-chip {
        padding: 9px 12px;
        font-size: 12px;
        min-height: 40px;
        gap: 7px;
    }

    .iot-bandbar__sort {
        flex: 1 1 100%;
        gap: 7px;
    }

    .iot-segmented {
        flex: 1;
    }

    .iot-segmented__btn {
        flex: 1;
        font-size: 11.5px;
        padding: 9px 5px;
        min-height: 40px;
    }
}

.iot-home__body {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 12px;
}

.iot-home__col {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.iot-home__aside {
    flex: 0 0 318px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 56px;
}

@media (max-width: 991.98px) {

    .iot-home__body {
        flex-direction: column;
        align-items: stretch;
        gap: 11px;
        margin-top: 11px;
    }

    .iot-home__col,
    .iot-home__aside {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        gap: 11px;
    }

    .iot-home__aside {
        position: static;
    }
}

.iot-coupon {
    background: #fff;
    border-radius: 11px;
    box-shadow: var(--iot-shadow-card);
    overflow: hidden;
    border-left: 4px solid var(--accent, #152943);
}

.iot-coupon__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px 0;
    flex-wrap: wrap;
}

.iot-coupon__title {
    margin: 0;
    font-family: var(--iot-font-heading);
    font-size: 19px;
    font-weight: 700;
    color: #152943;
}

.iot-coupon__band {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--accent-text, var(--accent, #152943));
    background: #f4f7fa;
    border: 1px solid #dfe5ec;
    border-radius: 999px;
    padding: 3px 9px;
}

.iot-coupon__meta {
    font-size: 12px;
    color: #5b6e85;
}

.iot-coupon__meta strong {
    color: #152943;
    font-variant-numeric: tabular-nums;
}

.iot-coupon__tablewrap {
    overflow-x: auto;
    margin-top: 11px;
}

.iot-coupon__table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    min-width: 716px;
}

.iot-coupon__table thead th {
    background: #f4f7fa;
    color: #4d5f74;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-align: left;
    padding: 10px 8px;
}

.iot-coupon__table thead th:first-child { padding-left: 20px; }
.iot-coupon__table thead th:last-child  { padding-right: 20px; }

.iot-coupon__table th:nth-child(1) { width: 104px; }
.iot-coupon__table th:nth-child(3) { width: 152px; }
.iot-coupon__table th:nth-child(4) { width: 160px; }
.iot-coupon__table th:nth-child(5) { width: 80px; }

.iot-coupon__table tbody tr {
    border-top: 1px solid #eef2f6;
}

.iot-coupon__table tbody tr:hover {
    background: #f4f9fd;
}

.iot-coupon__table td {
    padding: 10px 8px;
    vertical-align: middle;
}

.iot-coupon__table td:first-child { padding-left: 20px; }
.iot-coupon__table td:last-child  { padding-right: 20px; }

.iot-coupon__hour {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: #152943;
    font-variant-numeric: tabular-nums;
}

.iot-coupon__day {
    display: block;
    font-size: 11px;
    color: #5b6e85;
    font-variant-numeric: tabular-nums;
}

.iot-cd {
    display: block;
    font-size: 10px;
    margin-top: 2px;
}

.iot-cd--far  { color: #5b6e85; }
.iot-cd--soon { color: #8a3410; }
.iot-cd--live { color: #b3401f; }

.iot-coupon__match .match-link,
.iot-coupon__match .match-link:hover {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: #0b4c86 !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.iot-pick .odd-link {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    color: #0b4c86 !important;
    border: 1px solid #cfe0ee;
    background: #f2f8fc;
    border-radius: 6px;
    padding: 5px 9px;
}

.iot-pick .odd-link:hover {
    text-decoration: none;
    border-color: #0b4c86;
}

.iot-pct {
    display: flex;
    align-items: center;
    gap: 8px;
}

.iot-pct--hi   { --bar: #007c23; --txt: #007c23; }
.iot-pct--mid  { --bar: #0b4c86; --txt: #0b4c86; }
.iot-pct--low  { --bar: #a9821c; --txt: #856013; }
.iot-pct--vlow { --bar: #8496ab; --txt: #5b6e85; }

.iot-pct__track {
    flex: 1;
    min-width: 0;
    height: 8px;
    border-radius: 4px;
    background: #eef2f6;
    overflow: hidden;
}

.iot-pct__fill {
    display: block;
    height: 8px;
    border-radius: 4px;
    width: var(--pct, 0%);
    background: var(--bar, #8496ab);
}

.iot-pct__text {
    flex: none;
    min-width: 38px;
    text-align: right;
    font-size: 13px;
    font-weight: 700;
    color: var(--txt, #5b6e85);
    font-variant-numeric: tabular-nums;
}

.iot-odd {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid transparent;
}

.iot-odd__value {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 13.5px;
    font-weight: 700;
    color: #152943;
    font-variant-numeric: tabular-nums;
}

.iot-odd__mark {
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.iot-odd--win {
    background: #e6f6ea;
    border-color: #b9e2c4;
}

.iot-odd--win .iot-odd__value,
.iot-odd--win .iot-odd__mark {
    color: #00641c;
}

.iot-odd--lose {
    background: #fdeeee;
    border-color: #f0c4c4;
}

.iot-odd--lose .iot-odd__value,
.iot-odd--lose .iot-odd__mark {
    color: #a3121a;
}

.iot-odd__score {
    display: block;
    font-size: 10px;
    color: #5b6e85;
    margin-top: 2px;
    font-variant-numeric: tabular-nums;
}

.iot-coupon__foot {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    padding: 12px 20px 14px;
    border-top: 1px solid #eef2f6;
}

.iot-coupon__link {
    font-size: 12.5px;
    font-weight: 700;
    color: #0b4c86;
}

.iot-home__more a {
    font-size: 13px;
    font-weight: 700;
    color: #0b4c86;
}

.iot-coupon__rows {
    display: flex;
    flex-direction: column;
    margin-top: 9px;
}

.iot-crow {
    padding: 10px 13px;
    border-top: 1px solid #eef2f6;
}

.iot-crow__top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.iot-crow__hour {
    flex: none;
    font-size: 11.5px;
    font-weight: 700;
    color: #152943;
    font-variant-numeric: tabular-nums;
}

.iot-crow__top .iot-cd {
    display: inline;
    margin-top: 0;
}

.iot-crow__match {
    margin-top: 3px;
}

.iot-crow__match .match-link,
.iot-crow__match .match-link:hover {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #0b4c86 !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.iot-crow__bottom {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.iot-crow__bottom .iot-pick {
    flex: none;
}

.iot-crow__bottom .iot-pick .odd-link {
    font-size: 11.5px;
    padding: 4px 8px;
}

.iot-crow__bottom .iot-pct {
    flex: 1;
    min-width: 0;
}

.iot-crow__bottom .iot-pct__track,
.iot-crow__bottom .iot-pct__fill {
    height: 7px;
}

.iot-crow__bottom .iot-pct__text {
    min-width: 34px;
    font-size: 12.5px;
}

.iot-crow__bottom .iot-odd {
    flex: none;
    padding: 3px 7px;
    gap: 5px;
}

.iot-crow__bottom .iot-odd__value {
    font-size: 12.5px;
}

.iot-crow__bottom .iot-odd__mark {
    font-size: 10px;
}

@media (max-width: 991.98px) {
    .iot-coupon {
        border-radius: 10px;
    }

    .iot-coupon__head {
        padding: 12px 13px 0;
        gap: 8px;
    }

    .iot-coupon__title {
        font-size: 16px;
    }

    .iot-coupon__band {
        font-size: 9.5px;
        letter-spacing: .05em;
        padding: 3px 8px;
    }

    .iot-coupon__meta {
        flex: 1 1 100%;
        font-size: 11px;
    }

    .iot-coupon__foot {
        padding: 11px 13px 13px;
        gap: 8px 14px;
    }
}

.iot-panel {
    background: #fff;
    border-radius: 11px;
    box-shadow: var(--iot-shadow-card);
    overflow: hidden;
}

.iot-panel--padded {
    padding: 15px 16px 17px;
}

.iot-panel__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px 0;
}

.iot-panel__title {
    margin: 0;
    font-family: var(--iot-font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #152943;
}

.iot-panel__toggle {
    margin-left: auto;
    border: 1px solid #d7dfe8;
    background: #f8fafc;
    color: #4d5f74;
    font: inherit;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 9px;
    border-radius: 6px;
    cursor: pointer;
}

.iot-panel__toggle[aria-pressed="true"] {
    background: #fdefe6;
    border-color: #f2cdb4;
    color: #8a3410;
}

.iot-panel__foot {
    padding: 12px 16px 14px;
}

.iot-wide-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f7fa;
    border: 1px solid #d7dfe8;
    color: #0b4c86;
    font-size: 13px;
    font-weight: 700;
    padding: 11px;
    border-radius: 8px;
    min-height: 44px;
    box-sizing: border-box;
}

.iot-wide-btn:hover,
.iot-wide-btn:focus {
    text-decoration: none;
    border-color: #0b4c86;
    color: #0b4c86;
}

.iot-results {
    overflow-x: auto;
    margin-top: 10px;
}

.iot-results__table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.iot-results__table thead th {
    background: #f4f7fa;
    color: #4d5f74;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-align: left;
    padding: 9px 4px;
}

.iot-results__table thead th:first-child { padding: 9px 8px 9px 16px; }
.iot-results__table thead th:last-child  { padding: 9px 16px 9px 4px; }

.iot-results__table th:nth-child(2),
.iot-results__table th:nth-child(3) {
    width: 52px;
}

.iot-results__table tbody tr {
    border-top: 1px solid #eef2f6;
}

.iot-results__table tbody tr.is-turned {
    background: #fffaf6;
}

.iot-results__table td {
    padding: 9px 4px;
    vertical-align: middle;
}

.iot-results__table td:first-child { padding: 9px 8px 9px 16px; }
.iot-results__table td:last-child  { padding: 9px 16px 9px 4px; }

.iot-results__table .match-link,
.iot-results__table .match-link:hover {
    display: block;
    font-size: 12.5px;
    color: #0b4c86 !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.iot-results__ht {
    font-size: 12px;
    color: #5b6e85;
    font-variant-numeric: tabular-nums;
}

.iot-results__ft {
    display: inline-block;
    min-width: 40px;
    padding: 3px 7px;
    border-radius: 5px;
    background: #152943;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    text-align: center;
}

.iot-turned {
    display: inline-block;
    margin-top: 2px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .05em;
    color: #8a3410;
    background: #fdefe6;
    border: 1px solid #f2cdb4;
    border-radius: 4px;
    padding: 1px 5px;
}

.iot-results__list {
    display: flex;
    flex-direction: column;
    margin-top: 9px;
}

.iot-rrow {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    border-top: 1px solid #eef2f6;
}

.iot-rrow.is-turned {
    background: #fffaf6;
}

.iot-rrow__main {
    flex: 1;
    min-width: 0;
}

.iot-rrow__main .match-link,
.iot-rrow__main .match-link:hover {
    display: block;
    font-size: 12.5px;
    color: #0b4c86 !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.iot-rrow__ht {
    flex: none;
    font-size: 11px;
    color: #5b6e85;
    font-variant-numeric: tabular-nums;
}

.iot-rrow .iot-results__ft {
    flex: none;
    min-width: 42px;
}

@media (max-width: 991.98px) {
    .iot-panel {
        border-radius: 10px;
    }

    .iot-panel__head {
        padding: 13px 13px 0;
        gap: 9px;
    }

    .iot-panel__title {
        font-size: 16px;
    }

    .iot-panel__toggle {
        padding: 8px 10px;
        border-radius: 7px;
        min-height: 38px;
    }

    .iot-panel__foot {
        padding: 11px 13px 13px;
    }

    .iot-panel--padded {
        padding: 13px 13px 15px;
    }

    .iot-wide-btn {
        padding: 12px;
        min-height: 46px;
    }
}

.iot-explore__title {
    margin: 0 0 3px;
    font-family: var(--iot-font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #152943;
}

.iot-explore__subtitle {
    margin: 0 0 10px;
    font-size: 11.5px;
    color: #5b6e85;
    line-height: 1.5;
}

.iot-explore__list {
    display: flex;
    flex-direction: column;
}

.iot-explore__item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 0;
    border-top: 1px solid #f1f4f8;
    font-size: 13px;
    color: #0b4c86;
    min-height: 44px;
    box-sizing: border-box;
}

.iot-explore__item:hover {
    text-decoration: none;
}

.iot-explore__item span:first-child {
    flex: 1;
    min-width: 0;
}

.iot-explore__arrow {
    flex: none;
    color: #5b6e85;
}

@media (max-width: 991.98px) {
    .iot-explore__title {
        font-size: 15px;
        margin-bottom: 2px;
    }

    .iot-explore__subtitle {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .iot-explore__item {
        padding: 12px 0;
    }
}

.iot-article {
    background: #fff;
    border-radius: 11px;
    box-shadow: var(--iot-shadow-card);
    margin-top: 16px;
    padding: 26px 30px 30px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.iot-article__body {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 84ch;
}

.iot-article__body h2 {
    margin: 28px 0 12px;
    font-family: var(--iot-font-heading);
    font-size: 24px;
    line-height: 1.3;
    color: #152943;
    padding-bottom: 8px;
    border-bottom: 2px solid #eef2f6;
}

.iot-article__body > h2:first-child {
    margin-top: 0;
}

.iot-article__body h3 {
    margin: 18px 0 8px;
    font-family: var(--iot-font-heading);
    font-size: 18px;
    line-height: 1.35;
    color: #1b3454;
}

.iot-article__body p {
    margin: 0 0 14px;
    font-size: 14.5px;
    line-height: 1.8;
    color: #33404f;
}

.iot-article__body a {
    color: #0b4c86;
    text-decoration: underline !important;
    text-underline-offset: 2px;
}

.iot-article__body ul,
.iot-article__body ol {
    margin: 0 0 14px;
    padding-left: 20px;
    font-size: 14.5px;
    line-height: 1.8;
    color: #33404f;
}

.iot-article__body [itemtype*="FAQPage"] {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.iot-article__body [itemtype*="Question"] {
    border: 1px solid #eef2f6;
    border-radius: 10px;
    padding: 14px 17px 15px;
    background: #fbfcfe;
}

.iot-article__body [itemtype*="Question"] > h3 {
    margin: 0 0 7px;
    font-size: 16.5px;
    line-height: 1.35;
    color: #1b3454;
}

.iot-article__body [itemtype*="Answer"] p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.75;
}

.iot-article__body [itemtype*="Answer"] p:last-child {
    margin-bottom: 0;
}

.iot-article__toc {
    flex: 0 0 206px;
    position: sticky;
    top: 56px;
    align-self: flex-start;
}

.iot-article__toc-title {
    margin: 0 0 9px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #5b6e85;
}

.iot-article__toc-list {
    display: flex;
    flex-direction: column;
}

.iot-article__toc-list a {
    font-size: 12.5px;
    color: #0b4c86;
    padding: 8px 0;
    border-top: 1px solid #f1f4f8;
    line-height: 1.4;
}

@media (max-width: 991.98px) {
    .iot-article {
        border-radius: 10px;
        margin-top: 11px;
        padding: 15px 14px 18px;
        gap: 0;
    }

    .iot-article__toc {
        display: none;
    }

    .iot-article__body h2 {
        margin: 20px 0 10px;
        font-size: 19px;
        padding-bottom: 7px;
    }

    .iot-article__body h3 {
        margin: 14px 0 7px;
        font-size: 15.5px;
    }

    .iot-article__body p,
    .iot-article__body ul,
    .iot-article__body ol {
        margin-bottom: 12px;
        font-size: 13.5px;
    }

    .iot-article__body [itemtype*="Question"] {
        border-radius: 9px;
        padding: 12px 13px 13px;
    }

    .iot-article__body [itemtype*="Question"] > h3 {
        margin: 0 0 6px;
        font-size: 15px;
    }

    .iot-article__body [itemtype*="Answer"] p {
        font-size: 13px;
    }
}

.iot-shell__main .share-widget {
    margin-top: 14px;
}

@media (max-width: 991.98px) {
    .iot-shell__main .share-widget {
        margin-top: 11px;
    }
}
