/* betbd.click - Core Stylesheet */
/* Prefix: g33b- */
/* Colors: #2C3E50 | #6495ED | #9AFF9A | #E0FFFF | #4682B4 */

:root {
    --g33b-primary: #2C3E50;
    --g33b-secondary: #6495ED;
    --g33b-accent: #9AFF9A;
    --g33b-light: #E0FFFF;
    --g33b-steel: #4682B4;
    --g33b-bg: #1a2634;
    --g33b-card-bg: #223344;
    --g33b-text: #E0FFFF;
    --g33b-text-dim: #9aafbf;
    --g33b-border: #3a5068;
    --g33b-shadow: rgba(0, 0, 0, 0.3);
    --g33b-radius: 8px;
    --g33b-transition: 0.3s ease;
    font-size: 62.5%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hind Siliguri', sans-serif;
    background: var(--g33b-bg);
    color: var(--g33b-text);
    line-height: 1.5rem;
    max-width: 430px;
    margin: 0 auto;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: var(--g33b-secondary);
    text-decoration: none;
    transition: color var(--g33b-transition);
}

a:hover {
    color: var(--g33b-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== HEADER ===== */
.g33b-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    background: var(--g33b-primary);
    z-index: 1000;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--g33b-steel);
    box-shadow: 0 2px 12px var(--g33b-shadow);
}

.g33b-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.g33b-logo img {
    width: 28px;
    height: 28px;
    border-radius: 4px;
}

.g33b-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--g33b-light);
    letter-spacing: 0.5px;
}

.g33b-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.g33b-btn-register {
    background: linear-gradient(135deg, #9AFF9A, #4682B4);
    color: var(--g33b-primary);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--g33b-transition), box-shadow var(--g33b-transition);
}

.g33b-btn-register:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(154, 255, 154, 0.4);
}

.g33b-btn-login {
    background: transparent;
    color: var(--g33b-light);
    border: 1.5px solid var(--g33b-steel);
    padding: 0.45rem 0.9rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--g33b-transition);
}

.g33b-btn-login:hover {
    background: rgba(100, 149, 237, 0.2);
}

.g33b-menu-btn {
    background: none;
    border: none;
    color: var(--g33b-light);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.2rem;
    display: flex;
    align-items: center;
}

/* ===== MOBILE MENU ===== */
.g33b-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
}

.g33b-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    max-width: 300px;
    height: 100%;
    background: var(--g33b-primary);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform var(--g33b-transition);
    padding: 2rem 1.5rem;
    overflow-y: auto;
}

.g33b-mobile-menu-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--g33b-accent);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--g33b-border);
}

.g33b-mobile-menu a {
    display: block;
    padding: 0.8rem 0;
    font-size: 1.4rem;
    color: var(--g33b-light);
    border-bottom: 1px solid rgba(58, 80, 104, 0.5);
    transition: color var(--g33b-transition), padding-left var(--g33b-transition);
}

.g33b-mobile-menu a:hover {
    color: var(--g33b-accent);
    padding-left: 0.5rem;
}

/* ===== MAIN CONTENT ===== */
main {
    padding-top: 56px;
}

@media (max-width: 768px) {
    main {
        padding-bottom: 80px;
    }
}

.g33b-container {
    padding: 1rem;
    max-width: 430px;
    margin: 0 auto;
}

/* ===== CAROUSEL ===== */
.g33b-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--g33b-radius);
    margin: 0.5rem 0;
}

.g33b-slide {
    display: none;
    width: 100%;
    cursor: pointer;
}

.g33b-slide img {
    width: 100%;
    height: auto;
    border-radius: var(--g33b-radius);
}

.g33b-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 0;
}

.g33b-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--g33b-border);
    cursor: pointer;
    transition: background var(--g33b-transition), transform var(--g33b-transition);
}

.g33b-dot-active {
    background: var(--g33b-secondary) !important;
    transform: scale(1.3);
}

/* ===== SECTION TITLES ===== */
.g33b-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--g33b-accent);
    margin: 1.5rem 0 0.8rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--g33b-steel);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.g33b-section-title i {
    font-size: 1.8rem;
    color: var(--g33b-secondary);
}

