/* GoBet Bookmaker List - Public Styles (Light Theme Only) */

.gobet-bml-wrap {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 100%;
    color: #1a1a1a;
    line-height: 1.5;
}
.gobet-bml-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #000;
}

/* Controls bar */
.gobet-bml-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

/* Filter tabs */
.gobet-bml-filters {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.gobet-bml-filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #555;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: inherit;
    line-height: 1.3;
}
.gobet-bml-filter:hover {
    border-color: #00FD71;
    background: #f0fef5;
    color: #000;
}
.gobet-bml-filter.active {
    background: #000;
    color: #00FD71;
    border-color: #000;
}
.gobet-bml-filter-count {
    font-size: 11px;
    font-weight: 600;
    padding: 1px 7px;
    border-radius: 10px;
    background: rgba(0,0,0,0.08);
    color: inherit;
}
.gobet-bml-filter.active .gobet-bml-filter-count {
    background: rgba(0, 253, 113, 0.2);
}

/* Search */
.gobet-bml-search {
    position: relative;
    flex: 1;
    min-width: 200px;
}
.gobet-bml-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    overflow: hidden;
}
.gobet-bml-search input {
    width: 100%;
    padding: 9px 12px 9px 40px !important;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    color: #1a1a1a;
    font-family: inherit;
    transition: border-color 0.15s;
}
.gobet-bml-search input:focus {
    outline: none;
    border-color: #00FD71;
    box-shadow: 0 0 0 3px rgba(0, 253, 113, 0.12);
}
.gobet-bml-search input::placeholder {
    color: #aaa;
}

/* Alpha nav */
.gobet-bml-alpha-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 20px;
}
.gobet-bml-alpha-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #fff;
    color: #888;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.12s ease;
    font-family: inherit;
}
.gobet-bml-alpha-btn:hover {
    background: #000;
    color: #00FD71;
    border-color: #000;
}
.gobet-bml-alpha-btn.active {
    background: #000;
    color: #00FD71;
    border-color: #000;
}
.gobet-bml-alpha-btn.disabled {
    opacity: 0.25;
    pointer-events: none;
}

/* Letter groups */
.gobet-bml-letter-group {
    margin-bottom: 24px;
}
.gobet-bml-letter-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid #00FD71;
}
.gobet-bml-letter {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    line-height: 1;
}
.gobet-bml-letter-count {
    font-size: 11px;
    font-weight: 500;
    color: #999;
}

/* The ordered list */
ol.gobet-bml-list {
    list-style: none;
    counter-reset: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 6px 16px;
    padding: 0;
    margin: 0;
}

/* --- Base item --- */
li.gobet-bml-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    transition: background 0.1s ease;
    gap: 8px;
    border: 1px solid transparent;
}
li.gobet-bml-item:hover {
    background: #f5f5f5;
}

/* --- PARTNER item (prominent) --- */
li.gobet-bml-item.is-partner {
    background: #f0fef5;
    border-color: #c0f5d4;
}
li.gobet-bml-item.is-partner:hover {
    background: #e0fde9;
    border-color: #8aeaab;
}

/* --- NON-PARTNER active item (less prominent) --- */
li.gobet-bml-item.is-non-partner {
    color: #777;
}
li.gobet-bml-item.is-non-partner .gobet-bml-item-name {
    color: #777;
    font-weight: 400;
}

/* --- INACTIVE item --- */
li.gobet-bml-item.is-inactive {
    opacity: 0.45;
    text-decoration: line-through;
    color: #999;
}
li.gobet-bml-item.is-inactive .gobet-bml-item-name {
    color: #999;
}

/* --- COMING SOON item --- */
li.gobet-bml-item.is-coming-soon {
    background: #fffbeb;
    border-color: #fde68a;
    opacity: 0.75;
}
li.gobet-bml-item.is-coming-soon:hover {
    background: #fef3c7;
    border-color: #fcd34d;
}
li.gobet-bml-item.is-coming-soon .gobet-bml-item-name {
    color: #92400e;
    font-weight: 500;
}

/* Item number */
.gobet-bml-item-num {
    min-width: 28px;
    font-size: 11px;
    color: #bbb;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}

/* Item name */
.gobet-bml-item-name {
    flex: 1;
    font-weight: 500;
    color: #000;
}
.gobet-bml-item-name .gobet-bml-highlight {
    background: rgba(0, 253, 113, 0.25);
    border-radius: 2px;
    padding: 0 1px;
}

/* Inactive badge */
.gobet-bml-inactive-badge {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #999;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
}

/* Coming Soon badge */
.gobet-bml-coming-soon-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #92400e;
    background: #fef3c7;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Exclusive code pill */
.gobet-bml-code {
    font-size: 10px;
    font-weight: 600;
    color: #000;
    background: rgba(0, 253, 113, 0.2);
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}
.gobet-bml-code strong {
    font-weight: 700;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* CTA button */
.gobet-bml-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: #FD195B;
    padding: 5px 14px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.12s;
}
.gobet-bml-cta:hover {
    background: #d9134e;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}
.gobet-bml-cta svg {
    width: 10px;
    height: 10px;
}

/* No results */
.gobet-bml-no-results {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .gobet-bml-controls {
        flex-direction: column;
        align-items: stretch;
    }
    .gobet-bml-filters {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    .gobet-bml-filter {
        white-space: nowrap;
        justify-content: center;
        text-align: center;
    }
    .gobet-bml-filter:last-child {
        grid-column: 1 / -1;
    }
    ol.gobet-bml-list {
        grid-template-columns: 1fr;
    }
    .gobet-bml-cta {
        padding: 4px 8px;
        font-size: 10px;
    }
}
