:root {
    --teleb-primary: #4163f6;
    --teleb-primary-light: #5473f7;
    --teleb-primary-dark: #314ab8;
    --teleb-primary-alpha-20: rgba(65,99,246,0.2);
    --teleb-accent: #f09636;
    --teleb-bg-dark: #0a0b0d;
    --teleb-bg-light: #0c0d0f;
    --teleb-bg-card: #181a1c;
    --teleb-bg-card-hover: #23262a;
    --teleb-text-primary: #ffffff;
    --teleb-text-secondary: rgba(255,255,255,0.7);
    --teleb-text-muted: rgba(255,255,255,0.45);
    --teleb-success: #22c55e;
    --teleb-success-dark: #16a34a;
    --teleb-warning: #f59e0b;
    --teleb-danger: #ef4444;
    --teleb-gradient-primary: linear-gradient(135deg, #4163f6, #f09636);
    --teleb-gradient-dark: linear-gradient(135deg, #0a0b0d, #181a1c);
    --teleb-radius-sm: 6px;
    --teleb-radius: 10px;
    --teleb-radius-lg: 16px;
    --teleb-transition: 0.2s ease;
    --teleb-spacing-sm: 8px;
    --teleb-font-heading: 'Inter', sans-serif;
    --teleb-font-body: 'Inter', sans-serif;
}

/* =============================================
   RESET & BASE
   ============================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Noto Sans Ethiopic', 'Nunito', var(--teleb-font-body), sans-serif;
    background-color: var(--teleb-bg-dark);
    color: var(--teleb-text-primary);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--teleb-primary-light);
    text-decoration: none;
    transition: color var(--teleb-transition);
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* =============================================
   LAYOUT
   ============================================= */
.teleb-frame {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.teleb-frame {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.teleb-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.teleb-doc-body {
    flex: 1;
    min-width: 0;
}

.teleb-footer {
    width: 100%;
}

/* =============================================
   READ PROGRESS BAR
   ============================================= */
#teleb-read-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--teleb-gradient-primary);
    z-index: 9999;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

/* =============================================
   HEADER
   ============================================= */
.teleb-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 68px;
    background: rgba(10, 11, 13, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(65, 99, 246, 0.18);
    gap: 24px;
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.logo-link img {
    height: 40px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.header-nav a,
.header-nav .js-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--teleb-radius-sm);
    color: var(--teleb-text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: color var(--teleb-transition), background var(--teleb-transition);
    white-space: nowrap;
    text-decoration: none;
}

.header-nav a:hover,
.header-nav .js-link:hover {
    color: var(--teleb-text-primary);
    background: var(--teleb-primary-alpha-20);
}

.header-nav a.active {
    color: var(--teleb-primary-light);
    background: var(--teleb-primary-alpha-20);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-login {
    display: flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: var(--teleb-radius-sm);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--teleb-text-primary);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color var(--teleb-transition), background var(--teleb-transition), color var(--teleb-transition);
    white-space: nowrap;
    background: transparent;
}

.btn-login:hover {
    border-color: var(--teleb-primary);
    background: var(--teleb-primary-alpha-20);
    color: var(--teleb-text-primary);
}

.btn-register {
    display: flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: var(--teleb-radius-sm);
    background: var(--teleb-gradient-primary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity var(--teleb-transition), transform var(--teleb-transition);
    white-space: nowrap;
    border: none;
}

.btn-register:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-search {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--teleb-radius-sm);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--teleb-text-secondary);
    font-size: 1rem;
    cursor: pointer;
    transition: border-color var(--teleb-transition), color var(--teleb-transition), background var(--teleb-transition);
}

.btn-search:hover {
    border-color: var(--teleb-primary);
    color: var(--teleb-text-primary);
    background: var(--teleb-primary-alpha-20);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: var(--teleb-radius-sm);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px;
    transition: border-color var(--teleb-transition), background var(--teleb-transition);
}

.hamburger:hover {
    border-color: var(--teleb-primary);
    background: var(--teleb-primary-alpha-20);
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--teleb-text-primary);
    border-radius: 2px;
    transition: transform var(--teleb-transition), opacity var(--teleb-transition);
}

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar {
    width: 240px;
    flex-shrink: 0;
    background: var(--teleb-bg-card);
    border-right: 1px solid rgba(255,255,255,0.06);
    padding: 16px 0;
    min-height: 100vh;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--teleb-text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: color var(--teleb-transition), background var(--teleb-transition), padding-left var(--teleb-transition);
    border-radius: 0;
    border-left: 3px solid transparent;
}

.sidebar-item:hover {
    color: var(--teleb-text-primary);
    background: rgba(65, 99, 246, 0.1);
    padding-left: 24px;
    border-left-color: var(--teleb-primary);
}

.sidebar-item.active {
    color: var(--teleb-primary-light);
    background: var(--teleb-primary-alpha-20);
    border-left-color: var(--teleb-primary);
    font-weight: 700;
}

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1100;
    opacity: 0;
    transition: opacity var(--teleb-transition);
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 90vw;
    height: 100vh;
    background: var(--teleb-bg-card);
    border-left: 1px solid rgba(65, 99, 246, 0.2);
    z-index: 1200;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--teleb-radius-sm);
    background: rgba(255,255,255,0.08);
    color: var(--teleb-text-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background var(--teleb-transition), color var(--teleb-transition);
    border: none;
}

.mobile-menu-close:hover {
    background: var(--teleb-danger);
    color: #fff;
}

.mobile-menu-body {
    flex: 1;
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-auth {
    display: flex;
    gap: 10px;
    padding: 8px 16px 16px;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    color: var(--teleb-text-secondary);
    font-size: 0.925rem;
    font-weight: 500;
    cursor: pointer;
    transition: color var(--teleb-transition), background var(--teleb-transition);
    border-radius: 0;
}

.mobile-menu-item:hover {
    color: var(--teleb-text-primary);
    background: var(--teleb-primary-alpha-20);
}

.mobile-menu-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: var(--teleb-radius-sm);
    background: var(--teleb-gradient-primary);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: opacity var(--teleb-transition), transform var(--teleb-transition);
}

.mobile-menu-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.mobile-menu-btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--teleb-text-primary);
}