/* ===== GAME GRID ===== */
.g33b-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    padding: 0.5rem 0;
}

.g33b-game-item {
    text-align: center;
    cursor: pointer;
    transition: transform var(--g33b-transition);
    border-radius: var(--g33b-radius);
    padding: 0.3rem;
}

.g33b-game-item:hover {
    transform: scale(1.05);
    background: rgba(100, 149, 237, 0.1);
}

.g33b-game-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--g33b-border);
}

.g33b-game-name {
    font-size: 1rem;
    color: var(--g33b-text-dim);
    margin-top: 0.2rem;
    line-height: 1.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ===== H1 TITLE ===== */
.g33b-h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--g33b-light);
    text-align: center;
    margin: 1rem 0;
    line-height: 2.2rem;
}

.g33b-h1 span {
    color: var(--g33b-secondary);
}

/* ===== CARDS ===== */
.g33b-card {
    background: var(--g33b-card-bg);
    border-radius: var(--g33b-radius);
    padding: 1.2rem;
    margin: 0.8rem 0;
    border: 1px solid var(--g33b-border);
}

.g33b-card h2 {
    font-size: 1.5rem;
    color: var(--g33b-secondary);
    margin-bottom: 0.6rem;
}

.g33b-card h3 {
    font-size: 1.3rem;
    color: var(--g33b-accent);
    margin-bottom: 0.4rem;
}

.g33b-card p {
    font-size: 1.2rem;
    color: var(--g33b-text-dim);
    line-height: 1.6rem;
    margin-bottom: 0.5rem;
}

/* ===== PROMO LINK ===== */
.g33b-promo-link {
    display: inline-block;
    color: var(--g33b-accent);
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color var(--g33b-transition);
    text-decoration: underline;
}

.g33b-promo-link:hover {
    color: var(--g33b-secondary);
}

.g33b-promo-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--g33b-accent), var(--g33b-steel));
    color: var(--g33b-primary);
    font-weight: 700;
    font-size: 1.3rem;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: transform var(--g33b-transition), box-shadow var(--g33b-transition);
    text-align: center;
    margin: 0.5rem 0;
}

.g33b-promo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 12px rgba(154, 255, 154, 0.3);
}

/* ===== FEATURES GRID ===== */
.g33b-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin: 0.8rem 0;
}

.g33b-feature-item {
    background: var(--g33b-card-bg);
    border-radius: var(--g33b-radius);
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--g33b-border);
    transition: transform var(--g33b-transition);
}

.g33b-feature-item:hover {
    transform: translateY(-2px);
}

.g33b-feature-item i {
    font-size: 2.4rem;
    color: var(--g33b-secondary);
    margin-bottom: 0.4rem;
}

.g33b-feature-item h3 {
    font-size: 1.2rem;
    color: var(--g33b-light);
    margin-bottom: 0.3rem;
}

.g33b-feature-item p {
    font-size: 1rem;
    color: var(--g33b-text-dim);
    line-height: 1.3rem;
}

/* ===== FOOTER ===== */
.g33b-footer {
    background: var(--g33b-primary);
    padding: 1.5rem 1rem;
    margin-top: 1.5rem;
    border-top: 2px solid var(--g33b-steel);
}

.g33b-footer-desc {
    font-size: 1.1rem;
    color: var(--g33b-text-dim);
    line-height: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.g33b-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.g33b-footer-links a {
    font-size: 1.1rem;
    color: var(--g33b-secondary);
    padding: 0.3rem 0.6rem;
    background: rgba(100, 149, 237, 0.1);
    border-radius: 4px;
    transition: background var(--g33b-transition);
}

.g33b-footer-links a:hover {
    background: rgba(100, 149, 237, 0.25);
}

.g33b-footer-copy {
    text-align: center;
    font-size: 1rem;
    color: var(--g33b-text-dim);
    opacity: 0.7;
}

/* ===== BOTTOM NAV ===== */
.g33b-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    height: 60px;
    background: var(--g33b-primary);
    border-top: 2px solid var(--g33b-steel);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 12px var(--g33b-shadow);
}