.mobile-menu-btn-secondary:hover {
    border-color: var(--teleb-primary);
    background: var(--teleb-primary-alpha-20);
}

.mobile-menu-footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: var(--teleb-text-muted);
    font-size: 0.8rem;
    text-align: center;
}

/* =============================================
   ARTICLE WRAPPER & PAGE TITLE
   ============================================= */
.teleb-doc-body {
    max-width: 900px;
    margin: 0 auto;
}

.teleb-main-title,
.teleb-main-title {
    font-family: 'Raleway', var(--teleb-font-heading), sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--teleb-text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.teleb-lead-text,
.teleb-lead-text {
    color: var(--teleb-text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.teleb-lead-text p,
.teleb-lead-text p {
    margin-bottom: 14px;
}

.teleb-strap,
.teleb-strap {
    font-family: 'Raleway', var(--teleb-font-heading), sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    background: var(--teleb-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.teleb-crumbs,
.teleb-crumbs {
    padding: 12px 0;
    margin-bottom: 8px;
}

.teleb-path-list,
.teleb-path-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.teleb-path-seg,
.teleb-path-seg {
    display: flex;
    align-items: center;
    font-size: 0.82rem;
    color: var(--teleb-text-muted);
}

.teleb-path-seg a,
.teleb-path-seg a {
    color: var(--teleb-text-muted);
    text-decoration: none;
    transition: color var(--teleb-transition);
}

.teleb-path-seg a:hover,
.teleb-path-seg a:hover {
    color: var(--teleb-primary-light);
}

.teleb-path-seg + .teleb-path-seg::before,
.teleb-path-seg + .teleb-path-seg::before {
    content: '/';
    margin-right: 4px;
    color: var(--teleb-text-muted);
    opacity: 0.5;
}

.teleb-bc-current,
.teleb-bc-current {
    color: var(--teleb-text-secondary);
}

/* =============================================
   CTA BUTTONS
   ============================================= */
.teleb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--teleb-radius-sm);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--teleb-transition), opacity var(--teleb-transition), box-shadow var(--teleb-transition);
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.teleb-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(65, 99, 246, 0.35);
}

.teleb-btn-primary {
    background: var(--teleb-gradient-primary);
    color: #fff;
}

.teleb-btn-primary:hover {
    opacity: 0.92;
    box-shadow: 0 10px 30px rgba(65, 99, 246, 0.45);
}

/* =============================================
   FIXED CTA BAR
   ============================================= */
#teleb-fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: linear-gradient(90deg, #0c0d0f 0%, #181a1c 100%);
    border-top: 2px solid var(--teleb-primary);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.teleb-float-bonus {
    color: var(--teleb-text-secondary);
    font-size: 0.875rem;
    flex: 1;
}

.teleb-float-acts {
    display: flex;
    align-items: center;
    gap: 10px;
}

.teleb-fixed-cta-btn {
    padding: 9px 20px;
    border-radius: var(--teleb-radius-sm);
    background: var(--teleb-gradient-primary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity var(--teleb-transition);
}

.teleb-fixed-cta-btn:hover {
    opacity: 0.88;
}

.teleb-fixed-cta-x {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--teleb-text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: background var(--teleb-transition), color var(--teleb-transition);
}

.teleb-fixed-cta-x:hover {
    background: var(--teleb-danger);
    color: #fff;
}

/* =============================================
   HERO / BANNER
   ============================================= */
.teleb-intro-hero,
.teleb-intro-hero {
    background: var(--teleb-bg-light);
    padding: 40px 0;
}

.teleb-intro-banner,
.teleb-intro-banner {
    position: relative;
    border-radius: var(--teleb-radius-lg);
    overflow: hidden;
    min-height: 320px;
    background: linear-gradient(135deg, #0d1035 0%, #1a0a2e 40%, #0a1220 100%);
    display: flex;
    align-items: center;
    padding: 48px;
    border: 1px solid rgba(65, 99, 246, 0.2);
}

.teleb-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(65,99,246,0.15) 0%, transparent 65%),
                radial-gradient(ellipse at 20% 80%, rgba(240,150,54,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.teleb-bonus-badge-corner {
    position: absolute;
    top: 24px;
    right: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--teleb-gradient-primary);
    box-shadow: 0 4px 24px rgba(65,99,246,0.5);
    z-index: 2;
}

.teleb-bonus-badge-amount {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.teleb-bonus-badge-label {
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    text-align: center;
    line-height: 1.2;
}

.teleb-banner-content {
    position: relative;
    z-index: 2;
    max-width: 540px;
}

.teleb-banner-label {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(65, 99, 246, 0.25);
    border: 1px solid rgba(65, 99, 246, 0.4);
    color: var(--teleb-primary-light);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.teleb-banner-title {
    font-family: 'Raleway', var(--teleb-font-heading), sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.teleb-banner-text {
    color: var(--teleb-text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* =============================================
   GAMES SECTION
   ============================================= */
.teleb-play-zone,
.teleb-play-zone {
    padding: 48px 0;
    background: var(--teleb-bg-dark);
}

.games-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Raleway', var(--teleb-font-heading), sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--teleb-text-primary);
    margin-bottom: 24px;
}

.games-section-title i {
    color: var(--teleb-accent);
}

.teleb-slots-grid,
.teleb-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.teleb-slot-tile,
.teleb-slot-tile {
    position: relative;
    border-radius: var(--teleb-radius);
    overflow: hidden;
    background: var(--teleb-bg-card);
    cursor: pointer;
    transition: transform var(--teleb-transition), box-shadow var(--teleb-transition);
    aspect-ratio: 3/4;
    border: 1px solid rgba(255,255,255,0.06);
}

.teleb-slot-tile img,
.teleb-slot-tile img,
.teleb-slot-tile picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.teleb-slot-tile picture {
    position: absolute;
    inset: 0;
}

.teleb-slot-tile picture img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teleb-play-ph {
    width: 100%;
    height: 100%;
    background: var(--teleb-bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teleb-text-muted);
    font-size: 2rem;
}

.teleb-tile-cover,
.teleb-tile-cover {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 14px 10px;
    opacity: 0;
    transition: opacity var(--teleb-transition);
}

.teleb-slot-tile:hover .teleb-tile-cover,
.teleb-slot-tile:hover .teleb-tile-cover {
    opacity: 1;
}

.teleb-tile-title {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.3;
}

.teleb-start-btn,
.teleb-start-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 18px;
    border-radius: var(--teleb-radius-sm);
    background: var(--teleb-gradient-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity var(--teleb-transition);
}

.teleb-start-btn:hover,
.teleb-start-btn:hover {
    opacity: 0.88;
}

.btn-view-all-games {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: var(--teleb-radius-sm);
    background: transparent;
    border: 1px solid var(--teleb-primary);
    color: var(--teleb-primary-light);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--teleb-transition), color var(--teleb-transition), transform var(--teleb-transition);
    margin: 0 auto;
}

.btn-view-all-games:hover {
    background: var(--teleb-primary-alpha-20);
    color: #fff;
    transform: translateY(-2px);
}

/* =============================================
   SECTION TITLE UTILITY
   ============================================= */
.teleb-part-title {
    font-family: 'Raleway', var(--teleb-font-heading), sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: var(--teleb-text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

/* =============================================
   CONTENT SECTIONS
   ============================================= */
.teleb-txt-zone,
.teleb-txt-zone {
    padding: 56px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.teleb-txt-zone:nth-child(even) {
    background: var(--teleb-bg-light);
}

.teleb-txt-zone:nth-child(odd) {
    background: var(--teleb-bg-dark);
}

.teleb-txt-zone.teleb-rebate-block {
    background: #0e1016;
}

.teleb-txt-zone.teleb-trust-block {
    background: #0b0c10;
}

.teleb-txt-zone.teleb-loc-block {
    background: #0d0f0e;
}

.teleb-txt-zone.teleb-responsible-gaming {
    background: #0c0e0b;
}

.teleb-txt-zone.teleb-ask-zone {
    background: var(--teleb-bg-dark);
}

.teleb-txt-zone h2 {
    font-family: 'Raleway', var(--teleb-font-heading), sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--teleb-text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--teleb-primary-alpha-20);
}

.teleb-txt-zone h3 {
    font-family: 'Raleway', var(--teleb-font-heading), sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--teleb-text-primary);
    margin-top: 28px;
    margin-bottom: 12px;
}

.teleb-txt-zone h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--teleb-text-primary);
    margin-bottom: 6px;
}

.teleb-txt-zone p {
    color: var(--teleb-text-secondary);
    line-height: 1.8;
    margin-bottom: 14px;
}

.teleb-txt-zone ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.teleb-txt-zone ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--teleb-text-secondary);
    font-size: 0.925rem;
    line-height: 1.7;
    padding-left: 4px;
}

.teleb-txt-zone ul li::before {
    content: '›';
    color: var(--teleb-primary-light);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.5;
    flex-shrink: 0;
}

/* =============================================
   TABLE WRAPPER
   ============================================= */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
    border-radius: var(--teleb-radius);
}

/* =============================================
   QUICK TABLE
   ============================================= */
.teleb-qk-table,
.teleb-qk-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    border-radius: var(--teleb-radius);
    overflow: hidden;
    background: var(--teleb-bg-card);
    min-width: 360px;
}

.teleb-qk-table th,
.teleb-qk-table th {
    background: linear-gradient(90deg, rgba(65,99,246,0.25) 0%, rgba(65,99,246,0.1) 100%);
    color: var(--teleb-primary-light);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(65,99,246,0.2);
}

.teleb-qk-table td,
.teleb-qk-table td {
    padding: 11px 16px;
    color: var(--teleb-text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    vertical-align: top;
    line-height: 1.6;
}

.teleb-qk-table tr:last-child td,
.teleb-qk-table tr:last-child td {
    border-bottom: none;
}

.teleb-qk-table tr:hover td,
.teleb-qk-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

.teleb-qk-table td:first-child,
.teleb-qk-table td:first-child {
    font-weight: 600;
    color: var(--teleb-text-primary);
    white-space: nowrap;
    width: 35%;
}

/* =============================================
   PROMO CODE
   ============================================= */
.teleb-deal-spot {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: var(--teleb-radius);
    background: linear-gradient(135deg, rgba(65,99,246,0.12) 0%, rgba(240,150,54,0.08) 100%);
    border: 1px solid rgba(65, 99, 246, 0.3);
    margin: 20px 0;
}

.teleb-voucher-tag {
    flex-shrink: 0;
}

.teleb-deal-ico {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--teleb-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
}

.teleb-deal-body {
    flex: 1;
}

.teleb-promo-cap {
    font-size: 0.8rem;
    color: var(--teleb-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin-bottom: 4px;
}

.teleb-deal-code {
    font-family: 'Courier New', monospace;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--teleb-accent);
    letter-spacing: 0.1em;
}

.teleb-promo-copy {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: var(--teleb-radius-sm);
    background: var(--teleb-primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: background var(--teleb-transition), transform var(--teleb-transition);
    flex-shrink: 0;
}

.teleb-promo-copy:hover {
    background: var(--teleb-primary-dark);
    transform: translateY(-1px);
}

/* =============================================
   TIMELINE / STAGES
   ============================================= */
.teleb-stages,
.teleb-stages {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 24px 0;
    position: relative;
}

.teleb-stages::before,
.teleb-stages::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(to bottom, var(--teleb-primary), var(--teleb-accent));
    opacity: 0.3;
    border-radius: 2px;
}

.teleb-step-row,
.teleb-step-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    position: relative;
}

.teleb-flow-no,
.teleb-flow-no {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--teleb-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 16px rgba(65, 99, 246, 0.4);
    z-index: 1;
}

.teleb-stage-body,
.teleb-stage-body {
    flex: 1;
    padding-top: 8px;
}

.teleb-flow-title,
.teleb-flow-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--teleb-text-primary);
    margin-bottom: 4px;
}

.teleb-flow-desc,
.teleb-flow-desc {
    font-size: 0.875rem;
    color: var(--teleb-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* =============================================
   STATS GRID / KPI TILES
   ============================================= */
.teleb-fig-grid,
.teleb-fig-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.teleb-kpi-tile,
.teleb-kpi-tile {
    background: var(--teleb-bg-card);
    border-radius: var(--teleb-radius);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 3px solid transparent;
    transition: transform var(--teleb-transition), border-left-color var(--teleb-transition), box-shadow var(--teleb-transition);
}

.teleb-num-glyph,
.teleb-num-glyph {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--teleb-primary-alpha-20);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--teleb-primary-light);
}

.teleb-fig-val,
.teleb-fig-val {
    font-family: 'Raleway', var(--teleb-font-heading), sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--teleb-text-primary);
    line-height: 1.2;
    word-break: break-word;
}

.teleb-metric-lab,
.teleb-metric-lab {
    font-size: 0.8rem;
    color: var(--teleb-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =============================================
   INFO BOX / HINT BOX
   ============================================= */
.teleb-hint-box,
.teleb-hint-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--teleb-radius);
    margin: 20px 0;
    border: 1px solid;
}

.teleb-note-warn,
.teleb-note-warn {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
}

.teleb-note-ok,
.teleb-note-ok {
    background: rgba(34, 197, 94, 0.07);
    border-color: rgba(34, 197, 94, 0.25);
}