.g33b-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 56px;
    cursor: pointer;
    color: var(--g33b-text-dim);
    transition: color var(--g33b-transition), transform var(--g33b-transition);
    text-decoration: none;
    border: none;
    background: none;
    padding: 0.2rem;
}

.g33b-bottom-nav-item:hover {
    color: var(--g33b-accent);
    transform: scale(1.1);
}

.g33b-bottom-nav-item.active {
    color: var(--g33b-secondary);
}

.g33b-bottom-nav-item i,
.g33b-bottom-nav-item .material-symbols-outlined {
    font-size: 22px;
    margin-bottom: 0.1rem;
}

.g33b-bottom-nav-item span {
    font-size: 1rem;
    line-height: 1.2rem;
}

.g33b-bottom-nav-item.active span {
    color: var(--g33b-secondary);
    font-weight: 600;
}

@media (min-width: 769px) {
    .g33b-bottom-nav {
        display: none;
    }
}

/* ===== BACK TO TOP ===== */
.g33b-back-top {
    display: none;
    position: fixed;
    bottom: 72px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--g33b-secondary);
    color: #fff;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    z-index: 999;
    font-size: 1.6rem;
    box-shadow: 0 2px 8px var(--g33b-shadow);
    transition: transform var(--g33b-transition);
}

.g33b-back-top:hover {
    transform: scale(1.1);
}

/* ===== WINNER TICKER ===== */
.g33b-winner-ticker {
    background: var(--g33b-card-bg);
    border-radius: var(--g33b-radius);
    padding: 0.6rem 1rem;
    margin: 0.8rem 0;
    overflow: hidden;
    border: 1px solid var(--g33b-border);
}

.g33b-winner-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    color: var(--g33b-text-dim);
    padding: 0.3rem 0;
}

.g33b-winner-row .g33b-amount {
    color: var(--g33b-accent);
    font-weight: 700;
}

/* ===== TESTIMONIAL ===== */
.g33b-testimonial {
    background: var(--g33b-card-bg);
    border-radius: var(--g33b-radius);
    padding: 1rem;
    margin: 0.6rem 0;
    border-left: 3px solid var(--g33b-secondary);
}

.g33b-testimonial p {
    font-size: 1.1rem;
    color: var(--g33b-text-dim);
    font-style: italic;
    margin-bottom: 0.4rem;
}

.g33b-testimonial .g33b-author {
    font-size: 1rem;
    color: var(--g33b-secondary);
    font-weight: 600;
    font-style: normal;
}

/* ===== PAYMENT GRID ===== */
.g33b-payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin: 0.8rem 0;
}

.g33b-payment-item {
    background: var(--g33b-card-bg);
    border-radius: 6px;
    padding: 0.5rem 0.8rem;
    font-size: 1.1rem;
    color: var(--g33b-text-dim);
    border: 1px solid var(--g33b-border);
}

/* ===== APP CTA ===== */
.g33b-app-cta {
    background: linear-gradient(135deg, var(--g33b-steel), var(--g33b-primary));
    border-radius: var(--g33b-radius);
    padding: 1.2rem;
    text-align: center;
    margin: 0.8rem 0;
    border: 1px solid var(--g33b-steel);
}

.g33b-app-cta h3 {
    font-size: 1.4rem;
    color: var(--g33b-light);
    margin-bottom: 0.5rem;
}

.g33b-app-cta p {
    font-size: 1.1rem;
    color: var(--g33b-text-dim);
    margin-bottom: 0.8rem;
}

/* ===== FAQ ===== */
.g33b-faq-item {
    background: var(--g33b-card-bg);
    border-radius: var(--g33b-radius);
    margin: 0.5rem 0;
    border: 1px solid var(--g33b-border);
    overflow: hidden;
}

.g33b-faq-q {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--g33b-light);
    padding: 0.8rem 1rem;
}

.g33b-faq-a {
    font-size: 1.1rem;
    color: var(--g33b-text-dim);
    padding: 0 1rem 0.8rem;
    line-height: 1.5rem;
}

/* ===== GUIDE STEPS ===== */
.g33b-step {
    display: flex;
    gap: 0.8rem;
    margin: 0.6rem 0;
    align-items: flex-start;
}