.teleb-note-ico,
.teleb-note-ico {
    flex-shrink: 0;
    font-size: 1.1rem;
    margin-top: 1px;
}

.teleb-note-warn .teleb-note-ico {
    color: var(--teleb-warning);
}

.teleb-note-ok .teleb-note-ico {
    color: var(--teleb-success);
}

.teleb-note-body,
.teleb-note-body {
    flex: 1;
    font-size: 0.9rem;
    color: var(--teleb-text-secondary);
    line-height: 1.7;
}

.teleb-note-body strong {
    color: var(--teleb-text-primary);
    display: block;
    margin-bottom: 4px;
}

/* =============================================
   WEEKLY CASHBACK
   ============================================= */
.teleb-rebate-block,
.teleb-rebate-block {
    padding: 56px 0;
}

.teleb-refund-card,
.teleb-refund-card {
    background: var(--teleb-bg-card);
    border-radius: var(--teleb-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(65, 99, 246, 0.18);
    margin-bottom: 24px;
}

.teleb-back-hl,
.teleb-back-hl {
    background: linear-gradient(135deg, rgba(65,99,246,0.25) 0%, rgba(240,150,54,0.1) 100%);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.teleb-cb-glyph,
.teleb-cb-glyph {
    font-size: 2.2rem;
    color: var(--teleb-accent);
    margin-bottom: 4px;
}

.teleb-rebate-val,
.teleb-rebate-val {
    font-family: 'Raleway', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--teleb-text-primary);
    line-height: 1;
}

.teleb-refund-lab,
.teleb-refund-lab {
    font-size: 0.85rem;
    color: var(--teleb-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.teleb-back-body,
.teleb-back-body {
    padding: 24px 28px;
}

.teleb-rebate-stats,
.teleb-rebate-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.teleb-refund-fig,
.teleb-refund-fig {
    background: var(--teleb-bg-card);
    border-radius: var(--teleb-radius);
    padding: 18px 16px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.teleb-refund-fnum,
.teleb-refund-fnum {
    font-family: 'Raleway', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--teleb-primary-light);
}

.teleb-rebate-fcap,
.teleb-rebate-fcap {
    font-size: 0.75rem;
    color: var(--teleb-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* =============================================
   PROVIDER TAGS
   ============================================= */
.teleb-vendor-grid,
.teleb-vendor-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0;
}

.teleb-supplier-chip,
.teleb-supplier-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 24px;
    background: rgba(65, 99, 246, 0.12);
    border: 1px solid rgba(65, 99, 246, 0.28);
    color: var(--teleb-primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    transition: background var(--teleb-transition), transform var(--teleb-transition);
    cursor: default;
}

.teleb-supplier-chip:hover,
.teleb-supplier-chip:hover {
    background: rgba(65, 99, 246, 0.22);
    transform: translateY(-1px);
}

/* =============================================
   SECURITY BADGES
   ============================================= */
.teleb-trust-block,
.teleb-trust-block {
    padding: 56px 0;
}

.teleb-trust-grid,
.teleb-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.teleb-guard-badge,
.teleb-guard-badge {
    background: var(--teleb-bg-card);
    border-radius: var(--teleb-radius);
    padding: 24px 20px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform var(--teleb-transition), border-color var(--teleb-transition);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.teleb-guard-badge:hover,
.teleb-guard-badge:hover {
    transform: translateY(-3px);
    border-color: rgba(65, 99, 246, 0.3);
}

.teleb-guard-ico,
.teleb-guard-ico {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--teleb-primary-alpha-20);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--teleb-primary-light);
}

.teleb-safe-head,
.teleb-safe-head {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--teleb-text-primary);
}

.teleb-sec-text,
.teleb-sec-text {
    font-size: 0.82rem;
    color: var(--teleb-text-secondary);
    line-height: 1.6;
}

/* =============================================
   WHEEL OF FORTUNE
   ============================================= */
.teleb-wh-section {
    padding: 56px 0;
    background: var(--teleb-bg-light);
}

.teleb-spin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.teleb-wh-tile {
    background: var(--teleb-bg-card);
    border-radius: var(--teleb-radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform var(--teleb-transition), box-shadow var(--teleb-transition);
}

.teleb-wh-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.teleb-spin-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(65, 99, 246, 0.1);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.teleb-fortune-glyph {
    font-size: 1.5rem;
    color: var(--teleb-accent);
}

.teleb-fortune-label {
    font-weight: 700;
    color: var(--teleb-text-primary);
    font-size: 0.95rem;
}

.teleb-prize-cost {
    font-size: 0.8rem;
    color: var(--teleb-text-muted);
    margin-left: auto;
    font-weight: 600;
}

.teleb-wh-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.teleb-wh-table td {
    padding: 9px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: var(--teleb-text-secondary);
}

.teleb-wh-table tr:last-child td {
    border-bottom: none;
}

/* =============================================
   BONUS SHOP
   ============================================= */
.teleb-sh-section {
    padding: 56px 0;
    background: var(--teleb-bg-dark);
}

.teleb-market-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.teleb-bonus-shop-card {
    background: var(--teleb-bg-card);
    border-radius: var(--teleb-radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform var(--teleb-transition), box-shadow var(--teleb-transition);
}

.teleb-bonus-shop-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.teleb-sh-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(240, 150, 54, 0.08);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.teleb-bonus-shop-mark {
    font-size: 1.5rem;
    color: var(--teleb-accent);
}

.teleb-bonus-shop-cat {
    font-weight: 700;
    color: var(--teleb-text-primary);
    font-size: 0.95rem;
}

.teleb-bonus-shop-count {
    font-size: 0.8rem;
    color: var(--teleb-text-muted);
    margin-left: auto;
    font-weight: 600;
}

.teleb-bonus-shop-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.teleb-bonus-shop-table td {
    padding: 9px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: var(--teleb-text-secondary);
}

.teleb-bonus-shop-table tr:last-child td {
    border-bottom: none;
}

/* =============================================
   LANGUAGES AND COUNTRIES
   ============================================= */
.teleb-loc-block,
.teleb-loc-block {
    padding: 56px 0;
}

.teleb-loc-grid,
.teleb-loc-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0;
}

.teleb-i18n-tag,
.teleb-i18n-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 24px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: var(--teleb-success);
    font-size: 0.875rem;
    font-weight: 600;
}

.teleb-geo-grid,
.teleb-geo-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
}

.teleb-geo-item,
.teleb-geo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: var(--teleb-radius-sm);
    background: rgba(239, 68, 68, 0.07);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--teleb-text-secondary);
    font-size: 0.875rem;
}

.teleb-geo-item i {
    color: var(--teleb-danger);
    flex-shrink: 0;
}

/* =============================================
   SITE SCREENSHOT
   ============================================= */
.teleb-thumb-frame,
.teleb-thumb-frame,
.teleb-section-image-wrap {
    display: block;
    width: 100%;
    border-radius: var(--teleb-radius-lg);
    overflow: hidden;
    margin: 32px auto;
    max-width: 1280px;
    padding: 0 24px;
}

.teleb-snap,
.teleb-snap,
.teleb-section-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--teleb-radius-lg);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 12px 48px rgba(0,0,0,0.4);
}

/* =============================================
   FAQ
   ============================================= */
.teleb-ask-zone,
.teleb-ask-zone {
    padding: 56px 0;
}

.teleb-ask-list,
.teleb-ask-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: var(--teleb-radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
}

.teleb-ask-block,
.teleb-ask-block {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: var(--teleb-bg-card);
    transition: background var(--teleb-transition);
}

.teleb-ask-block:last-child,
.teleb-ask-block:last-child {
    border-bottom: none;
}

.teleb-qa-q,
.teleb-qa-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--teleb-text-primary);
    cursor: pointer;
    transition: color var(--teleb-transition), background var(--teleb-transition);
    user-select: none;
    gap: 16px;
}

.teleb-qa-q::after,
.teleb-qa-q::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--teleb-primary-light);
    flex-shrink: 0;
    transition: transform var(--teleb-transition), color var(--teleb-transition);
    line-height: 1;
}