.g33b-step-num {
    background: var(--g33b-secondary);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.g33b-step-text {
    font-size: 1.1rem;
    color: var(--g33b-text-dim);
    line-height: 1.5rem;
}

/* ===== CATEGORY BADGE ===== */
.g33b-cat-badge {
    display: inline-block;
    background: rgba(100, 149, 237, 0.15);
    color: var(--g33b-secondary);
    font-size: 1rem;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    margin: 0.2rem;
}

/* ===== INTERNAL LINK ===== */
.g33b-internal-link {
    color: var(--g33b-secondary);
    text-decoration: underline;
    transition: color var(--g33b-transition);
}

.g33b-internal-link:hover {
    color: var(--g33b-accent);
}

/* ===== UTILITIES ===== */
.g33b-text-center {
    text-align: center;
}

.g33b-mt-1 {
    margin-top: 0.5rem;
}

.g33b-mb-1 {
    margin-bottom: 0.5rem;
}

.g33b-mb-2 {
    margin-bottom: 1rem;
}

.g33b-hidden-desktop {
    display: block;
}

@media (min-width: 769px) {
    .g33b-hidden-desktop {
        display: none;
    }
}

/* ===== CONTENT AREA for help pages ===== */
.g33b-content-area {
    padding: 1rem;
    max-width: 430px;
    margin: 0 auto;
}

.g33b-content-area h2 {
    font-size: 1.5rem;
    color: var(--g33b-secondary);
    margin: 1.2rem 0 0.5rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid var(--g33b-border);
}

.g33b-content-area h3 {
    font-size: 1.3rem;
    color: var(--g33b-accent);
    margin: 0.8rem 0 0.4rem;
}

.g33b-content-area p {
    font-size: 1.2rem;
    color: var(--g33b-text-dim);
    line-height: 1.6rem;
    margin-bottom: 0.6rem;
}

.g33b-content-area ul {
    padding-left: 1.5rem;
    margin: 0.4rem 0;
}

.g33b-content-area li {
    font-size: 1.1rem;
    color: var(--g33b-text-dim);
    line-height: 1.5rem;
    margin-bottom: 0.3rem;
}

/* ===== CATEGORY HIGHLIGHTS ===== */
.g33b-cat-highlight {
    background: var(--g33b-card-bg);
    border-radius: var(--g33b-radius);
    padding: 1rem;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid var(--g33b-border);
    cursor: pointer;
    transition: background var(--g33b-transition);
}

.g33b-cat-highlight:hover {
    background: rgba(100, 149, 237, 0.1);
}

.g33b-cat-highlight i {
    font-size: 2rem;
    color: var(--g33b-secondary);
}

.g33b-cat-highlight h3 {
    font-size: 1.2rem;
    color: var(--g33b-light);
    margin-bottom: 0.2rem;
}

.g33b-cat-highlight p {
    font-size: 1rem;
    color: var(--g33b-text-dim);
    line-height: 1.3rem;
}

/* ===== RTP TABLE ===== */
.g33b-rtp-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.g33b-rtp-table th {
    background: var(--g33b-steel);
    color: var(--g33b-light);
    padding: 0.5rem;
    text-align: left;
    font-size: 1rem;
}

.g33b-rtp-table td {
    padding: 0.4rem 0.5rem;
    border-bottom: 1px solid var(--g33b-border);
    color: var(--g33b-text-dim);
    font-size: 1rem;
}

.g33b-rtp-table tr:hover td {
    background: rgba(100, 149, 237, 0.08);
}

.g33b-rtp-high {
    color: var(--g33b-accent);
    font-weight: 600;
}

/* ===== SECURITY SECTION ===== */
.g33b-security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin: 0.5rem 0;
}

.g33b-security-item {
    background: var(--g33b-card-bg);
    border-radius: var(--g33b-radius);
    padding: 0.8rem;
    text-align: center;
    border: 1px solid var(--g33b-border);
}

.g33b-security-item i {
    font-size: 2rem;
    color: var(--g33b-accent);
    margin-bottom: 0.3rem;
}

.g33b-security-item span {
    display: block;
    font-size: 1rem;
    color: var(--g33b-text-dim);
}