.teleb-qa-q:hover,
.teleb-qa-q:hover {
    color: var(--teleb-primary-light);
    background: rgba(65, 99, 246, 0.06);
}

.teleb-fq-text,
.teleb-fq-text {
    display: none;
    padding: 0 22px 18px;
    color: var(--teleb-text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
}

.teleb-ask-block.open,
.teleb-ask-block.open {
    background: rgba(65, 99, 246, 0.04);
}

.teleb-ask-block.open .teleb-qa-q {
    color: var(--teleb-primary-light);
}

.teleb-ask-block.open .teleb-qa-q::after {
    content: '−';
    transform: rotate(0deg);
    color: var(--teleb-accent);
}

.teleb-ask-block.open .teleb-fq-text {
    display: block;
}

.teleb-ask-block.open .teleb-qa-q::after {
    content: '−';
    color: var(--teleb-accent);
}

.teleb-ask-block.open .teleb-fq-text {
    display: block;
}

/* =============================================
   FOOTER
   ============================================= */
.teleb-footer {
    background: #080909;
    border-top: 1px solid rgba(65, 99, 246, 0.15);
    padding: 48px 0 0;
    margin-top: 0;
}

.teleb-footer-top {
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 32px;
}

.teleb-footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-bottom: 40px;
}

.footer-col strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--teleb-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    padding: 0;
}

.footer-col ul li::before {
    display: none;
}

.footer-col ul li div,
.footer-col ul li a {
    color: var(--teleb-text-muted);
    font-size: 0.875rem;
    cursor: pointer;
    transition: color var(--teleb-transition);
    text-decoration: none;
}

.footer-col ul li div:hover,
.footer-col ul li a:hover {
    color: var(--teleb-primary-light);
}

.teleb-footer-disclaimer,
.footer-disclaimer {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: var(--teleb-text-muted);
    font-size: 0.78rem;
    line-height: 1.75;
}

.teleb-footer-bottom,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: var(--teleb-text-muted);
    font-size: 0.82rem;
}

.teleb-footer-badges,
.footer-badges {
    display: flex;
    align-items: center;
    gap: 12px;
}

.teleb-eighteen-chip,
.teleb-eighteen-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--teleb-danger);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.teleb-tls-mark,
.teleb-tls-mark {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: var(--teleb-success);
    font-size: 0.78rem;
    font-weight: 700;
}

.teleb-footer-copyright {
    color: var(--teleb-text-muted);
    font-size: 0.82rem;
}

/* =============================================
   SNACKBAR / TOAST
   ============================================= */
#teleb-snackbar {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--teleb-bg-card);
    color: var(--teleb-text-primary);
    padding: 12px 24px;
    border-radius: var(--teleb-radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(65, 99, 246, 0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

#teleb-snackbar.teleb-snackbar-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* =============================================
   UTILITY
   ============================================= */
div[data-link] {
    cursor: pointer;
}

.js-link {
    cursor: pointer;
}

.teleb-fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.teleb-fade-in.teleb-vis {
    opacity: 1;
    transform: translateY(0);
}

/* Section images */
.teleb-section-image-wrap {
    display: block;
    max-width: 1280px;
    margin: 0 auto 0;
    padding: 0 24px;
}

/* Inline stat grids */
.teleb-loc-grid,
.teleb-geo-grid {
    margin: 16px 0 20px;
}

/* =============================================
   MOTION & PAGE LOAD ANIMATIONS
   ============================================= */
@media (prefers-reduced-motion: no-preference) {

    @keyframes fd-fade-up {
        from { opacity: 0; transform: translateY(20px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fd-fade-in {
        from { opacity: 0; }
        to   { opacity: 1; }
    }

    @keyframes fd-scale-in {
        from { opacity: 0; transform: scale(0.96); }
        to   { opacity: 1; transform: scale(1); }
    }

    .teleb-main-title,
    .teleb-main-title {
        animation: fd-fade-up 0.5s ease-out both;
    }

    .teleb-lead-text,
    .teleb-lead-text {
        animation: fd-fade-up 0.5s ease-out 0.15s both;
    }

    .teleb-intro-hero,
    .teleb-intro-hero {
        animation: fd-fade-in 0.5s ease-out 0.25s both;
    }

    .teleb-play-zone,
    .teleb-play-zone {
        animation: fd-fade-up 0.5s ease-out 0.35s both;
    }

    .teleb-slot-tile:nth-child(1),
    .teleb-slot-tile:nth-child(1) {
        animation: fd-scale-in 0.4s ease-out 0.0s both;
    }

    .teleb-slot-tile:nth-child(2),
    .teleb-slot-tile:nth-child(2) {
        animation: fd-scale-in 0.4s ease-out 0.05s both;
    }

    .teleb-slot-tile:nth-child(3),
    .teleb-slot-tile:nth-child(3) {
        animation: fd-scale-in 0.4s ease-out 0.10s both;
    }

    .teleb-slot-tile:nth-child(4),
    .teleb-slot-tile:nth-child(4) {
        animation: fd-scale-in 0.4s ease-out 0.15s both;
    }

    .teleb-slot-tile:nth-child(5),
    .teleb-slot-tile:nth-child(5) {
        animation: fd-scale-in 0.4s ease-out 0.20s both;
    }

    .teleb-slot-tile:nth-child(6),
    .teleb-slot-tile:nth-child(6) {
        animation: fd-scale-in 0.4s ease-out 0.25s both;
    }

    .teleb-slot-tile:nth-child(7),
    .teleb-slot-tile:nth-child(7) {
        animation: fd-scale-in 0.4s ease-out 0.30s both;
    }

    .teleb-slot-tile:nth-child(8),
    .teleb-slot-tile:nth-child(8) {
        animation: fd-scale-in 0.4s ease-out 0.35s both;
    }

    .teleb-slot-tile:hover {
        transform: scale(1.04);
        box-shadow: 0 24px 48px rgba(0,0,0,0.5);
    }

    .teleb-kpi-tile:hover,
    .teleb-kpi-tile:hover {
        transform: translateY(-4px);
        border-left: 3px solid var(--teleb-primary);
    }
}

/* =============================================
   RESPONSIVE — 1320px
   ============================================= */
@media (max-width: 1320px) {
    .teleb-header {
        padding: 0 20px;
    }

    .teleb-frame,
    .teleb-frame {
        padding: 0 20px;
    }

    .teleb-thumb-frame,
    .teleb-section-image-wrap {
        padding: 0 20px;
    }

    .teleb-footer-cols {
        gap: 24px;
    }
}

/* =============================================
   RESPONSIVE — 1040px
   ============================================= */
@media (max-width: 1040px) {
    .teleb-header {
        padding: 0 16px;
    }

    .header-nav {
        gap: 2px;
    }

    .header-nav a,
    .header-nav .js-link {
        padding: 7px 10px;
        font-size: 0.85rem;
    }

    .teleb-intro-banner,
    .teleb-intro-banner {
        min-height: 280px;
        padding: 36px 32px;
    }

    .teleb-banner-title {
        font-size: 1.8rem;
    }

    .teleb-footer-cols {
        grid-template-columns: repeat(2, 1fr);
    }

    .teleb-slots-grid,
    .teleb-slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .teleb-fig-grid,
    .teleb-fig-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .teleb-trust-grid,
    .teleb-trust-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .teleb-rebate-stats,
    .teleb-rebate-stats {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }
}

/* =============================================
   RESPONSIVE — 790px
   ============================================= */
@media (max-width: 790px) {

    /* CRITICAL mobile rules */
    .btn-login {
        display: none;
    }

    .btn-search {
        display: none;
    }

    .header-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Header */
    .teleb-header {
        padding: 0 16px;
        height: 60px;
    }

    .logo-link img {
        height: 32px;
    }

    .btn-register {
        padding: 7px 14px;
        font-size: 0.82rem;
    }

    /* Frame */
    .teleb-frame,
    .teleb-frame {
        padding: 0 16px;
    }

    .teleb-thumb-frame,
    .teleb-section-image-wrap {
        padding: 0 16px;
        border-radius: var(--teleb-radius);
    }

    .teleb-snap,
    .teleb-section-image {
        border-radius: var(--teleb-radius);
    }

    /* Sections */
    .teleb-txt-zone,
    .teleb-txt-zone {
        padding: 36px 0;
    }

    .teleb-txt-zone h2 {
        font-size: 1.35rem;
    }

    /* Hero */
    .teleb-intro-hero,
    .teleb-intro-hero {
        padding: 24px 0;
    }

    .teleb-intro-banner,
    .teleb-intro-banner {
        min-height: 240px;
        padding: 28px 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .teleb-bonus-badge-corner {
        top: 16px;
        right: 16px;
        width: 72px;
        height: 72px;
    }

    .teleb-bonus-badge-amount {
        font-size: 1.4rem;
    }

    .teleb-banner-title {
        font-size: 1.5rem;
    }

    .teleb-banner-content {
        max-width: 100%;
    }

    /* Games */
    .teleb-play-zone,
    .teleb-play-zone {
        padding: 28px 0;
    }

    .teleb-slots-grid,
    .teleb-slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }

    /* Stats */
    .teleb-fig-grid,
    .teleb-fig-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .teleb-kpi-tile,
    .teleb-kpi-tile {
        padding: 18px 14px;
    }

    /* Cashback stats */
    .teleb-rebate-stats,
    .teleb-rebate-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Security */
    .teleb-trust-grid,
    .teleb-trust-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Timeline */
    .teleb-stages::before,
    .teleb-stages::before {
        left: 20px;
    }

    /* Promo code */
    .teleb-deal-spot {
        flex-direction: column;
        gap: 12px;
    }

    .teleb-promo-copy {
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    .teleb-footer-cols {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .teleb-footer-bottom,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* Fixed CTA */
    #teleb-fixed-cta {
        flex-direction: column;
        gap: 10px;
        padding: 14px 16px;
    }

    .teleb-float-acts {
        width: 100%;
    }

    .teleb-fixed-cta-btn {
        flex: 1;
        text-align: center;
        justify-content: center;
    }

    /* FAQ */
    .teleb-qa-q,
    .teleb-qa-q {
        padding: 16px 18px;
        font-size: 0.9rem;
    }

    .teleb-fq-text,
    .teleb-fq-text {
        padding: 0 18px 16px;
    }

    /* Wheel / Shop grids */
    .teleb-spin-grid,
    .teleb-market-list {
        grid-template-columns: 1fr;
    }

    /* Provider tags */
    .teleb-vendor-grid,
    .teleb-vendor-grid {
        gap: 8px;
    }

    /* Breadcrumb */
    .teleb-path-list,
    .teleb-path-list {
        font-size: 0.78rem;
    }

    /* Page title */
    .teleb-main-title,
    .teleb-main-title {
        font-size: 1.65rem;
    }

    /* Mobile menu width */
    .mobile-menu {
        width: 280px;
    }

    /* Snackbar */
    #teleb-snackbar {
        width: calc(100% - 32px);
        white-space: normal;
        text-align: center;
        bottom: 70px;
    }
}
/* ── HERO BANNER SIZING (post-patch) ─────────────── */
.teleb-intro-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
/* ── BREADCRUMB LIST MARKERS (post-patch) ────────── */
ol.teleb-path-list { list-style-type: none !important; padding-left: 0 !important; margin: 0 !important; }

/* ── OVERFLOW FIX (post-patch) ───────────────────── */
html { overflow-x: clip !important; }
body { display: block !important; overflow-x: clip !important; width: 100%; }
/* H1 size cap — 20% smaller than default */
[class*="-main-title"], main h1:first-child { font-size: clamp(1.45rem, 3.2vw, 2.1rem) !important; }
/* Kill any grid-area LLM put on structural elements */
.teleb-header, main, .teleb-footer, footer { grid-area: unset !important; }
/* Header: always flex, single row */
.teleb-header { display: flex !important; align-items: center !important; justify-content: space-between !important; height: 80px !important; padding: 0 20px !important; }
/* Toast: hidden by default via opacity (translateX alone not enough) */
#teleb-snackbar { opacity: 0 !important; }
.teleb-snackbar-show { opacity: 1 !important; transform: translateX(0) !important; }

/* ── MOBILE GRID FIX (post-patch) ────────────────── */
@media (max-width: 790px) {
    [class*="-slots-grid"] { grid-template-columns: repeat(2, 1fr) !important; }
    [class*="-fig-grid"] { grid-template-columns: repeat(2, 1fr) !important; }
    [class*="-vendor-grid"] { grid-template-columns: repeat(3, 1fr) !important; }
    [class*="-footer-cols"] { grid-template-columns: 1fr 1fr !important; }
    [class*="-frame"] { max-width: 100% !important; padding: 0 15px !important; box-sizing: border-box !important; }
    main, [class*="-doc-body"] { margin: 0 !important; width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }
    main > div:first-child,
    main > [class*="-frame"]:first-child { padding-top: 80px !important; }
    main { overflow: visible !important; }
    body { overflow-x: clip !important; }
}

/* ── GAMES GRID MOBILE FIX (post-patch) ─────────── */
@media (max-width: 790px) {
    .teleb-slots-grid, [class*="-slots-grid"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .teleb-slot-tile, [class*="-slot-tile"] {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
    .teleb-play-zone .teleb-frame,
    [class*="-play-zone"] [class*="-frame"] {
        padding: 0 10px !important;
        overflow: hidden !important;
    }
}

/* ── LAYOUT (post-patch, canonical flow-based) ───── */
body { display: block; min-height: 100vh; }
.teleb-header { position: sticky; top: 0; z-index: 1000; width: 100%; }
.sidebar { display: none !important; }
main { margin-left: 0; min-width: 0; max-width: 100%; }
.teleb-footer { margin-left: 0; }
@media (max-width: 1040px) {
    .sidebar { width: 0px !important; }
    main { margin-left: 0px !important; }
    .teleb-footer { margin-left: 0px !important; }
}
@media (max-width: 790px) {
    .sidebar { display: none !important; }
    main { margin-left: 0 !important; overflow: visible !important; width: 100% !important; max-width: 100% !important; }
    .teleb-footer { margin-left: 0 !important; }
    [class*="-frame"] { max-width: 100% !important; padding: 0 15px !important; box-sizing: border-box !important; }
    [class*="-slots-grid"] { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
    [class*="-fig-grid"] { grid-template-columns: repeat(2, 1fr) !important; }
    [class*="-vendor-grid"] { grid-template-columns: repeat(3, 1fr) !important; }
    [class*="-footer-cols"] { grid-template-columns: 1fr 1fr !important; }
}

/* ── COMPLIANCE BLOCKS (post-patch) ─────────────────── */
/* Container styling only — typography (h2 gradient, h3 color, p opacity) is
   inherited from .teleb-txt-zone which is ALSO applied to this section.
   Do not override font-size/color here or it will break visual consistency
   with other content sections. */
.teleb-responsible-gaming, section.responsible-gaming {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,0.02);
    border-left: 3px solid var(--teleb-primary, rgba(255,255,255,0.2));
    border-radius: 6px;
}
.footer-license-info, .license-info {
    font-size: 0.78rem;
    color: var(--teleb-text-muted, rgba(255,255,255,0.6));
    line-height: 1.6;
    padding: 0.5rem 0 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-license-info span, .license-info span {
    display: inline-block;
}
a.dmca-badge {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    opacity: 0.85;
    transition: opacity 0.2s;
}
a.dmca-badge:hover { opacity: 1; }
a.dmca-badge img {
    height: 28px;
    width: auto;
    display: block;
}
@media (max-width: 600px) {
    a.dmca-badge img { height: 24px; }
    .footer-license-info, .license-info { font-size: 0.72rem; }
}


/* ── дописано при разборе выхода: классы, оставшиеся без правил ───────────── */
.teleb-policy-list,
.teleb-enforcement-list {
    margin: 16px 0 0;
    padding-left: 22px;
    color: var(--teleb-text-secondary);
    font-size: 0.92rem;
    line-height: 1.8;
}
.teleb-policy-list li,
.teleb-enforcement-list li { margin-bottom: 8px; }

/* C11: hero без фоновой картинки — banner.png не доезжал до вёрстки.
   Градиент сохранён поверх снимка, чтобы текст остался читаемым. */
.teleb-intro-banner {
    background:
        linear-gradient(135deg, rgba(13,16,53,0.86) 0%, rgba(26,10,46,0.78) 40%, rgba(10,18,32,0.9) 100%),
        url('/images/banner.webp') center/cover no-repeat;
}
