:root {
    --primary-green: #0B5D3B;
    --accent-green: #28A745;
    --light-green: #34C759;
    --bg-main: #121212;
    --bg-secondary: #1E1E1E;
    --bg-card: #242424;
    --text-primary: #FFFFFF;
    --text-secondary: #B3B3B3;
    --border-color: #2E2E2E;
    --glow: 0 0 0 2px rgba(40, 167, 69, 0.25), 0 0 20px rgba(40, 167, 69, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
}

img,
video,
iframe {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: var(--accent-green);
    font-weight: bold;
    transition: color 0.25s ease;
}

a:hover,
a:focus-visible {
    color: var(--light-green);
}

.navbar {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.logo {
    position: absolute;
    left: 20px;
    font-size: 1.5em;
    font-style: italic;
    color: var(--accent-green);
    text-shadow: 0 0 12px rgba(40, 167, 69, 0.35);
}

.live-badge {
    display: inline-block;
    margin-right: 8px;
    padding: 4px 8px;
    border-radius: 999px;
    background-color: var(--accent-green);
    color: var(--text-primary);
    font-size: 0.62em;
    letter-spacing: 0.08em;
    vertical-align: middle;
    box-shadow: var(--glow);
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0 auto;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
    color: var(--light-green);
    text-shadow: 0 0 12px rgba(52, 199, 89, 0.45);
}

.menu-toggle {
    position: absolute;
    right: 20px;
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    height: 4px;
    width: 30px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: 0.3s ease;
}

header {
    position: relative;
    margin-top: 0;
    margin-left: 210px;
    text-align: center;
}

.top-category-strip {
    margin-top: 70px;
    margin-left: 210px;
    width: calc(100% - 210px);
    padding: 0 0 2px;
    background: linear-gradient(180deg, rgba(25, 25, 25, 0.98), rgba(14, 14, 14, 0.98));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
}

.top-category-track {
    display: flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    min-width: 100%;
    overflow-x: visible;
    padding: 10px 18px;
    scrollbar-width: none;
    animation: topCategoryMarquee 28s linear infinite;
}

.top-category-track::-webkit-scrollbar {
    display: none;
}

.top-category-strip:hover .top-category-track,
.top-category-strip:focus-within .top-category-track {
    animation-play-state: paused;
}

.top-category-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    min-height: 42px;
    padding: 8px 16px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.top-category-item:hover,
.top-category-item:focus-visible,
.top-category-item.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
}

.top-category-icon {
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffe694, #c99322);
    color: #111;
    font-size: 0.9rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 0 12px rgba(201, 147, 34, 0.18);
}

.top-category-item:nth-child(2) .top-category-icon,
.top-category-item:nth-child(6) .top-category-icon,
.top-category-item:nth-child(7) .top-category-icon,
.top-category-item:nth-child(9) .top-category-icon {
    background: linear-gradient(180deg, #ffcc7a, #b66a12);
}

@keyframes topCategoryMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 4px));
    }
}

@media (prefers-reduced-motion: reduce) {
    .top-category-track {
        animation: none;
    }
}

.hero-header {
    min-height: 420px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.banner-video {
    width: 100%;
    height: clamp(290px, 47vw, 510px);
    display: block;
    object-fit: cover;
    opacity: 0.88;
    filter: brightness(0.72) saturate(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(18, 18, 18, 0.55) 0%, rgba(18, 18, 18, 0.28) 55%, rgba(18, 18, 18, 0.6) 100%);
}

.hero-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 60px);
    max-width: 1100px;
    text-align: left;
    z-index: 2;
}

.hero-kicker {
    margin: 0 0 10px;
    color: var(--light-green);
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
}

.hero-title {
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(1.8rem, 4vw, 3.1rem);
    text-align: left;
    line-height: 1.1;
}

.hero-subtitle {
    margin: 14px 0 0;
    color: var(--text-secondary);
    max-width: 620px;
    font-size: 1rem;
}

.hero-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-btn {
    min-width: 160px;
    text-align: center;
}

.hero-btn.ghost {
    background-color: transparent;
    border-color: var(--accent-green);
    color: var(--light-green);
}

.hero-btn.ghost:hover,
.hero-btn.ghost:focus-visible {
    background-color: rgba(40, 167, 69, 0.14);
    color: var(--text-primary);
}

.hero-ticker {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-ticker span {
    background-color: rgba(36, 36, 36, 0.92);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 700;
    font-size: 0.88rem;
}

.games-sticky {
    position: fixed;
    top: 70px;
    left: 0;
    width: 210px;
    height: calc(100vh - 70px);
    z-index: 900;
    background: linear-gradient(180deg, rgba(14, 36, 28, 0.98) 0%, rgba(18, 18, 18, 0.98) 100%);
    border-right: 1px solid rgba(40, 167, 69, 0.28);
    border-radius: 0;
    padding: 16px 10px 20px;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.5), inset -1px 0 0 rgba(52, 199, 89, 0.15);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(40, 167, 69, 0.45) transparent;
}

.qp-header {
    margin: 0 0 12px;
    padding: 7px 14px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-green) 100%);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.qp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 7px;
    color: var(--text-primary);
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
    margin-bottom: 2px;
}

.qp-item:hover {
    background-color: rgba(11, 93, 59, 0.45);
    border-color: rgba(52, 199, 89, 0.45);
    color: var(--light-green);
    transform: translateX(3px);
}

.qp-icon {
    min-width: 32px;
    padding: 3px 6px;
    border-radius: 999px;
    background: rgba(52, 199, 89, 0.16);
    border: 1px solid rgba(52, 199, 89, 0.3);
    color: var(--light-green);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    flex-shrink: 0;
    line-height: 1;
}

.casino-strip {
    width: calc(100% - 210px);
    margin-left: 210px;
    padding: 10px 24px 0;
    overflow: hidden;
    box-sizing: border-box;
}

.casino-strip-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.casino-strip-track {
    display: flex;
    gap: 10px;
    width: max-content;
    padding-bottom: 2px;
    will-change: transform;
}

.casino-strip-track.track-left {
    animation: casinoStripMoveLeft 40s linear infinite;
}

.casino-strip-track.track-right {
    animation: casinoStripMoveRight 40s linear infinite;
}

.casino-strip:hover .casino-strip-track {
    animation-play-state: paused;
}

.casino-tile {
    display: block;
    flex: 0 0 250px;
    width: 250px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(52, 199, 89, 0.45);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.casino-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(52, 199, 89, 0.34) 0%, rgba(52, 199, 89, 0.12) 36%, rgba(52, 199, 89, 0) 88%),
        linear-gradient(140deg, rgba(52, 199, 89, 0.18) 0%, rgba(11, 93, 59, 0.14) 58%, rgba(52, 199, 89, 0.2) 100%);
    opacity: 0.78;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.casino-tile:hover {
    transform: translateY(-4px);
    border-color: var(--light-green);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(52, 199, 89, 0.35), var(--glow);
}

.casino-tile:hover::after {
    opacity: 0.92;
}

.casino-tile img {
    width: 100%;
    height: 145px;
    display: block;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.03);
    transition: transform 0.25s ease, filter 0.25s ease;
}

.casino-tile:hover img {
    transform: scale(1.03);
    filter: saturate(1.18) contrast(1.06);
}

@keyframes casinoStripMoveLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 5px));
    }
}

@keyframes casinoStripMoveRight {
    from {
        transform: translateX(calc(-50% - 5px));
    }
    to {
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .casino-strip-track {
        animation: none;
    }
}

.game-parlour {
    width: calc(100% - 210px);
    margin: 18px 0 0 210px;
    padding: 0 24px;
    box-sizing: border-box;
}

.parlour-wrap {
    background: linear-gradient(145deg, rgba(11, 93, 59, 0.3), rgba(30, 30, 30, 0.96));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 18px;
}

.parlour-wrap p {
    color: var(--text-secondary);
    margin-top: 6px;
}

.parlour-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}

.parlour-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 14px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.parlour-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-green);
    box-shadow: var(--glow);
}

.parlour-card h3 {
    margin: 0;
    color: var(--text-primary);
}

.parlour-card p {
    margin: 8px 0 0;
    color: var(--text-secondary);
}

.container {
    width: calc(100% - 210px);
    margin-left: 210px;
    padding: 20px 24px;
    background-color: var(--bg-main);
    box-sizing: border-box;
}

h1 {
    color: var(--text-primary);
    text-align: center;
    margin-top: 20px;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

h2,
h3,
h4 {
    color: var(--primary-green);
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.container h2 {
    position: relative;
    margin: 30px 0 16px;
    padding: 14px 20px 18px;
    border-radius: 16px;
    color: #f7ffcf;
    font-size: clamp(1.45rem, 2.4vw, 2.15rem);
    letter-spacing: 0.01em;
    background:
        linear-gradient(90deg, rgba(52, 199, 89, 0.22) 0%, rgba(52, 199, 89, 0.08) 45%, rgba(201, 147, 34, 0.12) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
    border: 1px solid rgba(149, 240, 106, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 28px rgba(0, 0, 0, 0.2);
    text-shadow: 0 0 10px rgba(247, 255, 207, 0.18), 0 0 24px rgba(52, 199, 89, 0.2);
}

.container h2::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    border-radius: 16px 0 0 16px;
    background: linear-gradient(180deg, #f7dc7a 0%, #34c759 100%);
    box-shadow: 0 0 16px rgba(247, 220, 122, 0.28);
}

.container h2::after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: 9px;
    width: 86px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f7dc7a 0%, #34c759 100%);
    box-shadow: 0 0 14px rgba(52, 199, 89, 0.28);
}

mark {
    background-color: rgba(11, 93, 59, 0.28);
    color: var(--text-primary);
    border-radius: 4px;
    padding: 0 4px;
}

.services-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    overflow: hidden;
    border-radius: 8px;
}

#additional-intro {
    overflow: hidden;
}

#additional-intro h2 {
    clear: both;
}

#additional-intro h2 a {
    color: inherit;
    text-decoration: none;
}

#additional-intro h2 a:hover,
#additional-intro h2 a:focus-visible {
    text-decoration: underline;
}

.tiger-feature-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.9fr);
    gap: 16px;
    align-items: center;
    margin: 6px 0 18px;
}

.tiger-feature-panel--reverse .tiger-feature-copy {
    order: 2;
}

.tiger-feature-panel--reverse .tiger-feature-media {
    order: 1;
}

.tiger-feature-copy {
    padding: 18px 20px;
    border-radius: 14px;
    background:
        radial-gradient(circle at top right, rgba(52, 199, 89, 0.16), transparent 44%),
        linear-gradient(155deg, rgba(16, 38, 30, 0.95) 0%, rgba(19, 19, 19, 0.96) 100%);
    color: var(--text-primary);
    border: 1px solid rgba(52, 199, 89, 0.26);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.tiger-feature-copy h3 {
    margin: 0 0 12px;
    color: var(--text-primary);
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    line-height: 1.15;
    text-shadow: 0 0 10px rgba(52, 199, 89, 0.18);
}

.tiger-feature-copy p {
    margin: 0 0 12px;
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.5;
}

.tiger-feature-points {
    margin-top: 8px;
}

.tiger-feature-points h4 {
    margin: 0 0 8px;
    color: var(--light-green);
    font-size: 1rem;
}

.tiger-feature-points ul {
    margin: 0;
    padding-left: 24px;
    color: var(--text-primary);
}

.tiger-feature-points li {
    margin-bottom: 7px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.tiger-feature-note {
    margin-top: 16px;
    font-weight: 600;
    color: #d7eadf;
}

.tiger-feature-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 18px;
    border-radius: 8px;
    background: linear-gradient(180deg, var(--light-green), var(--accent-green));
    color: #03170e;
    font-size: 0.88rem;
    font-weight: 800;
    border: 1px solid rgba(52, 199, 89, 0.5);
    box-shadow: 0 8px 16px rgba(40, 167, 69, 0.24);
}

.tiger-feature-cta:hover,
.tiger-feature-cta:focus-visible {
    color: #031109;
    background: linear-gradient(180deg, #79de8e, var(--light-green));
}

.tiger-feature-media {
    position: relative;
    height: 100%;
    min-height: 320px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(52, 199, 89, 0.24);
    background: linear-gradient(150deg, rgba(11, 93, 59, 0.16), rgba(22, 22, 22, 0.94));
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.tiger-feature-art {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
}

.tiger-feature-art::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.12), rgba(18, 18, 18, 0.45));
}

.tiger-feature-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.06) contrast(1.04);
}

.tiger-feature-frame {
    display: none;
}

.tiger-feature-badge {
    display: none;
}

.tiger-feature-dots {
    display: none;
}

.tiger-feature-caption {
    display: none;
}

.tiger-feature-panel--tiger .tiger-feature-copy {
    border-color: rgba(52, 199, 89, 0.3);
}

.tiger-feature-panel--fairplay .tiger-feature-copy {
    background:
        radial-gradient(circle at top right, rgba(67, 210, 189, 0.18), transparent 46%),
        linear-gradient(155deg, rgba(12, 45, 43, 0.95) 0%, rgba(18, 24, 24, 0.96) 100%);
    border-color: rgba(67, 210, 189, 0.34);
}

.tiger-feature-panel--fairplay .tiger-feature-copy h3 {
    text-shadow: 0 0 10px rgba(67, 210, 189, 0.22);
}

.tiger-feature-panel--fairplay .tiger-feature-cta {
    background: linear-gradient(180deg, #67e3cf, #2aa897);
    border-color: rgba(67, 210, 189, 0.5);
    color: #031713;
}

.tiger-feature-panel--lazer247 .tiger-feature-copy {
    background:
        radial-gradient(circle at top right, rgba(100, 182, 255, 0.18), transparent 46%),
        linear-gradient(155deg, rgba(15, 34, 54, 0.95) 0%, rgba(18, 22, 30, 0.96) 100%);
    border-color: rgba(100, 182, 255, 0.34);
}

.tiger-feature-panel--lazer247 .tiger-feature-copy h3 {
    text-shadow: 0 0 10px rgba(100, 182, 255, 0.22);
}

.tiger-feature-panel--lazer247 .tiger-feature-cta {
    background: linear-gradient(180deg, #7ec8ff, #4d92e0);
    border-color: rgba(100, 182, 255, 0.48);
    color: #041426;
}

.tiger-feature-panel--gold365 .tiger-feature-copy {
    background:
        radial-gradient(circle at top right, rgba(241, 194, 78, 0.2), transparent 46%),
        linear-gradient(155deg, rgba(42, 33, 14, 0.95) 0%, rgba(24, 20, 14, 0.96) 100%);
    border-color: rgba(241, 194, 78, 0.34);
}

.tiger-feature-panel--gold365 .tiger-feature-copy h3 {
    text-shadow: 0 0 10px rgba(241, 194, 78, 0.24);
}

.tiger-feature-panel--gold365 .tiger-feature-cta {
    background: linear-gradient(180deg, #f6cd68, #d79b28);
    border-color: rgba(241, 194, 78, 0.46);
    color: #221705;
}

.tiger-feature-panel--xbet .tiger-feature-copy {
    background:
        radial-gradient(circle at top right, rgba(255, 103, 103, 0.18), transparent 46%),
        linear-gradient(155deg, rgba(45, 14, 20, 0.95) 0%, rgba(24, 18, 20, 0.96) 100%);
    border-color: rgba(255, 103, 103, 0.34);
}

.tiger-feature-panel--xbet .tiger-feature-copy h3 {
    text-shadow: 0 0 10px rgba(255, 103, 103, 0.22);
}

.tiger-feature-panel--xbet .tiger-feature-cta {
    background: linear-gradient(180deg, #ff8f8f, #de4f65);
    border-color: rgba(255, 103, 103, 0.48);
    color: #24070d;
}

.tiger-feature-panel--parimatch .tiger-feature-copy {
    background:
        radial-gradient(circle at top right, rgba(164, 123, 255, 0.2), transparent 46%),
        linear-gradient(155deg, rgba(30, 20, 58, 0.95) 0%, rgba(18, 18, 30, 0.96) 100%);
    border-color: rgba(164, 123, 255, 0.34);
}

.tiger-feature-panel--parimatch .tiger-feature-copy h3 {
    text-shadow: 0 0 10px rgba(164, 123, 255, 0.24);
}

.tiger-feature-panel--parimatch .tiger-feature-cta {
    background: linear-gradient(180deg, #bf9bff, #8458d9);
    border-color: rgba(164, 123, 255, 0.48);
    color: #170a2b;
}

.tiger-feature-panel--taj777 .tiger-feature-copy {
    background:
        radial-gradient(circle at top right, rgba(92, 230, 143, 0.18), transparent 46%),
        linear-gradient(155deg, rgba(14, 52, 30, 0.95) 0%, rgba(17, 25, 20, 0.96) 100%);
    border-color: rgba(92, 230, 143, 0.34);
}

.tiger-feature-panel--taj777 .tiger-feature-copy h3 {
    text-shadow: 0 0 10px rgba(92, 230, 143, 0.24);
}

.tiger-feature-panel--taj777 .tiger-feature-cta {
    background: linear-gradient(180deg, #82ecab, #3ab56b);
    border-color: rgba(92, 230, 143, 0.48);
    color: #032212;
}

.tiger-feature-panel--reddy .tiger-feature-copy {
    background:
        radial-gradient(circle at top right, rgba(255, 140, 100, 0.2), transparent 46%),
        linear-gradient(155deg, rgba(54, 23, 14, 0.95) 0%, rgba(24, 19, 17, 0.96) 100%);
    border-color: rgba(255, 140, 100, 0.34);
}

.tiger-feature-panel--reddy .tiger-feature-copy h3 {
    text-shadow: 0 0 10px rgba(255, 140, 100, 0.24);
}

.tiger-feature-panel--reddy .tiger-feature-cta {
    background: linear-gradient(180deg, #ffb089, #e06b43);
    border-color: rgba(255, 140, 100, 0.48);
    color: #281105;
}

.tiger-feature-panel--allpanel .tiger-feature-copy {
    background:
        radial-gradient(circle at top right, rgba(84, 198, 255, 0.2), transparent 46%),
        linear-gradient(155deg, rgba(11, 38, 58, 0.95) 0%, rgba(16, 20, 26, 0.96) 100%);
    border-color: rgba(84, 198, 255, 0.34);
}

.tiger-feature-panel--allpanel .tiger-feature-copy h3 {
    text-shadow: 0 0 10px rgba(84, 198, 255, 0.24);
}

.tiger-feature-panel--allpanel .tiger-feature-cta {
    background: linear-gradient(180deg, #7ad4ff, #3d8ad9);
    border-color: rgba(84, 198, 255, 0.48);
    color: #071b2f;
}

.tiger-feature-panel--diamond .tiger-feature-copy {
    background:
        radial-gradient(circle at top right, rgba(216, 238, 255, 0.22), transparent 46%),
        linear-gradient(155deg, rgba(26, 31, 48, 0.95) 0%, rgba(18, 18, 24, 0.96) 100%);
    border-color: rgba(216, 238, 255, 0.35);
}

.tiger-feature-panel--diamond .tiger-feature-copy h3 {
    text-shadow: 0 0 12px rgba(216, 238, 255, 0.24);
}

.tiger-feature-panel--diamond .tiger-feature-cta {
    background: linear-gradient(180deg, #edf6ff, #acc9e4);
    border-color: rgba(216, 238, 255, 0.48);
    color: #0f1d2a;
}

.tiger-feature-panel--lordsexch .tiger-feature-copy {
    background:
        radial-gradient(circle at top right, rgba(252, 181, 74, 0.2), transparent 46%),
        linear-gradient(155deg, rgba(54, 31, 8, 0.95) 0%, rgba(26, 20, 14, 0.96) 100%);
    border-color: rgba(252, 181, 74, 0.35);
}

.tiger-feature-panel--lordsexch .tiger-feature-copy h3 {
    text-shadow: 0 0 10px rgba(252, 181, 74, 0.24);
}

.tiger-feature-panel--lordsexch .tiger-feature-cta {
    background: linear-gradient(180deg, #ffd086, #d48b1d);
    border-color: rgba(252, 181, 74, 0.48);
    color: #2a1702;
}

.tiger-feature-panel--lotusbook .tiger-feature-copy {
    background:
        radial-gradient(circle at top right, rgba(255, 121, 186, 0.2), transparent 46%),
        linear-gradient(155deg, rgba(58, 16, 40, 0.95) 0%, rgba(25, 17, 22, 0.96) 100%);
    border-color: rgba(255, 121, 186, 0.35);
}

.tiger-feature-panel--lotusbook .tiger-feature-copy h3 {
    text-shadow: 0 0 10px rgba(255, 121, 186, 0.24);
}

.tiger-feature-panel--lotusbook .tiger-feature-cta {
    background: linear-gradient(180deg, #ff9bc8, #de4f98);
    border-color: rgba(255, 121, 186, 0.48);
    color: #2c0818;
}

.tiger-feature-panel--rabet121 .tiger-feature-copy {
    background:
        radial-gradient(circle at top right, rgba(122, 255, 214, 0.18), transparent 46%),
        linear-gradient(155deg, rgba(10, 53, 44, 0.95) 0%, rgba(15, 24, 22, 0.96) 100%);
    border-color: rgba(122, 255, 214, 0.35);
}

.tiger-feature-panel--rabet121 .tiger-feature-copy h3 {
    text-shadow: 0 0 10px rgba(122, 255, 214, 0.24);
}

.tiger-feature-panel--rabet121 .tiger-feature-cta {
    background: linear-gradient(180deg, #a3ffe2, #41c2a2);
    border-color: rgba(122, 255, 214, 0.48);
    color: #032018;
}

.tiger-feature-panel--melbet .tiger-feature-copy {
    background:
        radial-gradient(circle at top right, rgba(116, 170, 255, 0.2), transparent 46%),
        linear-gradient(155deg, rgba(14, 28, 56, 0.95) 0%, rgba(16, 18, 26, 0.96) 100%);
    border-color: rgba(116, 170, 255, 0.35);
}

.tiger-feature-panel--melbet .tiger-feature-copy h3 {
    text-shadow: 0 0 10px rgba(116, 170, 255, 0.24);
}

.tiger-feature-panel--melbet .tiger-feature-cta {
    background: linear-gradient(180deg, #9fc1ff, #4a79d6);
    border-color: rgba(116, 170, 255, 0.48);
    color: #06162e;
}

.tiger-feature-panel--stake .tiger-feature-copy {
    background:
        radial-gradient(circle at top right, rgba(122, 255, 132, 0.18), transparent 46%),
        linear-gradient(155deg, rgba(13, 45, 18, 0.95) 0%, rgba(17, 21, 18, 0.96) 100%);
    border-color: rgba(122, 255, 132, 0.35);
}

.tiger-feature-panel--stake .tiger-feature-copy h3 {
    text-shadow: 0 0 10px rgba(122, 255, 132, 0.24);
}

.tiger-feature-panel--stake .tiger-feature-cta {
    background: linear-gradient(180deg, #a7ff97, #52cf63);
    border-color: rgba(122, 255, 132, 0.48);
    color: #072009;
}

.tiger-feature-panel--bet365 .tiger-feature-copy {
    background:
        radial-gradient(circle at top right, rgba(230, 255, 117, 0.2), transparent 46%),
        linear-gradient(155deg, rgba(42, 54, 12, 0.95) 0%, rgba(21, 24, 14, 0.96) 100%);
    border-color: rgba(230, 255, 117, 0.35);
}

.tiger-feature-panel--bet365 .tiger-feature-copy h3 {
    text-shadow: 0 0 10px rgba(230, 255, 117, 0.24);
}

.tiger-feature-panel--bet365 .tiger-feature-cta {
    background: linear-gradient(180deg, #edff98, #b1c83a);
    border-color: rgba(230, 255, 117, 0.48);
    color: #1c2407;
}

.tiger-feature-panel--dubaiexch365 .tiger-feature-copy {
    background:
        radial-gradient(circle at top right, rgba(255, 165, 108, 0.2), transparent 46%),
        linear-gradient(155deg, rgba(58, 24, 10, 0.95) 0%, rgba(25, 18, 15, 0.96) 100%);
    border-color: rgba(255, 165, 108, 0.35);
}

.tiger-feature-panel--dubaiexch365 .tiger-feature-copy h3 {
    text-shadow: 0 0 10px rgba(255, 165, 108, 0.24);
}

.tiger-feature-panel--dubaiexch365 .tiger-feature-cta {
    background: linear-gradient(180deg, #ffc199, #df7e49);
    border-color: rgba(255, 165, 108, 0.48);
    color: #2b1408;
}

.services-table th {
    background-color: var(--primary-green);
    color: var(--text-primary);
    padding: 12px 10px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.services-table td {
    background-color: var(--bg-secondary);
    padding: 11px 10px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    color: var(--text-secondary);
}

.services-table tr:hover td {
    background-color: var(--bg-card);
    color: var(--text-primary);
}

.profiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    padding: 0;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.profile-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-green);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.image-wrapper {
    position: relative;
}

.profile-card img {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
}

.watermark {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light-green);
    font-size: 1.2em;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.85);
}

.profile-card h3 {
    color: var(--text-primary);
    margin: 10px 0 5px;
}

.stars {
    color: var(--accent-green);
    margin: 0;
    font-size: 1.2em;
}

.contact-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    background-color: var(--bg-secondary);
    padding: 10px 0;
    z-index: 1000;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.25);
}

.btn {
    padding: 12px 25px;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    background-color: var(--accent-green);
    border: 1px solid transparent;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    background-color: var(--light-green);
    box-shadow: var(--glow);
}

.call,
.whatsapp {
    background-color: var(--accent-green);
}

.call:hover,
.whatsapp:hover {
    background-color: var(--light-green);
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.faq-item h3 {
    color: var(--text-primary);
    cursor: pointer;
}

.faq-item p {
    color: var(--text-secondary);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-green);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-secondary);
}

.testimonial-card h4 {
    margin: 10px 0;
    color: var(--text-primary);
}

.testimonial-card .stars {
    color: var(--light-green);
}

.casino-footer {
    background:
        radial-gradient(circle at 8% 12%, rgba(52, 199, 89, 0.22), transparent 34%),
        radial-gradient(circle at 92% 16%, rgba(40, 167, 69, 0.2), transparent 35%),
        linear-gradient(170deg, #16120d 0%, #0e1f17 50%, #0c0c0c 100%);
    color: var(--text-primary);
    text-align: left;
    padding: 32px 24px 70px;
    margin-left: 210px;
    width: calc(100% - 210px);
    border-top: 1px solid rgba(52, 199, 89, 0.45);
    box-shadow: inset 0 12px 36px rgba(0, 0, 0, 0.45), 0 -8px 25px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.casino-footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 22px;
    align-items: start;
}

.footer-kicker {
    margin: 0;
    color: var(--light-green);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    font-weight: 800;
}

.footer-brand-block h2 {
    margin: 8px 0 10px;
    font-size: 1.9rem;
    color: #bff7cf;
    text-shadow: 0 0 18px rgba(52, 199, 89, 0.25);
}

.footer-tagline {
    margin: 0;
    max-width: 460px;
    color: #d0d0d0;
    line-height: 1.6;
}

.footer-links-block h3 {
    margin: 0 0 12px;
    color: var(--light-green);
    font-size: 1rem;
}

.footer-links-block ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.footer-links-block a {
    color: #f7f7f7;
    font-weight: 600;
}

.footer-links-block a:hover,
.footer-links-block a:focus-visible {
    color: var(--light-green);
}

.footer-chip-row {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-chip-row span {
    border: 1px solid rgba(52, 199, 89, 0.55);
    background: rgba(52, 199, 89, 0.1);
    color: #bff7cf;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.footer-rule {
    border: none;
    border-top: 1px solid rgba(52, 199, 89, 0.35);
    margin: 22px 0 0;
}

.footer-disclaimer {
    margin-top: 18px;
    padding: 0;
}

.footer-disclaimer h3 {
    margin: 0 0 8px;
    color: #a5f1c0;
}

.footer-disclaimer p {
    margin: 0 0 8px;
    color: #d2d2d2;
    line-height: 1.55;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-copy {
    margin: 16px 0 0;
    color: #b8b8b8;
    text-align: center;
    font-size: 0.92rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.locations-grid a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: bold;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: 4px;
    display: block;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.locations-grid a:hover,
.locations-grid a:focus-visible {
    background-color: var(--primary-green);
    border-color: var(--accent-green);
    color: var(--text-primary);
    box-shadow: var(--glow);
}

input,
select,
textarea,
button {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: var(--glow);
}

@media (max-width: 768px) {
    .container,
    .casino-strip,
    .game-parlour,
    .top-category-strip {
        width: 100%;
        margin-left: 0;
        padding-left: 12px;
        padding-right: 12px;
    }

    .casino-footer {
        margin-left: 0;
        width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }

    .profiles {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 5px;
    }

    .btn {
        width: 100%;
    }

    .hero-content {
        width: calc(100% - 28px);
        text-align: center;
    }

    .hero-title {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-actions .btn {
        width: auto;
    }

    .hero-ticker {
        justify-content: center;
    }

    .parlour-grid {
        grid-template-columns: 1fr;
    }

    .casino-strip-track {
        gap: 8px;
    }

    .casino-tile {
        flex-basis: 170px;
        width: 170px;
    }

    .casino-tile img {
        height: 100px;
    }

    .casino-footer-top {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 1100px) {
    .games-sticky {
        display: none;
    }

    .navbar {
        justify-content: space-between;
        padding-left: 20px;
    }

    .logo,
    .menu-toggle {
        position: static;
    }

    header,
    .top-category-strip,
    .casino-strip,
    .game-parlour,
    .container,
    .casino-footer {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .top-category-strip {
        margin-top: 70px;
        padding: 0;
    }

    .top-category-track {
        gap: 6px;
        padding: 8px 6px;
        animation-duration: 22s;
    }

    .top-category-item {
        min-height: 38px;
        padding: 7px 12px;
        font-size: 0.8rem;
    }

    .top-category-icon {
        width: 22px;
        height: 22px;
        font-size: 0.76rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: var(--bg-secondary);
        border-top: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        margin: 15px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

.nowcalling {
    display: none;
}

.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5), var(--glow);
}

.call-float {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
}

.wa-float {
    width: auto;
    min-width: 54px;
    padding: 0 0 0 14px;
    gap: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366 0%, #169c46 100%);
    box-shadow: 0 14px 30px rgba(22, 156, 70, 0.34), 0 8px 20px rgba(0, 0, 0, 0.42);
}

.floating-btn-label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #f7fff9;
    white-space: nowrap;
}

.floating-btn-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), transparent 55%), rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.floating-btn-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.wa-float:hover,
.wa-float:focus-visible {
    box-shadow: 0 18px 34px rgba(22, 156, 70, 0.42), 0 12px 24px rgba(0, 0, 0, 0.48), var(--glow);
}

.highlight-yellow {
    color: #FFD700;
}

.whatsapp-section {
    background: linear-gradient(135deg, rgba(11, 93, 59, 0.2) 0%, rgba(30, 30, 30, 0.8) 100%);
    border: 1px solid rgba(52, 199, 89, 0.35);
    border-radius: 12px;
    padding: 32px 24px;
    margin: 28px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-section h2 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 2.2rem;
    line-height: 1.2;
}

.whatsapp-section p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
    text-align: center;
    font-size: 1rem;
}

.useful-tips-section {
    background: linear-gradient(135deg, rgba(11, 93, 59, 0.15) 0%, rgba(30, 30, 30, 0.75) 100%);
    border: 1px solid rgba(52, 199, 89, 0.3);
    border-radius: 12px;
    padding: 32px 24px;
    margin: 28px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.tips-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.tips-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.money-icon {
    font-size: 8rem;
    filter: drop-shadow(0 0 20px rgba(52, 199, 89, 0.4));
}

.tips-content h2 {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 1.8rem;
    line-height: 1.3;
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tip-item {
    border-left: 3px solid var(--accent-green);
    padding-left: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.tip-item h3 {
    margin: 0 0 8px 0;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.tip-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.betting-steps-section {
    background: linear-gradient(135deg, rgba(11, 93, 59, 0.16) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 1px solid rgba(52, 199, 89, 0.28);
    border-radius: 12px;
    padding: 28px 20px;
    margin: 28px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.step-card {
    text-align: center;
    padding: 12px 10px;
}

.step-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    background: radial-gradient(circle at 28% 30%, rgba(255, 230, 0, 0.28), rgba(52, 199, 89, 0.2) 55%, rgba(52, 199, 89, 0.08) 100%);
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
}

.step-card h3 {
    margin: 0 0 12px;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.25;
}

.step-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
}

.content-image-gallery {
    margin: 30px 0;
    padding: 18px;
    border: 1px solid rgba(52, 199, 89, 0.24);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.96) 0%, rgba(11, 93, 59, 0.2) 100%);
}

.content-image-gallery h2 {
    margin: 0 0 16px;
    text-align: center;
    color: var(--text-primary);
}

.content-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.content-image-card {
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(52, 199, 89, 0.34);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.content-image-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease, filter 0.25s ease;
    filter: saturate(1.06);
}

.content-image-card:hover img {
    transform: scale(1.03);
    filter: saturate(1.15);
}

.exchange-image-wrap {
    float: right;
    width: min(32%, 300px);
    margin: 8px 0 14px 18px;
    border: 1px solid rgba(52, 199, 89, 0.3);
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(11, 93, 59, 0.16), rgba(30, 30, 30, 0.9));
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.exchange-image-wrap img {
    width: 100%;
    height: 100%;
    max-height: 280px;
    object-fit: cover;
    display: block;
    filter: saturate(1.06) contrast(1.02);
}

.trusted-partners-section {
    margin: 8px 0 24px;
    padding: 16px;
    border: 1px solid rgba(52, 199, 89, 0.3);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(11, 93, 59, 0.16) 0%, rgba(20, 20, 20, 0.9) 100%);
}

.trusted-partners-section h2 {
    margin: 0 0 12px;
    color: var(--text-primary);
    text-align: center;
}

.partner-cards-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.partner-cards-grid::-webkit-scrollbar {
    display: none;
}

.partner-cards-grid.is-animated {
    scroll-behavior: auto;
}

.partner-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
}

.partner-card {
    background: linear-gradient(160deg, rgba(36, 36, 36, 0.95) 0%, rgba(21, 21, 21, 0.95) 100%);
    border: 1px solid rgba(52, 199, 89, 0.26);
    border-radius: 14px;
    padding: 16px 12px 12px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.partner-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-green);
    box-shadow: var(--glow);
}

.partner-card h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.3rem;
    letter-spacing: 0.02em;
}

.partner-site {
    margin: 8px 0 12px;
    color: var(--text-secondary);
    font-weight: 700;
    letter-spacing: 0.03em;
}

.partner-badge {
    margin: 0 auto 10px;
    width: fit-content;
    padding: 7px 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-green) 100%);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.83rem;
}

.partner-offer {
    margin: 0;
    color: var(--light-green);
    font-weight: 700;
}

.partner-meta {
    margin: 5px 0 12px;
    color: var(--text-secondary);
}

.partner-creds {
    margin: 0 0 12px;
    padding: 10px;
    text-align: left;
    border: 1px solid rgba(52, 199, 89, 0.25);
    border-radius: 10px;
    background: rgba(11, 93, 59, 0.13);
    color: var(--text-primary);
    line-height: 1.5;
    font-weight: 700;
}

.partner-btn {
    width: 100%;
    border: 1px solid rgba(40, 167, 69, 0.65);
    background: rgba(40, 167, 69, 0.14);
    color: var(--light-green);
    border-radius: 10px;
    padding: 9px 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.partner-btn:hover,
.partner-btn:focus-visible {
    background: rgba(52, 199, 89, 0.22);
    border-color: var(--light-green);
    color: var(--text-primary);
    box-shadow: var(--glow);
}

.exchange-odds-table {
    width: 100%;
    margin: 16px 0;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 0.95rem;
    background: rgba(11, 93, 59, 0.08);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.exchange-odds-table thead {
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-green) 100%);
}

.exchange-odds-table th {
    padding: 12px;
    color: #fff;
    font-weight: 800;
    text-align: left;
    border-bottom: 2px solid rgba(40, 167, 69, 0.3);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
}

.exchange-odds-table td {
    padding: 12px;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(52, 199, 89, 0.2);
}

.exchange-odds-table thead,
.exchange-odds-table tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.exchange-odds-table tbody {
    display: block;
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(52, 199, 89, 0.42) rgba(18, 18, 18, 0.35);
}

.exchange-odds-table tbody::-webkit-scrollbar {
    width: 6px;
}

.exchange-odds-table tbody::-webkit-scrollbar-thumb {
    background: rgba(52, 199, 89, 0.42);
    border-radius: 999px;
}

.exchange-odds-table tbody::-webkit-scrollbar-track {
    background: rgba(18, 18, 18, 0.35);
}

.exchange-odds-table th,
.exchange-odds-table td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.exchange-odds-table tbody tr:hover {
    background: rgba(40, 167, 69, 0.12);
    transition: background 0.25s ease;
}

.exchange-odds-table tbody tr:last-child td {
    border-bottom: none;
}

.match-schedule-section {
    margin: 26px 0 30px;
}

.match-schedule-shell {
    border-radius: 18px;
    padding: 20px;
    background:
        radial-gradient(circle at top right, rgba(52, 199, 89, 0.18), transparent 34%),
        radial-gradient(circle at bottom left, rgba(11, 93, 59, 0.34), transparent 42%),
        linear-gradient(160deg, rgba(14, 24, 20, 0.98), rgba(18, 18, 18, 0.96));
    border: 1px solid rgba(52, 199, 89, 0.22);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.match-schedule-header {
    margin-bottom: 16px;
    text-align: center;
}

.match-schedule-kicker {
    margin: 0 0 8px;
    color: var(--light-green);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 800;
}

.match-schedule-header h2 {
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(2rem, 4vw, 3rem);
}

.match-schedule-copy {
    max-width: 760px;
    margin: 10px auto 0;
    color: var(--text-secondary);
}

.schedule-board {
    border: 1px solid rgba(52, 199, 89, 0.2);
    border-radius: 18px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(13, 34, 26, 0.96) 0 84px, rgba(35, 35, 35, 0.98) 84px 100%);
    box-shadow: inset 0 1px 0 rgba(52, 199, 89, 0.08);
}

.schedule-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid rgba(52, 199, 89, 0.16);
}

.schedule-tab {
    border: none;
    padding: 16px 12px;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.schedule-tab.is-active {
    background: linear-gradient(180deg, rgba(52, 199, 89, 0.22), rgba(11, 93, 59, 0.38));
    color: #fff;
    box-shadow: inset 0 -2px 0 var(--light-green);
}

.schedule-tab:hover,
.schedule-tab:focus-visible {
    color: #fff;
    background: rgba(52, 199, 89, 0.12);
}

.schedule-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px 6px;
    flex-wrap: wrap;
}

.schedule-meta-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(52, 199, 89, 0.12);
    color: #fff;
    font-size: 0.83rem;
    font-weight: 700;
    border: 1px solid rgba(52, 199, 89, 0.16);
}

.schedule-list {
    padding: 14px 16px 18px;
    display: grid;
    gap: 14px;
}

.schedule-card {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(280px, 1.2fr) minmax(220px, 1fr);
    gap: 22px;
    align-items: center;
    padding: 20px 22px;
    border-radius: 16px;
    background:
        linear-gradient(160deg, rgba(28, 33, 31, 0.98), rgba(20, 20, 20, 0.98));
    color: var(--text-primary);
    border: 1px solid rgba(52, 199, 89, 0.14);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.schedule-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
}

.schedule-team--right {
    text-align: center;
}

.schedule-team-badge {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(52, 199, 89, 0.14), rgba(11, 93, 59, 0.22));
    border: 1px solid rgba(52, 199, 89, 0.24);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.schedule-team-badge img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.schedule-team-badge--fallback {
    color: var(--light-green);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.schedule-team-code {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: var(--text-primary);
}

.schedule-team-name {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.02rem;
    line-height: 1.35;
    max-width: 180px;
}

.schedule-team-stat {
    margin: 0;
    font-size: 1.38rem;
    font-weight: 800;
    color: var(--light-green);
}

.schedule-team-note {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.schedule-card-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.schedule-state-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.schedule-state-pill--recent {
    background: rgba(179, 179, 179, 0.12);
    color: #d8d8d8;
}

.schedule-state-pill--live {
    background: rgba(255, 88, 88, 0.16);
    color: #ff8e8e;
}

.schedule-state-pill--upcoming {
    background: rgba(52, 199, 89, 0.16);
    color: var(--light-green);
}

.schedule-match-label,
.schedule-match-meta,
.schedule-versus,
.schedule-summary {
    margin: 0;
}

.schedule-match-label {
    margin-top: 10px;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text-primary);
}

.schedule-match-meta {
    margin-top: 4px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.schedule-versus {
    margin-top: 8px;
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--light-green);
}

.schedule-summary {
    margin-top: 8px;
    font-size: 1.06rem;
    font-weight: 700;
    color: var(--text-primary);
    max-width: 320px;
    line-height: 1.4;
}

.schedule-detail-btn {
    margin-top: 12px;
    border: 1px solid rgba(52, 199, 89, 0.38);
    border-radius: 8px;
    padding: 9px 16px;
    background: linear-gradient(180deg, var(--accent-green), var(--primary-green));
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
}

.schedule-detail-btn:hover,
.schedule-detail-btn:focus-visible {
    background: linear-gradient(180deg, var(--light-green), var(--accent-green));
    box-shadow: 0 0 0 2px rgba(52, 199, 89, 0.16);
}

.schedule-empty {
    padding: 30px 18px;
    text-align: center;
    color: var(--text-primary);
    font-weight: 700;
}

@media only screen and (max-width: 768px) {
    .tiger-feature-panel {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tiger-feature-panel--reverse .tiger-feature-copy {
        order: 1;
    }

    .tiger-feature-panel--reverse .tiger-feature-media {
        order: 2;
    }

    .tiger-feature-copy {
        padding: 14px 16px;
    }

    .tiger-feature-copy h3 {
        font-size: 1.3rem;
    }

    .tiger-feature-copy p,
    .tiger-feature-points li {
        font-size: 0.85rem;
    }

    .tiger-feature-media {
        min-height: 260px;
    }

    .tiger-feature-art {
        border-radius: 12px;
    }

    .tips-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .money-icon {
        font-size: 5rem;
    }

    .whatsapp-section h2,
    .useful-tips-section h2 {
        font-size: 1.6rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .step-card {
        text-align: left;
        padding: 10px 6px;
    }

    .step-icon {
        margin: 0 0 12px;
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }

    .content-image-gallery {
        padding: 12px;
    }

    .content-image-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .exchange-image-wrap {
        float: none;
        width: 100%;
        margin: 8px 0 14px;
    }

    .exchange-odds-table tbody {
        max-height: 220px;
    }

    .match-schedule-shell {
        padding: 10px;
    }

    .match-schedule-header {
        margin-bottom: 12px;
    }

    .match-schedule-header h2 {
        font-size: 2.1rem;
    }

    .match-schedule-copy {
        font-size: 0.95rem;
        line-height: 1.35;
    }

    .schedule-board {
        border-width: 3px;
        background: linear-gradient(180deg, rgba(13, 34, 26, 0.96) 0 118px, rgba(35, 35, 35, 0.98) 118px 100%);
    }

    .schedule-tab {
        font-size: 0.78rem;
        padding: 12px 6px;
    }

    .schedule-meta {
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
        padding: 10px 10px 4px;
    }

    .schedule-meta-chip {
        padding: 6px 10px;
        font-size: 0.72rem;
    }

    .schedule-card {
        grid-template-columns: minmax(78px, 0.9fr) minmax(120px, 1.1fr) minmax(78px, 0.9fr);
        gap: 8px;
        padding: 14px 10px;
    }

    .schedule-team-name,
    .schedule-summary {
        max-width: none;
    }

    .schedule-team-badge {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .schedule-team-badge img {
        width: 28px;
        height: 28px;
    }

    .schedule-team,
    .schedule-team--right,
    .schedule-card-center {
        text-align: center;
    }

    .schedule-team {
        gap: 4px;
    }

    .schedule-team-code {
        font-size: 1rem;
    }

    .schedule-team-name {
        font-size: 0.78rem;
        line-height: 1.25;
    }

    .schedule-team-stat {
        font-size: 0.82rem;
        line-height: 1.2;
    }

    .schedule-team-note {
        font-size: 0.68rem;
        line-height: 1.2;
    }

    .schedule-state-pill {
        min-width: 66px;
        padding: 5px 8px;
        font-size: 0.64rem;
    }

    .schedule-match-label {
        margin-top: 8px;
        font-size: 0.82rem;
        line-height: 1.25;
    }

    .schedule-match-meta {
        margin-top: 3px;
        font-size: 0.68rem;
        line-height: 1.25;
    }

    .schedule-versus {
        margin-top: 6px;
        font-size: 0.92rem;
    }

    .schedule-summary {
        margin-top: 6px;
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .schedule-detail-btn {
        margin-top: 9px;
        padding: 7px 10px;
        font-size: 0.72rem;
    }

    .schedule-list {
        padding: 10px;
    }

    .exchange-image-wrap img {
        max-height: 220px;
    }

    .partner-cards-grid {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .partner-card h3 {
        font-size: 1.15rem;
    }

    .partner-card {
        flex-basis: 82%;
        max-width: 320px;
    }
}

@media only screen and (max-width: 1200px) and (min-width: 769px) {
    .steps-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 768px) {
    .nowcalling {
        display: block;
        position: fixed;
        bottom: 0;
        width: 100% !important;
        z-index: 9999 !important;
    }

    .lcol {
        background-color: var(--primary-green);
    }

    .rcol {
        background-color: var(--accent-green);
    }

    .lcol a,
    .rcol a {
        display: block;
        padding: 10px 0;
        text-align: center;
        text-decoration: none;
        color: var(--text-primary);
        font-weight: bold;
        transition: background-color 0.25s ease, color 0.25s ease;
    }

    .lcol a:hover,
    .rcol a:hover {
        background-color: var(--light-green);
        color: var(--bg-main);
    }

    .lcol,
    .rcol {
        float: left;
        width: 50%;
    }

    .floating-actions {
        right: 12px;
        bottom: 72px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .wa-float {
        min-width: 48px;
        padding: 0;
        border-radius: 50%;
    }

    .floating-btn-label {
        display: none;
    }

    .floating-btn-icon {
        width: 48px;
        height: 48px;
        border-left: 0;
    }

    .floating-btn-icon svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 1200px) {
    .profiles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .locations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: clamp(1.5rem, 4.5vw, 2rem);
    }

    h2 {
        font-size: clamp(1.2rem, 4vw, 1.7rem);
    }

    .container h2 {
        padding: 12px 16px 16px;
        font-size: clamp(1.2rem, 4vw, 1.7rem);
    }

    .container h2::after {
        left: 16px;
        width: 64px;
    }

    .hero-content {
        width: calc(100% - 24px);
    }

    .hero-actions .btn {
        min-width: 138px;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partner-card {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .services-table {
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 10px;
    }

    .services-table thead,
    .services-table tbody,
    .services-table tr {
        white-space: nowrap;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        padding-bottom: calc(10px + env(safe-area-inset-bottom));
    }

    .betting-steps-section .steps-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding: 4px 2px 10px;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 2px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .betting-steps-section .steps-grid::-webkit-scrollbar {
        display: none;
    }

    .betting-steps-section .step-card {
        flex: 0 0 min(86%, 320px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
        text-align: left;
        padding: 12px 10px;
    }

    .betting-steps-section .step-icon {
        margin: 0 0 10px;
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .casino-strip,
    .game-parlour,
    .container,
    .casino-footer {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-content {
        max-width: 940px;
    }

    .casino-tile {
        flex: 0 0 220px;
        width: 220px;
    }

    .casino-tile img {
        height: 130px;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 12px 14px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .top-category-strip {
        margin-top: 64px;
    }

    .top-category-item {
        font-size: 0.82rem;
        padding: 7px 12px;
        min-height: 38px;
    }

    .hero-header {
        min-height: 360px;
    }

    .hero-title {
        font-size: clamp(1.65rem, 5vw, 2.4rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .tiger-feature-panel {
        grid-template-columns: 1fr;
    }

    .tiger-feature-panel--reverse .tiger-feature-copy {
        order: 1;
    }

    .tiger-feature-panel--reverse .tiger-feature-media {
        order: 2;
    }

    .tiger-feature-media {
        min-height: 240px;
    }

    .exchange-odds-table {
        font-size: 0.88rem;
    }

    .exchange-odds-table th,
    .exchange-odds-table td {
        padding: 10px 8px;
    }

    .match-schedule-shell {
        padding: 14px;
    }
}

@media (max-width: 640px) {
    .navbar {
        padding: 10px 12px;
    }

    .logo {
        font-size: 1.02rem;
    }

    .live-badge {
        padding: 3px 6px;
        font-size: 0.55em;
    }

    .container,
    .casino-strip,
    .game-parlour,
    .top-category-strip,
    .casino-footer {
        padding-left: 10px;
        padding-right: 10px;
    }

    .parlour-wrap,
    .trusted-partners-section,
    .match-schedule-shell,
    .whatsapp-section,
    .useful-tips-section {
        padding: 14px 12px;
    }

    .hero-actions .btn {
        min-width: 124px;
        padding: 10px 14px;
    }

    .hero-ticker span {
        font-size: 0.78rem;
        padding: 6px 10px;
    }
}

/* Final responsive overrides */
@media (max-width: 1100px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 64px;
        left: 0;
        background: rgba(30, 30, 30, 0.98);
        border-top: 1px solid var(--border-color);
        z-index: 1002;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 12px 0;
        text-align: center;
    }

    header,
    .top-category-strip,
    .casino-strip,
    .game-parlour,
    .container,
    .casino-footer {
        margin-left: 0;
        width: 100%;
    }

    .top-category-strip {
        margin-top: 64px;
    }

    .casino-footer-top {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .trusted-partners-section,
    .parlour-wrap,
    .match-schedule-shell,
    .whatsapp-section,
    .useful-tips-section {
        padding: 16px 14px;
    }

    .partner-card {
        flex: 0 0 min(84vw, 320px);
    }

    .content-image-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .top-category-track {
        padding: 8px 4px;
    }

    .hero-content {
        width: calc(100% - 20px);
    }

    .hero-actions {
        gap: 8px;
    }

    .hero-actions .btn {
        min-width: 120px;
    }

    .tiger-feature-media {
        min-height: 210px;
    }

    .tiger-feature-copy h3 {
        font-size: 1.12rem;
        line-height: 1.3;
    }

    .tiger-feature-copy p,
    .tiger-feature-points li {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .content-image-grid {
        grid-template-columns: 1fr;
    }

    .services-table,
    .exchange-odds-table {
        font-size: 0.82rem;
    }

    .exchange-odds-table th,
    .exchange-odds-table td {
        padding: 8px 6px;
    }

    .nowcalling {
        display: block;
    }
}

@media (max-width: 768px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .top-category-strip {
        overflow: hidden;
    }

    .top-category-track {
        min-width: 0;
    }

    .tiger-feature-panel,
    .tiger-feature-copy,
    .tiger-feature-media,
    .tiger-feature-art {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .tiger-feature-copy {
        overflow: hidden;
    }

    .exchange-odds-table th,
    .exchange-odds-table td {
        white-space: normal;
        word-break: break-word;
    }
}

/* Fairplay page banner */
.fairplay-page {
    --fp-orange: #ff6f1a;
    --fp-green: #38b84a;
    --fp-blue: #1aa9e8;
    background-color: #081323;
}

.fairplay-page main {
    padding-top: 70px;
}

.fairplay-page .navbar {
    justify-content: space-between;
    padding: 12px 24px;
    background:
        linear-gradient(90deg, rgba(3, 26, 42, 0.96) 0%, rgba(7, 18, 30, 0.96) 48%, rgba(31, 19, 10, 0.96) 100%);
    border-bottom: 1px solid rgba(26, 169, 232, 0.35);
}

.fairplay-page .logo {
    position: static;
    left: auto;
    display: flex;
    align-items: center;
}

.fairplay-header-logo {
    width: 180px;
    max-width: 42vw;
    display: block;
    filter: drop-shadow(0 0 8px rgba(26, 169, 232, 0.22));
}

.fairplay-footer-logo {
    width: 150px;
    max-width: 100%;
    display: block;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(26, 169, 232, 0.16));
}

.header-auth {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    min-height: 38px;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.auth-link:hover,
.auth-link:focus-visible {
    transform: translateY(-1px);
}

.login-link {
    color: #ffffff;
    background: linear-gradient(180deg, #ff8642, var(--fp-orange));
    border-color: rgba(255, 111, 26, 0.65);
}

.register-link {
    color: #ffffff;
    background: linear-gradient(180deg, #58cf63, var(--fp-green));
    border-color: rgba(56, 184, 74, 0.65);
}

.fairplay-page .casino-footer {
    margin-left: 0;
    width: 100%;
}

.fairplay-banner {
    position: relative;
    min-height: calc(100vh - 70px);
    padding: 44px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(4, 8, 15, 0.3), rgba(4, 8, 15, 0.7)),
        url("../images/fairplay-bg.webp") center center / cover no-repeat;
}

.fairplay-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 24%, rgba(255, 133, 66, 0.28), transparent 30%),
        radial-gradient(circle at 88% 28%, rgba(255, 133, 66, 0.24), transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 52%);
    pointer-events: none;
}

.fairplay-login-card {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    background: linear-gradient(130deg, rgba(5, 11, 22, 0.82), rgba(7, 14, 22, 0.66));
    border: 1px solid rgba(255, 111, 26, 0.75);
    border-radius: 10px;
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(3px);
    padding: 20px 28px 24px;
}

.fairplay-logo {
    display: block;
    width: min(250px, 62%);
    margin: 0 auto 16px;
}

.fairplay-tabs {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.45);
    margin-bottom: 22px;
}

.tab-btn {
    flex: 1;
    border: none;
    padding: 10px 14px;
    color: #ffffff;
    background: transparent;
    font-size: 1.02rem;
    cursor: pointer;
}

.tab-btn.is-active {
    background: var(--fp-orange);
}

.fairplay-form {
    display: grid;
    gap: 14px;
}

.mobile-input-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 10px;
}

.mobile-input-row select,
.mobile-input-row input,
.password-row input {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: #f1f1f1;
    padding: 11px 6px;
    font-size: 1rem;
    outline: none;
}

.mobile-input-row select {
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    padding: 9px 6px;
}


/* Laser247 page banner */
.laser247-page {
    --l247-blue-deep: #0f1a96;
    --l247-blue-main: #1b44e0;
    --l247-blue-bright: #2c74ff;
    --l247-blue-soft: #73a4ff;
    --l247-text: #eef3ff;
    background: linear-gradient(180deg, #0f1a96 0%, #1b44e0 56%, #2c74ff 100%);
}

.laser247-page main {
    padding-top: 70px;
}

.laser247-page .navbar {
    justify-content: space-between;
    padding: 12px 24px;
    background: linear-gradient(180deg, rgba(11, 27, 152, 0.98) 0%, rgba(29, 76, 231, 0.95) 100%);
    border-bottom: 1px solid rgba(147, 181, 255, 0.45);
}

.laser247-page .logo {
    position: static;
    left: auto;
    display: flex;
    align-items: center;
}

.laser247-header-logo {
    width: 180px;
    max-width: 42vw;
    display: block;
    border-radius: 6px;
    box-shadow: 0 4px 18px rgba(6, 18, 98, 0.35);
}

.laser247-page .header-auth {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.laser247-page .auth-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    min-height: 38px;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.laser247-page .auth-link:hover,
.laser247-page .auth-link:focus-visible {
    transform: translateY(-1px);
}

.laser247-page .login-link {
    color: #ffffff;
    background: linear-gradient(180deg, #4c88ff, var(--l247-blue-main));
    border-color: rgba(147, 181, 255, 0.65);
}

.laser247-page .register-link {
    color: #ffffff;
    background: linear-gradient(180deg, #2f5df0, #1634b4);
    border-color: rgba(131, 166, 255, 0.55);
}

.laser247-page .casino-footer {
    margin-left: 0;
    width: 100%;
    background:
        radial-gradient(circle at 10% 10%, rgba(102, 148, 255, 0.28), transparent 36%),
        radial-gradient(circle at 90% 15%, rgba(76, 136, 255, 0.24), transparent 34%),
        linear-gradient(180deg, #0f209f 0%, #1536bc 55%, #1b4be0 100%);
    border-top: 1px solid rgba(147, 181, 255, 0.5);
    color: var(--l247-text);
}

.laser247-banner {
    position: relative;
    min-height: calc(100vh - 70px);
    padding: 44px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(7, 20, 112, 0.48), rgba(20, 61, 198, 0.72)),
        linear-gradient(180deg, #0f1a96 0%, #1b44e0 58%, #2c74ff 100%);
}

.laser247-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 24%, rgba(127, 169, 255, 0.32), transparent 30%),
        radial-gradient(circle at 82% 28%, rgba(102, 148, 255, 0.24), transparent 30%),
        radial-gradient(circle at 50% 58%, rgba(255, 255, 255, 0.08), transparent 54%);
    pointer-events: none;
}

.laser247-login-card {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    background: linear-gradient(135deg, rgba(10, 30, 140, 0.82), rgba(25, 71, 220, 0.62));
    border: 1px solid rgba(147, 181, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    padding: 20px 28px 24px;
}

.laser247-logo {
    display: block;
    width: min(250px, 62%);
    margin: 0 auto 16px;
    border-radius: 8px;
}

.laser247-tabs {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    background-color: rgba(11, 29, 125, 0.42);
    margin-bottom: 22px;
}

.laser247-page .tab-btn {
    color: var(--l247-text);
}

.laser247-page .tab-btn.is-active {
    background: linear-gradient(180deg, #4e8aff, #2c66f6);
}

.laser247-form {
    display: grid;
    gap: 14px;
}

.laser247-page .mobile-input-row select,
.laser247-page .mobile-input-row input,
.laser247-page .password-row input {
    color: var(--l247-text);
    border-bottom-color: rgba(214, 227, 255, 0.46);
}

.laser247-page .login-mode-row {
    color: var(--l247-text);
}

.laser247-page .login-mode-row input {
    accent-color: var(--l247-blue-bright);
}

.laser247-page .forgot-row a {
    color: #d7e5ff;
}

.laser247-page .login-btn {
    background: linear-gradient(180deg, #4e8aff, #2a63f0);
}

.laser247-page .demo-btn {
    background: linear-gradient(180deg, #2450d4, #1738b4);
    border: 1px solid rgba(183, 204, 255, 0.3);
}

.laser247-page .telegram-circle {
    background: #2f70ff;
}

.laser247-page .register-row,
.laser247-page .register-row a,
.laser247-page .login-with {
    color: var(--l247-text);
}

.laser247-page .footer-kicker,
.laser247-page .footer-links-block h3,
.laser247-page .footer-disclaimer h3 {
    color: #dbe8ff;
}

.laser247-page .footer-brand-block h2,
.laser247-page .footer-tagline,
.laser247-page .footer-links-block a,
.laser247-page .footer-disclaimer p,
.laser247-page .footer-copy {
    color: var(--l247-text);
}

.laser247-page .footer-chip-row span {
    border: 1px solid rgba(183, 204, 255, 0.5);
    background: rgba(123, 165, 255, 0.18);
    color: #ecf3ff;
}

.laser247-page .footer-rule {
    border-top-color: rgba(183, 204, 255, 0.45);
}

.laser247-footer-logo {
    width: 150px;
    max-width: 100%;
    display: block;
    margin-bottom: 10px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .laser247-page .navbar {
        padding: 10px 12px;
    }

    .laser247-header-logo {
        width: 132px;
    }

    .laser247-page .header-auth {
        gap: 7px;
    }

    .laser247-page .auth-link {
        min-width: 82px;
        min-height: 34px;
        padding: 7px 12px;
        font-size: 0.88rem;
    }

    .laser247-login-card {
        padding: 16px;
    }

    .laser247-tabs {
        margin-bottom: 16px;
    }

    .laser247-page .tab-btn {
        font-size: 0.92rem;
        padding: 9px 10px;
    }

    .laser247-footer-logo {
        width: 126px;
    }
}
.mobile-input-row input::placeholder,
.password-row input::placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.login-mode-row {
    display: flex;
    gap: 16px;
    align-items: center;
    color: #ffffff;
    font-weight: 600;
}

/* Parimatch page theme */
.parimatch-page {
    --pm-black: #0a0a0a;
    --pm-dark-gray: #1a1a1a;
    --pm-card-gray: #2a2a2a;
    --pm-input-gray: #3a3a3a;
    --pm-text: #e0e0e0;
    --pm-accent: #ffd700;
    background-color: var(--pm-black);
    color: var(--pm-text);
}

.parimatch-top-nav {
    height: 70px;
    background: var(--pm-black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.parimatch-nav-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.parimatch-nav-logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    display: block;
}

.parimatch-nav-auth {
    display: flex;
    gap: 14px;
    align-items: center;
}

.parimatch-nav-link {
    color: var(--pm-text);
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 4px;
    background: transparent;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    border: 1px solid transparent;
}

.parimatch-nav-link:hover,
.parimatch-nav-link:focus-visible {
    background: rgba(255, 215, 0, 0.14);
    color: var(--pm-accent);
}

.parimatch-banner {
    min-height: calc(100vh - 70px);
    display: grid;
    place-items: center;
    padding: 32px 14px;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.parimatch-login-card {
    width: min(600px, 100%);
    background: var(--pm-card-gray);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.parimatch-login-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.parimatch-login-header h1 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--pm-text);
    font-weight: 600;
}

.parimatch-settings-btn {
    background: transparent;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px;
    transition: opacity 0.2s ease;
}

.parimatch-settings-btn:hover {
    opacity: 0.7;
}

.parimatch-google-btn {
    width: 100%;
    padding: 14px;
    background: var(--pm-input-gray);
    color: var(--pm-text);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.parimatch-google-btn:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
}

.parimatch-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    color: #888;
    font-size: 0.9rem;
}

.parimatch-divider::before,
.parimatch-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.parimatch-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.parimatch-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: #888;
    padding: 12px 0;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.parimatch-tab.is-active {
    color: var(--pm-accent);
    border-bottom-color: var(--pm-accent);
}

.parimatch-login-form {
    display: grid;
    gap: 14px;
}

.parimatch-input-group {
    display: block;
}

.parimatch-input-group input,
.parimatch-password-group input {
    width: 100%;
    padding: 14px;
    background: var(--pm-input-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--pm-text);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.parimatch-input-group input::placeholder,
.parimatch-password-group input::placeholder {
    color: #888;
}

.parimatch-input-group input:focus,
.parimatch-password-group input:focus {
    border-color: rgba(255, 215, 0, 0.4);
}

.parimatch-phone-input {
    display: flex;
    gap: 8px;
}

.parimatch-country-code {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 12px;
    background: var(--pm-input-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-weight: 600;
    color: var(--pm-text);
}

.parimatch-flag {
    width: 20px;
    height: 14px;
}

.parimatch-phone-input input {
    flex: 1;
}

.parimatch-password-group {
    position: relative;
}

.parimatch-password-group input {
    width: 100%;
    padding-right: 40px;
}

.parimatch-show-pwd {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.parimatch-show-pwd:hover {
    opacity: 1;
}

.parimatch-forgot-pwd {
    color: var(--pm-accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.2s ease;
}

.parimatch-forgot-pwd:hover {
    opacity: 0.8;
}

.parimatch-login-btn {
    width: 100%;
    padding: 14px;
    background: var(--pm-input-gray);
    color: var(--pm-text);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.parimatch-login-btn:hover {
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.5);
}

.parimatch-signup-row {
    margin: 16px 0 0;
    text-align: center;
    color: var(--pm-text);
    font-size: 0.95rem;
}

.parimatch-signup-row a {
    color: var(--pm-accent);
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.parimatch-signup-row a:hover {
    opacity: 0.8;
}

.parimatch-page .casino-footer {
    margin-left: 0;
    width: 100%;
    background:
        radial-gradient(circle at 8% 10%, rgba(255, 215, 0, 0.15), transparent 32%),
        linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.parimatch-page .footer-brand-block h2,
.parimatch-page .footer-kicker,
.parimatch-page .footer-links-block h3,
.parimatch-page .footer-disclaimer h3,
.parimatch-page .footer-tagline,
.parimatch-page .footer-links-block a,
.parimatch-page .footer-disclaimer p,
.parimatch-page .footer-copy {
    color: var(--pm-text);
}

.parimatch-page .footer-chip-row span {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
}

.parimatch-page .footer-rule {
    border-top-color: rgba(255, 215, 0, 0.25);
}

.parimatch-footer-logo {
    width: 160px;
    max-width: 100%;
    display: block;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .parimatch-top-nav {
        height: 60px;
        padding: 0 14px;
    }

    .parimatch-nav-logo-img {
        height: 32px;
    }

    .parimatch-nav-link {
        padding: 6px 12px;
        font-size: 0.9rem;
    }

    .parimatch-banner {
        min-height: calc(100vh - 60px);
        padding: 20px 12px;
    }

    .parimatch-login-card {
        padding: 20px;
        width: min(360px, 100%);
    }

    .parimatch-login-header h1 {
        font-size: 1.5rem;
    }

    .parimatch-login-form,
    .parimatch-input-group input,
    .parimatch-password-group input,
    .parimatch-phone-input {
        gap: 10px;
    }

    .parimatch-footer-logo {
        width: 130px;
    }
}

/* Taj777 page theme */
.taj777-page {
    --t7-dark-blue: #2d3e4a;
    --t7-header-blue: #3a4f5f;
    --t7-light-bg: #f5f5f5;
    --t7-input: #dae6e8;
    --t7-green: #4a9b6f;
    --t7-green-dark: #3d8259;
    --t7-text: #1a1a1a;
    --t7-link: #0066cc;
    background-color: var(--t7-dark-blue);
}

.taj777-top-nav {
    height: 70px;
    background: var(--t7-header-blue);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.taj777-nav-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.taj777-nav-logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    display: block;
}

.taj777-nav-auth {
    display: flex;
    gap: 14px;
    align-items: center;
}

.taj777-nav-link {
    color: #ffffff;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 4px;
    background: transparent;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    border: 1px solid transparent;
}

.taj777-nav-link:hover,
.taj777-nav-link:focus-visible {
    background: rgba(74, 155, 111, 0.18);
    color: #ffffff;
}

.taj777-banner {
    min-height: calc(100vh - 70px);
    display: grid;
    place-items: center;
    padding: 32px 14px;
    background: linear-gradient(135deg, var(--t7-dark-blue) 0%, #34495a 100%);
}

.taj777-login-card {
    width: min(640px, 100%);
    background: var(--t7-light-bg);
    border-radius: 8px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.taj777-login-header {
    background: var(--t7-header-blue);
    color: #ffffff;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.taj777-login-header h1 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
}

.taj777-close-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2.2rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    transition: opacity 0.2s ease;
}

.taj777-close-btn:hover {
    opacity: 0.7;
}

.taj777-login-form {
    padding: 28px;
    display: grid;
    gap: 18px;
}

.taj777-form-group {
    display: grid;
    gap: 6px;
}

.taj777-form-group label {
    color: var(--t7-text);
    font-weight: 600;
    font-size: 0.95rem;
}

.taj777-form-group input {
    padding: 12px;
    background: var(--t7-input);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    color: var(--t7-text);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.taj777-form-group input::placeholder {
    color: #888;
}

.taj777-form-group input:focus {
    border-color: var(--t7-green);
    box-shadow: 0 0 0 3px rgba(74, 155, 111, 0.1);
}

.taj777-password-wrapper {
    position: relative;
}

.taj777-password-wrapper input {
    width: 100%;
    padding-right: 42px;
}

.taj777-toggle-pwd {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    opacity: 0.7;
    padding: 4px;
    transition: opacity 0.2s ease;
}

.taj777-toggle-pwd:hover {
    opacity: 1;
}

.taj777-checkbox-group {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: rgba(74, 155, 111, 0.06);
    border-radius: 4px;
    margin-top: 8px;
}

.taj777-checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--t7-green);
}

.taj777-checkbox-group label {
    margin: 0;
    color: var(--t7-text);
    font-size: 0.85rem;
    line-height: 1.4;
    cursor: pointer;
}

.taj777-age-highlight {
    font-weight: 700;
    color: #d32f2f;
}

.taj777-checkbox-group a {
    color: var(--t7-link);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.taj777-checkbox-group a:hover {
    color: #0052a3;
}

.taj777-login-btn,
.taj777-demo-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.taj777-login-btn {
    background: var(--t7-green);
    color: #ffffff;
}

.taj777-login-btn:hover {
    background: var(--t7-green-dark);
    transform: translateY(-1px);
}

.taj777-divider {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    margin: 8px 0;
}

.taj777-demo-btn {
    background: #2d7d5a;
    color: #ffffff;
}

.taj777-demo-btn:hover {
    background: #245c48;
    transform: translateY(-1px);
}

.taj777-recaptcha {
    margin: 12px 0 0;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.8rem;
    color: #555;
    line-height: 1.4;
}

.taj777-recaptcha a {
    color: var(--t7-link);
    text-decoration: none;
}

.taj777-recaptcha a:hover {
    text-decoration: underline;
}

.taj777-page .casino-footer {
    margin-left: 0;
    width: 100%;
    background:
        radial-gradient(circle at 10% 10%, rgba(74, 155, 111, 0.16), transparent 36%),
        linear-gradient(180deg, #2d3e4a 0%, #1f2a32 100%);
    border-top: 1px solid rgba(74, 155, 111, 0.3);
    color: #e0e0e0;
}

.taj777-page .footer-brand-block h2,
.taj777-page .footer-kicker,
.taj777-page .footer-links-block h3,
.taj777-page .footer-disclaimer h3,
.taj777-page .footer-tagline,
.taj777-page .footer-links-block a,
.taj777-page .footer-disclaimer p,
.taj777-page .footer-copy {
    color: #e0e0e0;
}

.taj777-page .footer-chip-row span {
    border-color: rgba(74, 155, 111, 0.5);
    background: rgba(74, 155, 111, 0.12);
    color: #7cc293;
}

.taj777-page .footer-rule {
    border-top-color: rgba(74, 155, 111, 0.35);
}

.taj777-footer-logo {
    width: 160px;
    max-width: 100%;
    display: block;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .taj777-top-nav {
        height: 60px;
        padding: 0 14px;
    }

    .taj777-nav-logo-img {
        height: 32px;
    }

    .taj777-nav-link {
        padding: 6px 12px;
        font-size: 0.9rem;
    }

    .taj777-banner {
        min-height: calc(100vh - 60px);
        padding: 20px 12px;
    }

    .taj777-login-card {
        width: min(360px, 100%);
    }

    .taj777-login-header {
        padding: 14px 18px;
    }

    .taj777-login-header h1 {
        font-size: 1.3rem;
    }

    .taj777-login-form {
        padding: 18px;
        gap: 14px;
    }

    .taj777-checkbox-group {
        gap: 6px;
        padding: 10px;
    }

    .taj777-checkbox-group label {
        font-size: 0.8rem;
    }

    .taj777-footer-logo {
        width: 130px;
    }
}

/* Reddy Anna page theme */
.reddy-anna-page {
    --ra-black: #0a0a0a;
    --ra-dark-gray: #1a1a1a;
    --ra-banner-blue: #2a3f52;
    --ra-gold: #ffc107;
    --ra-gold-dark: #ffb300;
    --ra-card-yellow: #fdd835;
    --ra-green: #4caf50;
    --ra-green-dark: #3d8b40;
    --ra-text: #0d0d0d;
    background-color: var(--ra-black);
}

.reddy-anna-navbar {
    height: 70px;
    background: var(--ra-black);
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    gap: 24px;
}

.reddy-anna-logo-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.reddy-anna-logo {
    height: 42px;
    width: auto;
    max-width: 180px;
    display: block;
}

.reddy-anna-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 28px;
    flex: 1;
    justify-content: center;
}

.reddy-anna-menu a {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 6px 2px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.reddy-anna-menu a:hover,
.reddy-anna-menu a:focus-visible {
    color: var(--ra-gold);
    border-bottom-color: var(--ra-gold);
}

.reddy-anna-auth-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.reddy-anna-login-btn,
.reddy-anna-getid-btn {
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.reddy-anna-login-btn {
    background: var(--ra-gold);
    color: var(--ra-text);
}

.reddy-anna-login-btn:hover {
    background: var(--ra-gold-dark);
}

.reddy-anna-getid-btn {
    background: var(--ra-gold);
    color: var(--ra-text);
}

.reddy-anna-getid-btn:hover {
    background: var(--ra-gold-dark);
}

.reddy-anna-banner {
    min-height: calc(100vh - 70px);
    background: linear-gradient(180deg, #2a3f52 0%, #1f2e38 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 30px;
}

.reddy-anna-title {
    color: var(--ra-card-yellow);
    font-size: clamp(2rem, 6vw, 3.2rem);
    font-weight: 700;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.reddy-anna-login-card {
    background: var(--ra-card-yellow);
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: min(500px, 100%);
}

.reddy-anna-form {
    display: grid;
    gap: 18px;
}

.reddy-anna-form-group {
    display: grid;
    gap: 8px;
}

.reddy-anna-form-group label {
    color: var(--ra-text);
    font-weight: 700;
    font-size: 1rem;
}

.reddy-anna-form-group input {
    width: 100%;
    padding: 12px 14px;
    background: #ffffff;
    border: 2px solid var(--ra-card-yellow);
    border-radius: 4px;
    color: var(--ra-text);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.reddy-anna-form-group input::placeholder {
    color: #bbb;
}

.reddy-anna-form-group input:focus {
    border-color: var(--ra-gold);
}

.reddy-anna-submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--ra-green);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-top: 8px;
}

.reddy-anna-submit-btn:hover {
    background: var(--ra-green-dark);
    transform: translateY(-2px);
}

.reddy-anna-page .casino-footer {
    margin-left: 0;
    width: 100%;
    background:
        radial-gradient(circle at 8% 12%, rgba(255, 193, 7, 0.14), transparent 34%),
        linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    border-top: 1px solid rgba(255, 193, 7, 0.25);
}

.reddy-anna-page .footer-brand-block h2,
.reddy-anna-page .footer-kicker,
.reddy-anna-page .footer-links-block h3,
.reddy-anna-page .footer-disclaimer h3,
.reddy-anna-page .footer-tagline,
.reddy-anna-page .footer-links-block a,
.reddy-anna-page .footer-disclaimer p,
.reddy-anna-page .footer-copy {
    color: #d0d0d0;
}

.reddy-anna-page .footer-chip-row span {
    border-color: rgba(255, 193, 7, 0.4);
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.reddy-anna-page .footer-rule {
    border-top-color: rgba(255, 193, 7, 0.3);
}

@media (max-width: 768px) {
    .reddy-anna-navbar {
        height: auto;
        flex-direction: column;
        gap: 12px;
        padding: 12px;
    }

    .reddy-anna-logo {
        height: 32px;
    }

    .reddy-anna-menu {
        gap: 12px;
        flex-wrap: wrap;
        font-size: 0.85rem;
    }

    .reddy-anna-menu a {
        font-size: 0.85rem;
    }

    .reddy-anna-auth-buttons {
        gap: 8px;
        width: 100%;
        justify-content: center;
    }

    .reddy-anna-login-btn,
    .reddy-anna-getid-btn {
        padding: 8px 14px;
        font-size: 0.9rem;
    }

    .reddy-anna-banner {
        min-height: auto;
        padding: 30px 16px;
        gap: 20px;
    }

    .reddy-anna-title {
        font-size: 1.8rem;
    }

    .reddy-anna-login-card {
        width: min(360px, 100%);
        padding: 20px;
    }

    .reddy-anna-form {
        gap: 14px;
    }

    .reddy-anna-submit-btn {
        padding: 12px;
        font-size: 0.95rem;
    }
}

/* Gold365 page theme */
.gold365-page {
    --g365-black: #050505;
    --g365-violet-deep: #16003a;
    --g365-violet-mid: #3f0b8c;
    --g365-violet-bright: #7f17ff;
    --g365-card: #e4e4e4;
    --g365-text: #121212;
    background: linear-gradient(180deg, var(--g365-black) 0 120px, var(--g365-violet-deep) 120px, var(--g365-violet-mid) 72%, var(--g365-violet-bright) 100%);
    color: var(--g365-text);
}

.gold365-header {
    margin-left: 0;
    width: 100%;
    min-height: 120px;
    background: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gold365-top-nav {
    width: min(1240px, 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 2px 14px 8px;
}

.gold365-top-logo-link {
    display: inline-flex;
    align-items: center;
}

.gold365-top-logo {
    width: 132px;
    max-width: 34vw;
    display: block;
}

.gold365-auth-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gold365-auth-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.gold365-auth-link:hover,
.gold365-auth-link:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(255, 216, 111, 0.7);
}

.gold365-login-link {
    background: #1d1d1d;
}

.gold365-register-link {
    background: linear-gradient(180deg, #f4ca3f, #d8a900);
    color: #1a1200;
    border-color: rgba(255, 216, 111, 0.8);
}

.gold365-brand-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gold365-header-logo {
    width: min(250px, 66vw);
    display: block;
}

.gold365-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    padding-top: 4px;
}

.gold365-nav a {
    color: #f3eaff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    padding: 4px 2px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.gold365-nav a:hover,
.gold365-nav a:focus-visible {
    color: #ffd86f;
    border-bottom-color: #ffd86f;
}

.gold365-banner {
    min-height: calc(100vh - 120px);
    display: grid;
    place-items: center;
    padding: 26px 14px 44px;
}

.gold365-login-card {
    width: min(450px, 100%);
    background: var(--g365-card);
    border-radius: 6px;
    box-shadow: 0 16px 30px rgba(18, 7, 46, 0.4);
    padding: 22px 36px 16px;
}

.gold365-login-card h1 {
    margin: 0 0 18px;
    text-align: center;
    color: #090909;
    font-size: 2.05rem;
    font-weight: 500;
}

.gold365-login-form {
    display: grid;
    gap: 14px;
}

.gold365-login-form input {
    width: 100%;
    min-height: 56px;
    border: 1px solid #b8c0cb;
    border-radius: 2px;
    background: #efefef;
    color: #384a5f;
    font-size: 1.1rem;
    padding: 12px 14px;
    outline: none;
}

.gold365-login-form input::placeholder {
    color: #43586f;
}

.gold365-login-btn,
.gold365-support-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.gold365-login-btn {
    background: #000000;
    color: #ffffff;
    margin-top: 16px;
}

.gold365-support-btn {
    background: #575757;
    color: #f1f1f1;
}

.gold365-register-row,
.gold365-forgot-row {
    margin: 2px 0;
    text-align: center;
    font-size: 1rem;
    color: #020202;
}

.gold365-register-row a,
.gold365-forgot-row a,
.gold365-recaptcha-copy a {
    color: #173d8c;
}

.gold365-recaptcha-copy {
    margin: 6px 0 0;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.45;
    color: #0e0e0e;
}

.gold365-copy {
    margin: 18px 0 4px;
    text-align: center;
    font-size: 1.1rem;
    color: #070707;
}

.gold365-page .casino-footer {
    margin-left: 0;
    width: 100%;
    background:
        linear-gradient(180deg, #120032 0%, #26005e 58%, #4f0fb2 100%);
    color: #efe7ff;
    border-top: 1px solid rgba(219, 194, 255, 0.4);
}

.gold365-page .footer-brand-block h2,
.gold365-page .footer-kicker,
.gold365-page .footer-links-block h3,
.gold365-page .footer-disclaimer h3,
.gold365-page .footer-tagline,
.gold365-page .footer-links-block a,
.gold365-page .footer-disclaimer p,
.gold365-page .footer-copy {
    color: #efe7ff;
}

.gold365-page .footer-chip-row span {
    border-color: rgba(233, 214, 255, 0.55);
    background: rgba(209, 167, 255, 0.16);
    color: #f6edff;
}

.gold365-page .footer-rule {
    border-top-color: rgba(226, 205, 255, 0.46);
}

.gold365-footer-logo {
    width: 165px;
    max-width: 100%;
    display: block;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .gold365-header {
        min-height: 94px;
        gap: 6px;
        padding: 8px 10px 10px;
    }

    .gold365-top-nav {
        padding: 0 4px 6px;
    }

    .gold365-top-logo {
        width: 100px;
    }

    .gold365-auth-actions {
        gap: 6px;
    }

    .gold365-auth-link {
        min-width: 76px;
        min-height: 31px;
        padding: 6px 10px;
        font-size: 0.82rem;
    }

    .gold365-header-logo {
        width: min(190px, 66vw);
    }

    .gold365-nav {
        gap: 12px;
    }

    .gold365-nav a {
        font-size: 0.84rem;
    }

    .gold365-banner {
        min-height: calc(100vh - 94px);
        padding: 14px 10px 30px;
    }

    .gold365-login-card {
        padding: 16px;
        width: min(410px, 100%);
    }

    .gold365-login-card h1 {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .gold365-login-form input {
        min-height: 46px;
        font-size: 1rem;
    }

    .gold365-login-btn,
    .gold365-support-btn,
    .gold365-register-row,
    .gold365-forgot-row {
        font-size: 1rem;
    }

    .gold365-recaptcha-copy {
        font-size: 0.95rem;
    }

    .gold365-copy {
        font-size: 1.1rem;
    }

    .gold365-footer-logo {
        width: 142px;
    }
}

.login-mode-row label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.login-mode-row input {
    accent-color: var(--fp-orange);
}

.password-row {
    display: grid;
    grid-template-columns: 1fr 34px;
    align-items: center;
    gap: 10px;
}

.icon-btn {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    color: #f2f2f2;
    background: rgba(255, 255, 255, 0.08);
    font-size: 1rem;
    cursor: pointer;
}

.forgot-row {
    text-align: right;
}

.forgot-row a {
    color: var(--fp-orange);
    font-weight: 700;
}

.login-btn,
.demo-btn {
    border: none;
    border-radius: 4px;
    padding: 13px 14px;
    color: #ffffff;
    font-size: 1.03rem;
    font-weight: 700;
    cursor: pointer;
}

.login-btn {
    background: var(--fp-orange);
}

.demo-btn {
    background: var(--fp-green);
}

.login-with {
    margin: 2px 0 0;
    text-align: center;
    color: #ffffff;
    font-weight: 600;
}

.telegram-circle {
    margin: 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--fp-blue);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 1rem;
    line-height: 1;
}

.register-row {
    margin: 6px 0 0;
    text-align: center;
    color: #f7f7f7;
}

.register-row a {
    color: var(--fp-orange);
}

@media (max-width: 768px) {
    .fairplay-page .navbar {
        padding: 10px 12px;
    }

    .fairplay-header-logo {
        width: 132px;
    }

    .fairplay-footer-logo {
        width: 126px;
    }

    .header-auth {
        gap: 7px;
    }

    .auth-link {
        min-width: 82px;
        min-height: 34px;
        padding: 7px 12px;
        font-size: 0.88rem;
    }

    .fairplay-login-card {
        padding: 16px;
    }

    .fairplay-tabs {
        margin-bottom: 16px;
    }

    .tab-btn {
        font-size: 0.92rem;
        padding: 9px 10px;
    }

    .mobile-input-row {
        grid-template-columns: 78px 1fr;
    }

    .mobile-input-row select,
    .mobile-input-row input,
    .password-row input {
        font-size: 0.95rem;
    }

}

/* All Panel page theme */
.all-panel-page {
    --ap-blue: #0288d1;
    --ap-blue-dark: #01579b;
    --ap-blue-light: #4fc3f7;
    --ap-blue-deep: #014b86;
    --ap-white: #ffffff;
    --ap-text: #333333;
    background: linear-gradient(180deg, #0288d1 0%, #0277bd 100%);
    color: var(--ap-text);
}

.all-panel-topbar {
    width: 100%;
    margin-left: 0;
    min-height: 72px;
    background: linear-gradient(90deg, #015c9d 0%, #0277bd 45%, #015c9d 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 26px;
    gap: 20px;
}

.all-panel-auth-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.all-panel-auth-link {
    min-width: 100px;
    min-height: 40px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.all-panel-auth-login {
    background: #e8f6ff;
    color: #015c9d;
}

.all-panel-auth-register {
    background: #0d3555;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.all-panel-auth-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.all-panel-header-logo-link {
    display: inline-flex;
    align-items: center;
}

.all-panel-header-logo {
    width: min(180px, 36vw);
    height: auto;
    display: block;
}

.all-panel-banner {
    min-height: 80vh;
    background: linear-gradient(180deg, #0288d1 0%, #0277bd 50%, #01579b 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 30px;
}

.all-panel-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 30px;
}

.all-panel-banner-title {
    color: var(--ap-white);
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 700;
    margin: 0;
    text-align: center;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
}

.all-panel-login-card {
    background: var(--ap-white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    width: min(420px, 100%);
}

.all-panel-login-header {
    text-align: center;
    margin-bottom: 24px;
}

.all-panel-login-tab {
    color: var(--ap-blue);
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--ap-blue);
}

.all-panel-login-form {
    display: grid;
    gap: 16px;
}

.all-panel-form-group {
    position: relative;
    display: grid;
    gap: 8px;
}

.all-panel-input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: var(--ap-text);
    font-size: 1rem;
    outline: none;
    transition: all 0.2s ease;
}

.all-panel-input::placeholder {
    color: #999;
}

.all-panel-input:focus {
    background: #ffffff;
    border-color: var(--ap-blue);
    box-shadow: 0 0 0 3px rgba(2, 136, 209, 0.1);
}

.all-panel-input-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #999;
    pointer-events: none;
}

.all-panel-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.all-panel-btn-primary {
    background: var(--ap-blue);
    color: var(--ap-white);
    margin-top: 6px;
}

.all-panel-btn-primary:hover {
    background: var(--ap-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(2, 136, 209, 0.3);
}

.all-panel-btn-secondary {
    background: transparent;
    color: var(--ap-blue);
    border: 2px solid var(--ap-blue);
    margin-top: 4px;
}

.all-panel-btn-secondary:hover {
    background: var(--ap-blue);
    color: var(--ap-white);
}

.all-panel-recaptcha-notice {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin: 12px 0 16px;
    line-height: 1.4;
}

.all-panel-link {
    color: var(--ap-blue);
    text-decoration: none;
    font-weight: 600;
}

.all-panel-link:hover {
    text-decoration: underline;
}

.all-panel-download {
    text-align: center;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
}

.all-panel-apk-link {
    color: var(--ap-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.all-panel-apk-link:hover {
    color: var(--ap-blue-dark);
}

.all-panel-page .casino-footer {
    width: 100%;
    margin-left: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(79, 195, 247, 0.2), transparent 35%),
        linear-gradient(180deg, #015c9d 0%, #014b86 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.all-panel-page .footer-brand-block h2,
.all-panel-page .footer-kicker,
.all-panel-page .footer-links-block h3,
.all-panel-page .footer-disclaimer h3,
.all-panel-page .footer-tagline,
.all-panel-page .footer-links-block a,
.all-panel-page .footer-disclaimer p,
.all-panel-page .footer-copy {
    color: #eaf6ff;
}

.all-panel-page .footer-chip-row span {
    border-color: rgba(79, 195, 247, 0.55);
    background: rgba(79, 195, 247, 0.18);
    color: #dff5ff;
}

.all-panel-page .footer-rule {
    border-top-color: rgba(223, 245, 255, 0.35);
}

@media (max-width: 768px) {
    .all-panel-topbar {
        min-height: auto;
        padding: 10px 12px;
        gap: 12px;
    }

    .all-panel-auth-actions {
        gap: 8px;
    }

    .all-panel-auth-link {
        min-width: 78px;
        min-height: 34px;
        font-size: 0.86rem;
    }

    .all-panel-header-logo {
        width: min(132px, 40vw);
    }

    .all-panel-banner {
        min-height: auto;
        padding: 24px 16px;
        gap: 20px;
    }

    .all-panel-banner-title {
        font-size: 2rem;
    }

    .all-panel-login-card {
        width: min(360px, 100%);
        padding: 24px;
    }

    .all-panel-login-header {
        margin-bottom: 18px;
    }

    .all-panel-login-tab {
        font-size: 1rem;
    }

    .all-panel-login-form {
        gap: 14px;
    }

    .all-panel-input {
        padding: 11px 12px 11px 36px;
        font-size: 1rem;
    }

    .all-panel-btn {
        padding: 12px;
        font-size: 0.95rem;
    }

    .all-panel-recaptcha-notice {
        font-size: 0.8rem;
        margin: 10px 0 12px;
    }

    .all-panel-apk-link {
        font-size: 0.9rem;
    }
}

/* Diamond Exchange page theme */
.diamondexch-page {
    --dx-blue: #226b97;
    --dx-blue-dark: #165179;
    --dx-blue-deep: #0f3f60;
    --dx-card: #ececec;
    --dx-text: #3d4b59;
    background: var(--dx-blue);
    color: var(--dx-text);
}

.diamondexch-topbar {
    width: 100%;
    margin-left: 0;
    min-height: 70px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: linear-gradient(90deg, #1e5f87 0%, #2b7cab 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.diamondexch-auth-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.diamondexch-auth-link {
    min-width: 96px;
    min-height: 38px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.diamondexch-auth-login {
    background: #f4fbff;
    color: #145780;
}

.diamondexch-auth-register {
    background: #184a6d;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.32);
}

.diamondexch-auth-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.diamondexch-logo-link {
    display: inline-flex;
    align-items: center;
}

.diamondexch-logo {
    width: min(170px, 36vw);
    height: auto;
    display: block;
}

.diamondexch-banner {
    min-height: 72vh;
    width: 100%;
    margin-left: 0;
    background: var(--dx-blue);
    padding: 28px 16px 42px;
    display: flex;
    justify-content: center;
}

.diamondexch-banner-content {
    width: min(980px, 100%);
    display: grid;
    justify-items: center;
    gap: 24px;
}

.diamondexch-title {
    margin: 0;
    color: #ffffff;
    text-align: center;
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: 700;
}

.diamondexch-login-card {
    width: min(800px, 100%);
    background: var(--dx-card);
    border-radius: 5px;
    padding: 26px;
}

.diamondexch-login-header {
    text-align: center;
    color: #0b82c6;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    font-weight: 700;
    margin-bottom: 22px;
}

.diamondexch-login-form {
    display: grid;
    gap: 18px;
}

.diamondexch-form-row {
    position: relative;
}

.diamondexch-input {
    width: 100%;
    min-height: 60px;
    border: 1px solid #b9c2cb;
    border-radius: 4px;
    background: #f5f5f5;
    color: var(--dx-text);
    font-size: 1.1rem;
    padding: 10px 52px 10px 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.diamondexch-input:focus {
    border-color: #0b82c6;
    box-shadow: 0 0 0 3px rgba(11, 130, 198, 0.15);
}

.diamondexch-input::placeholder {
    color: #556474;
}

.diamondexch-input-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #0b82c6;
    font-size: 1.2rem;
    pointer-events: none;
}

.diamondexch-login-btn {
    min-height: 62px;
    margin-top: 8px;
    border: none;
    border-radius: 4px;
    background: #0b82c6;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.diamondexch-login-btn:hover {
    background: #08679d;
    transform: translateY(-1px);
}

.diamondexch-recaptcha-copy {
    margin: 16px 0 0;
    color: #4b5b6b;
    line-height: 1.45;
    font-size: 0.9rem;
}

.diamondexch-recaptcha-copy a {
    color: #0b82c6;
    text-decoration: none;
}

.diamondexch-recaptcha-copy a:hover {
    text-decoration: underline;
}

.diamondexch-page .casino-footer {
    margin-left: 0;
    width: 100%;
    background:
        radial-gradient(circle at 8% 16%, rgba(79, 195, 247, 0.22), transparent 36%),
        linear-gradient(180deg, #1f6692 0%, #154c70 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.diamondexch-page .footer-brand-block h2,
.diamondexch-page .footer-kicker,
.diamondexch-page .footer-links-block h3,
.diamondexch-page .footer-disclaimer h3,
.diamondexch-page .footer-tagline,
.diamondexch-page .footer-links-block a,
.diamondexch-page .footer-disclaimer p,
.diamondexch-page .footer-copy {
    color: #eaf6ff;
}

.diamondexch-page .footer-chip-row span {
    border-color: rgba(79, 195, 247, 0.54);
    background: rgba(79, 195, 247, 0.16);
    color: #dff5ff;
}

.diamondexch-footer-logo {
    width: min(190px, 100%);
    height: auto;
    display: block;
    margin: 0 0 10px;
}

.diamondexch-page .footer-rule {
    border-top-color: rgba(223, 245, 255, 0.35);
}

@media (max-width: 768px) {
    .diamondexch-topbar {
        padding: 10px 12px;
        min-height: auto;
    }

    .diamondexch-auth-actions {
        gap: 8px;
    }

    .diamondexch-auth-link {
        min-width: 78px;
        min-height: 34px;
        font-size: 0.86rem;
    }

    .diamondexch-logo {
        width: min(126px, 38vw);
    }

    .diamondexch-footer-logo {
        width: min(150px, 72%);
        margin-bottom: 8px;
    }

    .diamondexch-banner {
        min-height: auto;
        padding: 20px 10px 28px;
    }

    .diamondexch-banner-content {
        gap: 16px;
    }

    .diamondexch-title {
        font-size: 1.9rem;
    }

    .diamondexch-login-card {
        padding: 18px 14px;
    }

    .diamondexch-login-header {
        margin-bottom: 14px;
        font-size: 1.35rem;
    }

    .diamondexch-login-form {
        gap: 12px;
    }

    .diamondexch-input {
        min-height: 52px;
        font-size: 1rem;
        padding-right: 44px;
    }

    .diamondexch-login-btn {
        min-height: 54px;
        font-size: 1.2rem;
    }

    .diamondexch-recaptcha-copy {
        font-size: 0.82rem;
    }
}

/* Lords Exchange page theme */
.lordsexch-page {
    --lx-bg-dark: #1f2125;
    --lx-bg-mid: #272b30;
    --lx-gold: #ccb28f;
    --lx-gold-soft: #e2c9a7;
    --lx-teal: #194f58;
    --lx-teal-dark: #123b42;
    --lx-text: #e9edf1;
    background-color: var(--lx-bg-dark);
    color: var(--lx-text);
}

.lordsexch-topbar {
    width: 100%;
    margin-left: 0;
    min-height: 72px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(90deg, #16191d 0%, #23272c 100%);
    border-bottom: 1px solid rgba(226, 201, 167, 0.25);
}

.lordsexch-logo-link {
    display: inline-flex;
    align-items: center;
}

.lordsexch-logo {
    width: min(176px, 36vw);
    height: auto;
    display: block;
}

.lordsexch-auth-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.lordsexch-auth-link {
    min-width: 92px;
    min-height: 38px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.lordsexch-auth-login {
    background: var(--lx-gold-soft);
    color: #2a241a;
}

.lordsexch-auth-register {
    background: #2f3338;
    color: #f6f6f6;
    border: 1px solid rgba(226, 201, 167, 0.35);
}

.lordsexch-auth-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

.lordsexch-banner {
    width: 100%;
    margin-left: 0;
    min-height: 72vh;
    padding: 28px 16px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.03) 2px, transparent 2px) 0 0 / 18px 18px,
        radial-gradient(circle at 9px 9px, rgba(0, 0, 0, 0.22) 2px, transparent 2px) 0 0 / 18px 18px,
        linear-gradient(180deg, #2b2f35 0%, #1e2126 100%);
}

.lordsexch-login-wrap {
    width: min(420px, 100%);
    display: grid;
    justify-items: center;
    gap: 16px;
}

.lordsexch-banner-logo {
    width: min(320px, 92%);
    height: auto;
    display: block;
}

.lordsexch-login-form {
    width: 100%;
    display: grid;
    gap: 12px;
}

.lordsexch-input-row {
    width: 100%;
    background: #dcdcdc;
    border: 1px solid #bdbdbd;
    border-radius: 4px;
    padding: 5px;
}

.lordsexch-input {
    width: 100%;
    min-height: 44px;
    border: none;
    outline: none;
    border-radius: 3px;
    background: #ffffff;
    color: #3d4b59;
    padding: 10px 12px;
    font-size: 1.05rem;
}

.lordsexch-input::placeholder {
    color: #7f8a95;
}

.lordsexch-login-btn {
    margin-top: 6px;
    min-height: 54px;
    border: none;
    border-radius: 3px;
    background: var(--lx-teal);
    color: #ffffff;
    font-size: 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.lordsexch-login-btn:hover {
    background: var(--lx-teal-dark);
    transform: translateY(-1px);
}

.lordsexch-recaptcha-copy {
    margin: 0;
    text-align: center;
    color: #e4e6e9;
    font-size: 0.88rem;
    line-height: 1.5;
}

.lordsexch-recaptcha-copy a {
    color: #3ea6ff;
    text-decoration: none;
}

.lordsexch-recaptcha-copy a:hover {
    text-decoration: underline;
}

.lordsexch-page .casino-footer {
    margin-left: 0;
    width: 100%;
    background:
        radial-gradient(circle at 8% 16%, rgba(204, 178, 143, 0.16), transparent 36%),
        linear-gradient(180deg, #1f2328 0%, #15181c 100%);
    border-top: 1px solid rgba(204, 178, 143, 0.26);
}

.lordsexch-page .footer-brand-block h2,
.lordsexch-page .footer-kicker,
.lordsexch-page .footer-links-block h3,
.lordsexch-page .footer-disclaimer h3,
.lordsexch-page .footer-tagline,
.lordsexch-page .footer-links-block a,
.lordsexch-page .footer-disclaimer p,
.lordsexch-page .footer-copy {
    color: #e9edf1;
}

.lordsexch-footer-logo {
    width: min(210px, 100%);
    height: auto;
    display: block;
    margin: 0 0 10px;
}

.lordsexch-page .footer-chip-row span {
    border-color: rgba(204, 178, 143, 0.45);
    background: rgba(204, 178, 143, 0.12);
    color: #f3ddbe;
}

.lordsexch-page .footer-rule {
    border-top-color: rgba(226, 201, 167, 0.35);
}

@media (max-width: 768px) {
    .lordsexch-topbar {
        min-height: auto;
        padding: 10px 12px;
        gap: 10px;
    }

    .lordsexch-logo {
        width: min(128px, 42vw);
    }

    .lordsexch-auth-actions {
        gap: 8px;
    }

    .lordsexch-auth-link {
        min-width: 74px;
        min-height: 34px;
        font-size: 0.86rem;
    }

    .lordsexch-banner {
        min-height: auto;
        padding: 18px 10px 30px;
    }

    .lordsexch-banner-logo {
        width: min(250px, 92%);
    }

    .lordsexch-input {
        min-height: 40px;
        font-size: 1rem;
    }

    .lordsexch-login-btn {
        min-height: 48px;
        font-size: 1.8rem;
    }

    .lordsexch-footer-logo {
        width: min(156px, 72%);
    }

    .lordsexch-recaptcha-copy {
        font-size: 0.82rem;
    }
}

/* Lotusbook Exchange page theme */
.lotusbook-page {
    --lb-bg-1: #1a3548;
    --lb-bg-2: #112c3e;
    --lb-yellow: #f0d823;
    --lb-yellow-soft: #ffef87;
    --lb-white: #ffffff;
    --lb-green: #49b352;
    --lb-line: rgba(240, 216, 35, 0.85);
    background: linear-gradient(180deg, var(--lb-bg-1) 0%, var(--lb-bg-2) 100%);
    color: #e9f2f8;
}

.lotusbook-topbar {
    width: 100%;
    margin-left: 0;
    min-height: 72px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(90deg, #102b3d 0%, #1a3d53 100%);
    border-bottom: 1px solid rgba(240, 216, 35, 0.25);
}

.lotusbook-logo-link {
    display: inline-flex;
    align-items: center;
}

.lotusbook-logo {
    width: min(160px, 34vw);
    height: auto;
    display: block;
}

.lotusbook-auth-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.lotusbook-auth-link {
    min-width: 92px;
    min-height: 38px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.lotusbook-auth-login {
    background: var(--lb-yellow);
    color: #20201a;
}

.lotusbook-auth-register {
    background: transparent;
    color: var(--lb-white);
    border: 1px solid rgba(240, 216, 35, 0.55);
}

.lotusbook-auth-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.lotusbook-banner {
    width: 100%;
    margin-left: 0;
    min-height: 78vh;
    display: flex;
    justify-content: center;
    padding: 24px 10px 40px;
    background: linear-gradient(180deg, #18364b 0%, #122c3f 100%);
}

.lotusbook-card {
    width: min(540px, 100%);
    display: grid;
    justify-items: center;
    gap: 10px;
}

.lotusbook-card-logo {
    width: min(200px, 62%);
    height: auto;
}

.lotusbook-card h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 2.6rem);
    font-weight: 700;
}

.lotusbook-login-switch {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--lb-line);
    border-radius: 8px;
    overflow: hidden;
}

.lotusbook-switch-btn {
    min-height: 46px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.lotusbook-switch-btn.active {
    background: var(--lb-yellow);
    color: #161d24;
}

.lotusbook-login-form {
    width: 100%;
    display: grid;
    gap: 12px;
}

.lotusbook-mobile-row {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 12px;
    align-items: end;
}

.lotusbook-country-code {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 2px solid var(--lb-line);
    padding: 0 6px;
}

.lotusbook-input {
    width: 100%;
    min-height: 50px;
    border: none;
    border-bottom: 2px solid var(--lb-line);
    background: transparent;
    color: #ffffff;
    font-size: 1.1rem;
    outline: none;
    padding: 8px 4px;
}

.lotusbook-input::placeholder {
    color: rgba(235, 245, 252, 0.8);
}

.lotusbook-password-mode {
    display: inline-flex;
    gap: 12px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
}

.lotusbook-password-mode input {
    accent-color: var(--lb-yellow);
}

.lotusbook-password-row {
    position: relative;
}

.lotusbook-password-row .lotusbook-input {
    padding-right: 32px;
}

.lotusbook-eye {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.75);
}

.lotusbook-forgot {
    justify-self: end;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
}

.lotusbook-btn-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.lotusbook-yellow-btn {
    min-height: 48px;
    border: none;
    border-radius: 8px;
    background: var(--lb-yellow);
    color: #151a20;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.2s ease;
}

.lotusbook-yellow-btn:hover {
    filter: brightness(0.95);
}

.lotusbook-whatsapp-copy {
    margin: 2px 0 0;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.lotusbook-whatsapp-btn {
    min-height: 50px;
    border: none;
    border-radius: 999px;
    background: var(--lb-green);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.lotusbook-social-head {
    width: 100%;
    text-align: center;
    position: relative;
    margin-top: 2px;
    font-size: 1rem;
    font-weight: 700;
}

.lotusbook-social-head::before,
.lotusbook-social-head::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 32%;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.lotusbook-social-head::before {
    left: 0;
}

.lotusbook-social-head::after {
    right: 0;
}

.lotusbook-social-row {
    display: inline-flex;
    gap: 12px;
}

.lotusbook-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.86rem;
}

.lotusbook-social.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.lotusbook-social.telegram {
    background: #2aabee;
}

.lotusbook-register-copy {
    margin: 0;
    text-align: center;
    font-size: 1rem;
}

.lotusbook-register-copy a {
    color: var(--lb-yellow-soft);
    font-weight: 700;
}

.lotusbook-page .casino-footer {
    margin-left: 0;
    width: 100%;
    background:
        radial-gradient(circle at 8% 16%, rgba(240, 216, 35, 0.14), transparent 34%),
        linear-gradient(180deg, #153248 0%, #0f2737 100%);
    border-top: 1px solid rgba(240, 216, 35, 0.32);
}

.lotusbook-page .footer-brand-block h2,
.lotusbook-page .footer-kicker,
.lotusbook-page .footer-links-block h3,
.lotusbook-page .footer-disclaimer h3,
.lotusbook-page .footer-tagline,
.lotusbook-page .footer-links-block a,
.lotusbook-page .footer-disclaimer p,
.lotusbook-page .footer-copy {
    color: #eef7ff;
}

.lotusbook-page .footer-chip-row span {
    border-color: rgba(240, 216, 35, 0.48);
    background: rgba(240, 216, 35, 0.14);
    color: #ffef87;
}

.lotusbook-page .footer-rule {
    border-top-color: rgba(255, 239, 135, 0.35);
}

.lotusbook-footer-logo {
    width: min(170px, 100%);
    height: auto;
    display: block;
    margin: 0 0 10px;
}

@media (max-width: 768px) {
    .lotusbook-topbar {
        min-height: auto;
        padding: 10px 12px;
        gap: 10px;
    }

    .lotusbook-logo {
        width: min(122px, 40vw);
    }

    .lotusbook-auth-actions {
        gap: 8px;
    }

    .lotusbook-auth-link {
        min-width: 74px;
        min-height: 34px;
        font-size: 0.86rem;
    }

    .lotusbook-banner {
        min-height: auto;
        padding: 16px 8px 28px;
    }

    .lotusbook-card {
        gap: 8px;
    }

    .lotusbook-card-logo {
        width: min(158px, 54%);
    }

    .lotusbook-card h1 {
        font-size: 1.85rem;
    }

    .lotusbook-switch-btn {
        min-height: 42px;
        font-size: 0.95rem;
    }

    .lotusbook-mobile-row {
        grid-template-columns: 88px 1fr;
        gap: 10px;
    }

    .lotusbook-country-code {
        min-height: 44px;
        font-size: 1.6rem;
    }

    .lotusbook-input {
        min-height: 44px;
        font-size: 1rem;
    }

    .lotusbook-btn-row {
        gap: 6px;
    }

    .lotusbook-yellow-btn,
    .lotusbook-whatsapp-btn {
        min-height: 44px;
        font-size: 0.95rem;
    }

    .lotusbook-social-head::before,
    .lotusbook-social-head::after {
        width: 27%;
    }

    .lotusbook-footer-logo {
        width: min(136px, 72%);
    }
}

/* 4rabet121 page theme */
.rabet121-page {
    --rb-left-green: #13a93d;
    --rb-right-blue: #071e3f;
    --rb-right-blue-2: #052445;
    --rb-light-blue: #1e7fe7;
    --rb-input-bg: #0d2a53;
    --rb-text: #d9e7fb;
    background: linear-gradient(90deg, #0f9237 0%, #0f9237 48%, #061f43 48%, #061f43 100%);
    color: var(--rb-text);
}

.rabet121-topbar {
    width: 100%;
    margin-left: 0;
    min-height: 72px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(90deg, #099c37 0%, #071e3f 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.rabet121-logo-link {
    display: inline-flex;
    align-items: center;
}

.rabet121-logo {
    width: min(162px, 34vw);
    height: auto;
    display: block;
}

.rabet121-auth-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.rabet121-auth-link {
    min-width: 92px;
    min-height: 38px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rabet121-auth-login {
    background: #1e7fe7;
    color: #ffffff;
}

.rabet121-auth-register {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.rabet121-auth-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

.rabet121-banner {
    width: 100%;
    margin-left: 0;
    min-height: 72vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.rabet121-panel-left {
    position: relative;
    background:
        linear-gradient(180deg, rgba(5, 186, 60, 0.18) 0%, rgba(4, 153, 49, 0.65) 90%),
        url("../images/4rabet-banner.png") center/cover no-repeat;
    display: flex;
    align-items: end;
}

.rabet121-left-overlay {
    width: 100%;
    padding: 20px 18px 22px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(2, 76, 30, 0.52) 100%);
}

.rabet121-left-overlay h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 4.3vw, 4rem);
    line-height: 0.94;
    text-shadow: 0 8px 16px rgba(0, 0, 0, 0.28);
}

.rabet121-left-overlay p {
    margin: 14px 0 14px;
    color: #e9fff0;
    font-size: clamp(0.95rem, 1.45vw, 1.35rem);
    font-weight: 500;
}

.rabet121-left-logo {
    width: min(150px, 40%);
    height: auto;
    display: block;
}

.rabet121-panel-right {
    position: relative;
    background: linear-gradient(180deg, var(--rb-right-blue) 0%, var(--rb-right-blue-2) 100%);
    padding: 14px 18px 20px;
}

.rabet121-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #7d9ac4;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}

.rabet121-register-copy {
    margin: 54px 0 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #b9cdea;
}

.rabet121-register-copy a {
    color: #1e7fe7;
    text-decoration: none;
    font-weight: 700;
}

.rabet121-login-type {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.rabet121-type-btn {
    min-height: 48px;
    border: none;
    border-radius: 12px;
    background: #16345b;
    color: #8eaed3;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
}

.rabet121-type-btn span {
    margin-right: 8px;
}

.rabet121-type-btn.active {
    background: #1f83ec;
    color: #ffffff;
}

.rabet121-login-form {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.rabet121-phone-row {
    display: grid;
    grid-template-columns: 128px 1fr;
}

.rabet121-country-box {
    min-height: 48px;
    border: 1px solid #1d4674;
    border-right: none;
    border-radius: 12px 0 0 12px;
    background: var(--rb-input-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #d9e7fb;
}

.rabet121-input {
    min-height: 48px;
    width: 100%;
    border: 1px solid #1d4674;
    border-radius: 0 12px 12px 0;
    background: var(--rb-input-bg);
    color: #d9e7fb;
    font-size: 1rem;
    padding: 10px 14px;
    outline: none;
}

.rabet121-input::placeholder {
    color: #6f8fb6;
}

.rabet121-password-row {
    position: relative;
}

.rabet121-password-row .rabet121-input {
    border-radius: 12px;
    padding-right: 42px;
}

.rabet121-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #8faed1;
}

.rabet121-forgot {
    margin: 2px 0 4px;
    color: #7f9ec3;
    font-size: 0.95rem;
    font-weight: 600;
}

.rabet121-forgot a {
    color: #1e7fe7;
    text-decoration: none;
    font-weight: 700;
}

.rabet121-login-btn {
    min-height: 50px;
    border: none;
    border-radius: 12px;
    background: #12345d;
    color: #4b6f9a;
    font-size: 1.5rem;
    font-weight: 800;
    cursor: pointer;
}

.rabet121-divider {
    position: relative;
    text-align: center;
    margin-top: 2px;
}

.rabet121-divider::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.rabet121-divider span {
    position: relative;
    display: inline-block;
    background: var(--rb-right-blue);
    padding: 0 12px;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
}

.rabet121-google-btn {
    min-height: 52px;
    border: none;
    border-radius: 999px;
    background: #2576dc;
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    cursor: pointer;
}

.rabet121-google-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    color: #4285f4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
}

.rabet121-page .casino-footer {
    margin-left: 0;
    width: 100%;
    background:
        radial-gradient(circle at 8% 16%, rgba(30, 127, 231, 0.26), transparent 34%),
        linear-gradient(180deg, #0b2d57 0%, #061c39 100%);
    border-top: 1px solid rgba(30, 127, 231, 0.36);
}

.rabet121-page .footer-brand-block h2,
.rabet121-page .footer-kicker,
.rabet121-page .footer-links-block h3,
.rabet121-page .footer-disclaimer h3,
.rabet121-page .footer-tagline,
.rabet121-page .footer-links-block a,
.rabet121-page .footer-disclaimer p,
.rabet121-page .footer-copy {
    color: #e6f0ff;
}

.rabet121-page .footer-chip-row span {
    border-color: rgba(30, 127, 231, 0.5);
    background: rgba(30, 127, 231, 0.16);
    color: #dcebff;
}

.rabet121-page .footer-rule {
    border-top-color: rgba(220, 235, 255, 0.32);
}

.rabet121-footer-logo {
    width: min(180px, 100%);
    height: auto;
    display: block;
    margin: 0 0 10px;
}

@media (max-width: 980px) {
    .rabet121-banner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .rabet121-panel-left {
        min-height: 380px;
    }

    .rabet121-panel-right {
        padding: 14px 14px 24px;
    }

    .rabet121-close {
        width: 38px;
        height: 38px;
        font-size: 1.7rem;
    }

    .rabet121-register-copy {
        margin-top: 52px;
    }
}

@media (max-width: 768px) {
    .rabet121-topbar {
        min-height: auto;
        padding: 10px 12px;
        gap: 10px;
    }

    .rabet121-logo {
        width: min(124px, 42vw);
    }

    .rabet121-auth-actions {
        gap: 8px;
    }

    .rabet121-auth-link {
        min-width: 74px;
        min-height: 34px;
        font-size: 0.86rem;
    }

    .rabet121-left-overlay {
        padding: 20px 12px 20px;
    }

    .rabet121-left-overlay h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .rabet121-left-overlay p {
        margin: 12px 0 14px;
        font-size: 1.1rem;
    }

    .rabet121-left-logo {
        width: min(138px, 44%);
    }

    .rabet121-login-type {
        gap: 8px;
    }

    .rabet121-type-btn {
        min-height: 46px;
        font-size: 0.95rem;
    }

    .rabet121-phone-row {
        grid-template-columns: 118px 1fr;
    }

    .rabet121-country-box,
    .rabet121-input {
        min-height: 48px;
        font-size: 1rem;
    }

    .rabet121-login-btn {
        min-height: 50px;
        font-size: 1.3rem;
    }

    .rabet121-divider span {
        font-size: 1.5rem;
    }

    .rabet121-google-btn {
        min-height: 50px;
        font-size: 0.98rem;
    }

    .rabet121-google-icon {
        width: 34px;
        height: 34px;
        font-size: 1.3rem;
    }

    .rabet121-footer-logo {
        width: min(140px, 72%);
    }
}

/* Melbet page theme */
.melbet-page {
    --mb-bg: #101318;
    --mb-bg-2: #1a1f27;
    --mb-card: #e8e8e8;
    --mb-dark: #2b2b2e;
    --mb-muted: #c8c8ca;
    --mb-text: #273448;
    --mb-yellow: #ffbe00;
    --mb-link: #6a7d98;
    background:
        radial-gradient(circle at 20% 35%, rgba(255, 255, 255, 0.05) 0, transparent 35%),
        linear-gradient(90deg, var(--mb-bg) 0%, #13161c 45%, var(--mb-bg) 100%);
    color: var(--mb-text);
}

.melbet-topbar {
    width: 100%;
    margin-left: 0;
    min-height: 72px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(90deg, #0f141b 0%, #191f29 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.melbet-logo-link {
    display: inline-flex;
    align-items: center;
}

.melbet-logo {
    width: min(154px, 32vw);
    height: auto;
    display: block;
}

.melbet-auth-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.melbet-auth-link {
    min-width: 92px;
    min-height: 38px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.melbet-auth-login {
    background: var(--mb-yellow);
    color: #2a250f;
}

.melbet-auth-register {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: #f5f7fb;
}

.melbet-auth-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

.melbet-banner {
    width: 100%;
    margin-left: 0;
    min-height: 78vh;
    padding: 24px 12px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 320px 220px,
        linear-gradient(-145deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 320px 220px,
        linear-gradient(90deg, #101317 0%, #15181f 50%, #101317 100%);
}

.melbet-login-card {
    width: min(880px, 100%);
    background: var(--mb-card);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.35);
}

.melbet-login-card h1 {
    margin: 0;
    padding: 18px 20px 10px;
    text-align: center;
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: #2b3440;
}

.melbet-login-tabs {
    padding: 10px 20px 18px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    border-radius: 8px;
}

.melbet-tab {
    min-height: 46px;
    border: none;
    background: #c5c5c7;
    color: #2f353d;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.melbet-tab:first-child {
    border-radius: 10px 0 0 10px;
}

.melbet-tab:last-child {
    border-radius: 0 10px 10px 0;
}

.melbet-tab.active {
    background: #2d2d2f;
    color: #ffffff;
}

.melbet-login-form {
    padding: 0 20px 20px;
    display: grid;
    gap: 14px;
}

.melbet-input {
    width: 100%;
    min-height: 54px;
    border-radius: 12px;
    border: 1px solid #a5a5a5;
    background: #ececec;
    color: #243246;
    font-size: 1.05rem;
    padding: 12px 14px;
    outline: none;
}

.melbet-input::placeholder {
    color: #39485d;
}

.melbet-password-row {
    position: relative;
}

.melbet-password-row .melbet-input {
    padding-right: 42px;
}

.melbet-eye {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #4f4f52;
}

.melbet-options-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.melbet-remember {
    color: #2e3d53;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.melbet-remember input {
    width: 20px;
    height: 20px;
}

.melbet-forgot {
    color: #2d3e55;
    text-decoration: underline;
    font-size: 1rem;
}

.melbet-login-btn {
    min-height: 56px;
    border: none;
    border-radius: 12px;
    background: var(--mb-yellow);
    color: #21252a;
    font-size: 1.85rem;
    font-weight: 700;
    cursor: pointer;
}

.melbet-social-divider {
    margin-top: 8px;
    position: relative;
    text-align: center;
    color: var(--mb-link);
    font-size: 1.02rem;
}

.melbet-social-divider::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    border-top: 1px solid #ccccce;
}

.melbet-social-divider span {
    position: relative;
    background: var(--mb-card);
    padding: 0 10px;
}

.melbet-social-row {
    display: inline-flex;
    justify-self: center;
    gap: 10px;
}

.melbet-social {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #cbcbcd;
    color: #383a40;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    font-weight: 700;
}

.melbet-register-copy {
    margin: 8px 0 0;
    padding: 18px 20px 22px;
    text-align: center;
    color: var(--mb-link);
    border-top: 1px solid #d0d0d1;
    font-size: 1.05rem;
}

.melbet-register-copy a {
    color: #d28f00;
    font-weight: 700;
}

.melbet-page .casino-footer {
    margin-left: 0;
    width: 100%;
    background:
        radial-gradient(circle at 8% 16%, rgba(255, 190, 0, 0.14), transparent 34%),
        linear-gradient(180deg, #1b2027 0%, #11161d 100%);
    border-top: 1px solid rgba(255, 190, 0, 0.3);
}

.melbet-page .footer-brand-block h2,
.melbet-page .footer-kicker,
.melbet-page .footer-links-block h3,
.melbet-page .footer-disclaimer h3,
.melbet-page .footer-tagline,
.melbet-page .footer-links-block a,
.melbet-page .footer-disclaimer p,
.melbet-page .footer-copy {
    color: #edf1f7;
}

.melbet-page .footer-chip-row span {
    border-color: rgba(255, 190, 0, 0.45);
    background: rgba(255, 190, 0, 0.12);
    color: #ffd773;
}

.melbet-page .footer-rule {
    border-top-color: rgba(255, 215, 115, 0.35);
}

.melbet-footer-logo {
    width: min(170px, 100%);
    height: auto;
    display: block;
    margin: 0 0 10px;
}

@media (max-width: 768px) {
    .melbet-topbar {
        min-height: auto;
        padding: 10px 12px;
        gap: 10px;
    }

    .melbet-logo {
        width: min(118px, 42vw);
    }

    .melbet-auth-actions {
        gap: 8px;
    }

    .melbet-auth-link {
        min-width: 74px;
        min-height: 34px;
        font-size: 0.86rem;
    }

    .melbet-banner {
        min-height: auto;
        padding: 16px 8px 26px;
    }

    .melbet-login-card h1 {
        font-size: 1.8rem;
    }

    .melbet-login-tabs {
        padding: 8px 12px 14px;
    }

    .melbet-tab {
        min-height: 40px;
        font-size: 0.9rem;
    }

    .melbet-login-form {
        padding: 0 12px 16px;
        gap: 10px;
    }

    .melbet-input {
        min-height: 48px;
        font-size: 0.98rem;
    }

    .melbet-login-btn {
        min-height: 50px;
        font-size: 1.35rem;
    }

    .melbet-social {
        width: 38px;
        height: 38px;
        font-size: 1.4rem;
    }

    .melbet-register-copy {
        font-size: 0.95rem;
    }

    .melbet-footer-logo {
        width: min(132px, 72%);
    }
}

/* ============================================================
   STAKE PAGE
   Theme: dark navy + electric green accent
   ============================================================ */
:root {
    --sk-bg: #0f1923;
    --sk-panel: #1a2c38;
    --sk-accent: #00e701;
    --sk-accent-hover: #00c500;
    --sk-text: #e8f0fe;
    --sk-muted: #8a9bb0;
    --sk-border: #253647;
    --sk-input-bg: #0d1e2b;
    --sk-blue: #1771e2;
}

/* Topbar */
.stake-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1rem, 4vw, 3rem);
    height: 64px;
    background: var(--sk-panel);
    border-bottom: 2px solid var(--sk-accent);
    position: sticky;
    top: 0;
    z-index: 100;
}

.stake-page header {
    margin-left: 0;
    text-align: left;
}

.stake-logo-link { display: flex; align-items: center; }
.stake-logo { height: 40px; width: auto; }

.stake-auth-actions { display: flex; gap: 0.75rem; align-items: center; }

.stake-auth-link {
    padding: 0.45rem 1.25rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.stake-auth-login {
    color: var(--sk-text);
    border: 1.5px solid var(--sk-border);
    background: transparent;
}
.stake-auth-login:hover { background: var(--sk-border); }

.stake-auth-register {
    background: var(--sk-accent);
    color: #0f1923;
    border: 1.5px solid var(--sk-accent);
}
.stake-auth-register:hover { background: var(--sk-accent-hover); border-color: var(--sk-accent-hover); }

/* Banner: split two-column layout */
.stake-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 88vh;
    background: var(--sk-bg);
}

/* Left panel */
.stake-panel-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: clamp(2rem, 5vw, 4rem);
    background: linear-gradient(135deg, #0d1e2b 0%, #1a3a50 55%, #0f2a40 100%);
    position: relative;
    overflow: hidden;
}

.stake-panel-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 60% 40%, rgba(0,231,1,0.07) 0%, transparent 65%);
    pointer-events: none;
}

.stake-hero-img {
    width: clamp(180px, 30vw, 320px);
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(0,231,1,0.25));
    animation: stake-float 4s ease-in-out infinite;
}

@keyframes stake-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.stake-hero-text { text-align: center; color: var(--sk-text); }

.stake-hero-eyebrow {
    font-size: clamp(0.65rem, 1vw, 0.78rem);
    letter-spacing: 0.18em;
    color: var(--sk-accent);
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}

.stake-hero-headline {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 0.75rem;
    color: #fff;
}

.stake-hero-sub {
    font-size: clamp(0.85rem, 1.3vw, 1rem);
    color: var(--sk-muted);
    margin: 0;
    letter-spacing: 0.04em;
}

/* Right panel */
.stake-panel-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
    background: var(--sk-panel);
}

.stake-login-card {
    width: 100%;
    max-width: 420px;
}

.stake-login-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.35rem;
}

.stake-login-sub {
    font-size: 0.88rem;
    color: var(--sk-muted);
    margin: 0 0 1.75rem;
}

.stake-register-link {
    color: var(--sk-accent);
    text-decoration: none;
    font-weight: 600;
}
.stake-register-link:hover { text-decoration: underline; }

.stake-login-form { display: flex; flex-direction: column; gap: 1rem; }

.stake-field-group { display: flex; flex-direction: column; gap: 0.35rem; }

.stake-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--sk-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.stake-input {
    width: 100%;
    height: 48px;
    background: var(--sk-input-bg);
    border: 1.5px solid var(--sk-border);
    border-radius: 8px;
    color: var(--sk-text);
    font-size: 0.95rem;
    padding: 0 1rem;
    box-sizing: border-box;
    transition: border-color 0.2s;
    outline: none;
}
.stake-input:focus { border-color: var(--sk-accent); }
.stake-input::placeholder { color: #4a6070; }

.stake-password-row { position: relative; }
.stake-password-row .stake-input { padding-right: 2.75rem; }
.stake-eye {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--sk-muted);
    font-size: 1rem;
    user-select: none;
}

.stake-options-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -0.25rem;
}

.stake-remember {
    font-size: 0.85rem;
    color: var(--sk-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}
.stake-remember input { accent-color: var(--sk-accent); }

.stake-forgot {
    font-size: 0.85rem;
    color: var(--sk-accent);
    text-decoration: none;
    font-weight: 600;
}
.stake-forgot:hover { text-decoration: underline; }

.stake-login-btn {
    width: 100%;
    height: 52px;
    background: var(--sk-accent);
    color: #0f1923;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 0.25rem;
}
.stake-login-btn:hover { background: var(--sk-accent-hover); transform: translateY(-1px); }
.stake-login-btn:active { transform: translateY(0); }

/* Divider */
.stake-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.25rem 0 0.75rem;
    color: var(--sk-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 600;
}
.stake-divider::before,
.stake-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--sk-border);
}

/* Social row */
.stake-social-row {
    display: flex;
    gap: 0.75rem;
}

.stake-social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 46px;
    background: var(--sk-input-bg);
    border: 1.5px solid var(--sk-border);
    border-radius: 8px;
    color: var(--sk-text);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.stake-social-btn:hover { border-color: var(--sk-accent); background: #122030; }

.stake-social-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Footer logo */
.stake-footer-logo {
    height: auto;
    width: min(150px, 80%);
    margin-bottom: 0.75rem;
    filter: none;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

.stake-page .casino-footer {
    margin-left: 0;
    width: 100%;
    padding: 34px clamp(1rem, 4vw, 3rem) 62px;
    background:
        radial-gradient(circle at 14% 18%, rgba(0, 231, 1, 0.15), transparent 34%),
        radial-gradient(circle at 84% 24%, rgba(0, 231, 1, 0.13), transparent 34%),
        linear-gradient(120deg, #0d1e2b 0%, #1a2c38 52%, #0f2a40 100%);
    border-top: 1px solid rgba(0, 231, 1, 0.45);
    color: var(--sk-text);
}

.stake-page .footer-kicker,
.stake-page .footer-links-block h3,
.stake-page .footer-disclaimer h3 {
    color: #40f36c;
}

.stake-page .footer-brand-block h2,
.stake-page .footer-tagline,
.stake-page .footer-links-block a,
.stake-page .footer-disclaimer p,
.stake-page .footer-copy {
    color: #d9e4ef;
}

.stake-page .footer-chip-row span {
    border: 1px solid rgba(0, 231, 1, 0.5);
    background: rgba(0, 231, 1, 0.1);
    color: #b8ffcd;
}

.stake-page .footer-rule {
    border-top-color: rgba(0, 231, 1, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
    .stake-banner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .stake-panel-left {
        padding: 2.5rem 1.5rem;
        min-height: 40vh;
    }

    .stake-hero-img {
        width: clamp(120px, 40vw, 180px);
    }

    .stake-panel-right {
        padding: 2rem 1.25rem;
    }

    .stake-login-title {
        font-size: 1.6rem;
    }

    .stake-login-btn {
        height: 48px;
        font-size: 0.95rem;
    }

    .stake-page .casino-footer {
        padding: 28px 14px 48px;
    }
}

/* ============================================================
   1XBET PAGE
   Theme: deep blue + white login card + green CTA
   ============================================================ */
.one-xbet-page {
    --xb-bg-1: #15396b;
    --xb-bg-2: #1f4d87;
    --xb-panel: #eceff3;
    --xb-blue: #1f5da9;
    --xb-blue-dark: #163d6d;
    --xb-green: #6ea31f;
    --xb-text: #37608f;
    --xb-border: #9db5cf;
}

.one-xbet-topbar {
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1rem, 4vw, 3.25rem);
    background: #195685;
    border-bottom: 2px solid #1af12f;
    position: sticky;
    top: 0;
    z-index: 100;
}

.one-xbet-page header {
    margin-left: 0;
    text-align: left;
}

.one-xbet-logo-link {
    display: inline-flex;
    align-items: center;
}

.one-xbet-logo {
    width: min(138px, 34vw);
    height: auto;
    display: block;
}

.one-xbet-auth-actions {
    display: flex;
    gap: 0.9rem;
}

.one-xbet-auth-link {
    min-height: 40px;
    min-width: 108px;
    border-radius: 8px;
    font-size: 1.02rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.one-xbet-auth-login {
    color: #ffffff;
    border: 1px solid #35506a;
    background: #195685;
}

.one-xbet-auth-register {
    color: #071509;
    background: #12f112;
    border: 1px solid #12f112;
}

.one-xbet-auth-link:hover,
.one-xbet-auth-link:focus-visible {
    transform: translateY(-1px);
}

.one-xbet-banner {
    position: relative;
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px 12px 42px;
    background: #195685;
    overflow: hidden;
}

.one-xbet-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%),
        linear-gradient(35deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 100%);
    background-size: 100% 100%, 100% 100%;
    pointer-events: none;
}

.one-xbet-login-card {
    position: relative;
    z-index: 1;
    width: min(450px, 100%);
    background: var(--xb-panel);
    border-radius: 8px;
    border: 1px solid #dbe2ea;
    box-shadow: 0 28px 56px rgba(6, 17, 33, 0.38);
    padding: 22px 24px 14px;
}

.one-xbet-card-logo {
    display: block;
    width: min(210px, 64%);
    margin: 0 auto 8px;
}

.one-xbet-select-copy {
    text-align: center;
    color: var(--xb-blue);
    font-weight: 700;
    margin: 0 0 12px;
}

.one-xbet-login-form {
    display: grid;
    gap: 10px;
}

.one-xbet-input-wrap {
    position: relative;
}

.one-xbet-input {
    width: 100%;
    height: 42px;
    border-radius: 9px;
    border: 1.5px solid var(--xb-border);
    background: #f7f8fa;
    color: #406c9d;
    font-size: 1.75rem;
    padding: 0 44px 0 12px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.one-xbet-input::placeholder {
    color: #6c87a8;
}

.one-xbet-input:focus {
    border-color: #7198c7;
    box-shadow: 0 0 0 2px rgba(113, 152, 199, 0.18);
}

.one-xbet-input-icon {
    position: absolute;
    right: 0;
    top: 0;
    height: 42px;
    width: 38px;
    border-left: 1px solid #b9c9da;
    color: #2c63a1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.one-xbet-options-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2px 0 0;
}

.one-xbet-remember {
    font-size: 0.82rem;
    color: var(--xb-blue);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.one-xbet-remember input {
    accent-color: #7ea122;
}

.one-xbet-forgot {
    color: #4c74a1;
    font-size: 0.82rem;
    text-decoration: underline;
}

.one-xbet-login-btn {
    height: 46px;
    border: none;
    border-radius: 9px;
    background: var(--xb-green);
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    cursor: pointer;
    margin-top: 2px;
}

.one-xbet-login-btn:hover {
    background: #618d1a;
}

.one-xbet-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #bccbdb;
    margin-top: 2px;
    padding-top: 12px;
}

.one-xbet-divider span {
    color: #6686a9;
    font-size: 0.8rem;
}

.one-xbet-social-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.one-xbet-social-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #d3dde8;
    background: #dce6ef;
    color: #2c5c95;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
}

.one-xbet-sms-btn {
    height: 40px;
    border: none;
    border-radius: 9px;
    background: #c2d1df;
    color: #3c6a9e;
    font-size: 1.65rem;
    font-weight: 700;
    cursor: pointer;
}

.one-xbet-register-copy {
    margin: 2px 0 0;
    text-align: center;
    color: #5f82a7;
    font-size: 0.83rem;
}

.one-xbet-register-copy a {
    color: #2f66a5;
    text-decoration: underline;
}

.one-xbet-page .casino-footer {
    margin-left: 0;
    width: 100%;
    background: #195685;
    border-top: 1px solid rgba(124, 198, 255, 0.35);
    color: #ebf5ff;
    padding: 34px clamp(1rem, 4vw, 3rem) 62px;
}

.one-xbet-page .footer-kicker,
.one-xbet-page .footer-links-block h3,
.one-xbet-page .footer-disclaimer h3 {
    color: #7cd1ff;
}

.one-xbet-page .footer-brand-block h2,
.one-xbet-page .footer-tagline,
.one-xbet-page .footer-links-block a,
.one-xbet-page .footer-disclaimer p,
.one-xbet-page .footer-copy {
    color: #d9ecff;
}

.one-xbet-page .footer-chip-row span {
    border: 1px solid rgba(124, 198, 255, 0.48);
    background: rgba(124, 198, 255, 0.12);
    color: #d9ecff;
}

.one-xbet-page .footer-rule {
    border-top-color: rgba(124, 198, 255, 0.35);
}

.one-xbet-footer-logo {
    width: min(178px, 92%);
    height: auto;
    display: block;
    margin: 0 0 10px;
}

@media (max-width: 768px) {
    .one-xbet-topbar {
        height: auto;
        padding: 10px 12px;
        gap: 10px;
    }

    .one-xbet-logo {
        width: min(120px, 36vw);
    }

    .one-xbet-auth-actions {
        gap: 8px;
    }

    .one-xbet-auth-link {
        min-width: 78px;
        min-height: 34px;
        font-size: 0.9rem;
    }

    .one-xbet-banner {
        min-height: auto;
        padding: 20px 10px 28px;
    }

    .one-xbet-login-card {
        padding: 16px 14px 12px;
    }

    .one-xbet-input {
        font-size: 1.02rem;
    }

    .one-xbet-login-btn,
    .one-xbet-sms-btn {
        font-size: 1rem;
    }

    .one-xbet-page .casino-footer {
        padding: 28px 14px 48px;
    }
}

/* ============================================================
   TIGER EXCHANGE PAGE
   Theme: black + gold + tiger orange/blue
   ============================================================ */
.tigerexch-page {
    --tx-bg: #070707;
    --tx-orange: #ff8a1f;
    --tx-orange-deep: #e06d0f;
    --tx-blue: #0a5ab4;
    --tx-gold: #e2b45e;
    --tx-text: #f7f7f7;
    --tx-muted: #d3c6ad;
}

.tigerexch-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    padding: 0 clamp(1rem, 4vw, 3rem);
    background: #111111;
    border-bottom: 2px solid rgba(255, 138, 31, 0.75);
    position: sticky;
    top: 0;
    z-index: 100;
}

.tigerexch-page header {
    margin-left: 0;
    text-align: left;
}

.tigerexch-logo-link {
    display: inline-flex;
    align-items: center;
}

.tigerexch-logo {
    width: min(225px, 48vw);
    height: auto;
    display: block;
}

.tigerexch-auth-actions {
    display: flex;
    gap: 0.75rem;
}

.tigerexch-auth-link {
    min-height: 40px;
    min-width: 104px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.tigerexch-auth-login {
    color: #ffffff;
    border: 1px solid #3c3c3c;
    background: transparent;
}

.tigerexch-auth-register {
    color: #111111;
    border: 1px solid var(--tx-orange);
    background: var(--tx-orange);
}

.tigerexch-auth-link:hover,
.tigerexch-auth-link:focus-visible {
    transform: translateY(-1px);
}

.tigerexch-auth-register:hover,
.tigerexch-auth-register:focus-visible {
    background: var(--tx-orange-deep);
    border-color: var(--tx-orange-deep);
}

.tigerexch-banner {
    position: relative;
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 5vw, 4rem) 1rem;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.75)),
        url("../images/tiger2.webp") center center / cover no-repeat,
        var(--tx-bg);
    overflow: hidden;
}

.tigerexch-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 38%, rgba(255, 179, 76, 0.18), transparent 38%),
        radial-gradient(circle at 50% 80%, rgba(255, 138, 31, 0.12), transparent 50%);
    pointer-events: none;
}

.tigerexch-banner-content {
    position: relative;
    z-index: 1;
    width: min(840px, 100%);
    padding: clamp(1.25rem, 3vw, 2.5rem);
    border: 1px solid rgba(226, 180, 94, 0.45);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(6, 6, 6, 0.65), rgba(9, 9, 9, 0.82));
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.5);
}

.tigerexch-banner-logo {
    width: min(340px, 72%);
    height: auto;
    display: block;
    margin: 0 auto 1rem;
}

.tigerexch-banner h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 5.8vw, 4rem);
    line-height: 1.15;
    font-weight: 900;
    text-wrap: balance;
}

.tigerexch-banner p {
    margin: 1rem auto 0;
    max-width: 620px;
    color: var(--tx-muted);
    font-size: clamp(0.95rem, 1.8vw, 1.2rem);
    line-height: 1.55;
}

.tigerexch-login-form {
    width: min(460px, 100%);
    margin: 1.15rem auto 0;
    display: grid;
    gap: 0.7rem;
    padding: 1rem;
    border: 1px solid rgba(226, 180, 94, 0.38);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(14, 14, 14, 0.72), rgba(5, 5, 5, 0.82));
}

.tigerexch-field-wrap {
    width: 100%;
}

.tigerexch-input {
    width: 100%;
    min-height: 44px;
    border-radius: 9px;
    border: 1px solid rgba(226, 180, 94, 0.45);
    background: rgba(22, 22, 22, 0.88);
    color: #fff;
    font-size: 0.95rem;
    padding: 0 0.85rem;
    outline: none;
}

.tigerexch-input::placeholder {
    color: #baab8f;
}

.tigerexch-input:focus {
    border-color: rgba(255, 159, 59, 0.8);
    box-shadow: 0 0 0 2px rgba(255, 159, 59, 0.18);
}

.tigerexch-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.tigerexch-remember {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: #e9d8b4;
}

.tigerexch-remember input {
    accent-color: #ff9f3b;
}

.tigerexch-forgot {
    font-size: 0.82rem;
    color: #f4c279;
    text-decoration: underline;
}

.tigerexch-login-btn {
    min-height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(255, 194, 123, 0.64);
    background: linear-gradient(180deg, #ff9f3b, var(--tx-orange));
    color: #151515;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: pointer;
}

.tigerexch-login-btn:hover,
.tigerexch-login-btn:focus-visible {
    background: linear-gradient(180deg, #ff9421, var(--tx-orange-deep));
}

.tigerexch-banner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.35rem;
    min-height: 46px;
    padding: 0 1.4rem;
    border-radius: 10px;
    background: linear-gradient(180deg, #ff9f3b, var(--tx-orange));
    color: #141414;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 194, 123, 0.6);
    box-shadow: 0 12px 24px rgba(255, 138, 31, 0.28);
}

.tigerexch-banner-cta:hover,
.tigerexch-banner-cta:focus-visible {
    background: linear-gradient(180deg, #ff9421, var(--tx-orange-deep));
}

.tigerexch-page .casino-footer {
    margin-left: 0;
    width: 100%;
    padding: 34px clamp(1rem, 4vw, 3rem) 62px;
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 138, 31, 0.15), transparent 34%),
        radial-gradient(circle at 85% 18%, rgba(10, 90, 180, 0.16), transparent 36%),
        linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
    border-top: 1px solid rgba(226, 180, 94, 0.45);
    color: var(--tx-text);
}

.tigerexch-page .footer-kicker,
.tigerexch-page .footer-links-block h3,
.tigerexch-page .footer-disclaimer h3 {
    color: var(--tx-gold);
}

.tigerexch-page .footer-brand-block h2 {
    color: #ffffff;
}

.tigerexch-page .footer-tagline,
.tigerexch-page .footer-links-block a,
.tigerexch-page .footer-disclaimer p,
.tigerexch-page .footer-copy {
    color: #e8e1d5;
}

.tigerexch-page .footer-chip-row span {
    border: 1px solid rgba(226, 180, 94, 0.52);
    background: rgba(226, 180, 94, 0.12);
    color: #f0ddba;
}

.tigerexch-page .footer-rule {
    border-top-color: rgba(226, 180, 94, 0.38);
}

.tigerexch-footer-logo {
    width: min(250px, 92%);
    height: auto;
    display: block;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .tigerexch-topbar {
        min-height: auto;
        padding: 10px 12px;
        gap: 10px;
    }

    .tigerexch-logo {
        width: min(150px, 45vw);
    }

    .tigerexch-auth-actions {
        gap: 8px;
    }

    .tigerexch-auth-link {
        min-width: 76px;
        min-height: 34px;
        font-size: 0.88rem;
    }

    .tigerexch-banner {
        min-height: auto;
        padding: 24px 10px 30px;
    }

    .tigerexch-banner-content {
        border-radius: 10px;
        padding: 1.1rem 0.9rem 1.2rem;
    }

    .tigerexch-login-form {
        margin-top: 0.95rem;
        padding: 0.8rem;
        gap: 0.6rem;
    }

    .tigerexch-input,
    .tigerexch-login-btn {
        min-height: 42px;
        font-size: 0.9rem;
    }

    .tigerexch-form-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .tigerexch-banner-cta {
        min-height: 42px;
        font-size: 0.92rem;
    }

    .tigerexch-page .casino-footer {
        padding: 28px 14px 48px;
    }
}

/* ============================================================
   BET365 PAGE
   Theme: cool gray modal over green stadium backdrop
   ============================================================ */
.bet365-page {
    --b365-bg: #bdbdbf;
    --b365-card: #c6c6c8;
    --b365-input-bg: #f4f4f5;
    --b365-border: #b6b6b8;
    --b365-text: #4b4d52;
    --b365-cta: #12c5a0;
    --b365-cta-hover: #0fb48f;
}

.bet365-topbar {
    min-height: 76px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: #027b5b;
    border-bottom: 1px solid rgba(83, 85, 90, 0.2);
}

.bet365-page header {
    margin-left: 0;
    text-align: left;
}

.bet365-logo-link {
    display: inline-flex;
    align-items: center;
}

.bet365-logo {
    width: min(170px, 34vw);
    height: auto;
    display: block;
}

.bet365-auth-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.bet365-auth-link {
    min-height: 36px;
    min-width: 92px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
}

.bet365-auth-login {
    color: #4a4d53;
    background: #d8d8da;
    border: 1px solid #aaadb2;
}

.bet365-auth-register {
    color: #ffffff;
    background: #4b4f56;
    border: 1px solid #4b4f56;
}

.bet365-banner {
    position: relative;
    min-height: clamp(340px, 48vh, 500px);
    padding: clamp(0.55rem, 1.2vw, 0.9rem) 24px 14px;
    background:
        linear-gradient(180deg, rgba(189, 189, 191, 0.88), rgba(189, 189, 191, 0.92)),
        url("../images/bet365.webp") center center / cover no-repeat;
}

.bet365-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    pointer-events: none;
}

.bet365-login-card {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 9px;
}

.bet365-input-wrap {
    position: relative;
}

.bet365-input {
    width: 100%;
    min-height: 66px;
    border-radius: 6px;
    border: 2px solid #c3c3c5;
    background: var(--b365-input-bg);
    padding: 0 18px;
    color: #585b62;
    font-size: clamp(1.05rem, 2.2vw, 1.6rem);
    font-weight: 500;
    outline: none;
}

.bet365-input::placeholder {
    color: #5f6269;
}

.bet365-input:focus {
    border-left: 4px solid #8bc2ac;
}

.bet365-remember {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--b365-text);
    font-size: clamp(0.9rem, 1.5vw, 1.08rem);
    margin: 0 0 6px;
}

.bet365-remember input {
    width: 22px;
    height: 22px;
    accent-color: #11bc9b;
}

.bet365-login-btn {
    min-height: 60px;
    border-radius: 0;
    border: none;
    background: var(--b365-cta);
    color: #153b44;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 800;
    cursor: pointer;
}

.bet365-login-btn:hover,
.bet365-login-btn:focus-visible {
    background: var(--b365-cta-hover);
}

.bet365-help-text {
    margin: 6px 0 0;
    text-align: center;
    color: #4f5359;
    font-size: clamp(0.88rem, 1.3vw, 1rem);
}

.bet365-page .casino-footer {
    margin-left: 0;
    width: 100%;
    padding: 34px clamp(1rem, 4vw, 3rem) 62px;
    background:
        radial-gradient(circle at 12% 12%, rgba(18, 197, 160, 0.2), transparent 36%),
        linear-gradient(180deg, #1b4f44 0%, #103b35 100%);
    border-top: 1px solid rgba(97, 208, 177, 0.4);
    color: #f2fbf8;
}

.bet365-page .footer-kicker,
.bet365-page .footer-links-block h3,
.bet365-page .footer-disclaimer h3 {
    color: #9ff0d8;
}

.bet365-page .footer-brand-block h2,
.bet365-page .footer-tagline,
.bet365-page .footer-links-block a,
.bet365-page .footer-disclaimer p,
.bet365-page .footer-copy {
    color: #e8f8f3;
}

.bet365-page .footer-chip-row span {
    border: 1px solid rgba(159, 240, 216, 0.5);
    background: rgba(159, 240, 216, 0.12);
    color: #e8f8f3;
}

.bet365-page .footer-rule {
    border-top-color: rgba(159, 240, 216, 0.36);
}

.bet365-footer-logo {
    width: min(190px, 92%);
    height: auto;
    display: block;
    margin: 0 0 10px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .bet365-topbar {
        min-height: 58px;
        padding: 0 12px;
        gap: 8px;
    }

    .bet365-auth-actions {
        gap: 6px;
    }

    .bet365-auth-link {
        min-width: 68px;
        min-height: 30px;
        font-size: 0.8rem;
        border-radius: 6px;
    }

    .bet365-logo {
        width: min(122px, 32vw);
    }

    .bet365-banner {
        min-height: auto;
        padding: 8px 10px 12px;
    }

    .bet365-login-card {
        gap: 7px;
    }

    .bet365-input,
    .bet365-login-btn {
        min-height: 46px;
        font-size: 0.86rem;
    }

    .bet365-input {
        padding: 0 12px;
    }

    .bet365-remember {
        gap: 10px;
        font-size: 0.9rem;
        margin: 2px 0 6px;
    }

    .bet365-remember input {
        width: 22px;
        height: 22px;
    }

    .bet365-help-text {
        font-size: 0.88rem;
        margin-top: 8px;
    }

    .bet365-page .casino-footer {
        padding: 28px 14px 48px;
    }
}

/* ============================================================
   DUBAIEXCH365 PAGE
   Theme: cool gray login panel + dark casino hero
   ============================================================ */
.dubaiexch365-page {
    --dx-bg: #d8d8dc;
    --dx-panel: #dbdbe0;
    --dx-input: #ececef;
    --dx-border: #c9cad0;
    --dx-text: #1d2533;
    --dx-muted: #5c6678;
    --dx-purple: #4f4aa5;
    --dx-yellow: #f3bc1b;
    --dx-green: #4caf50;
    --dx-dark: #0b1018;
}

.dubaiexch365-topbar {
    min-height: 70px;
    padding: 0 clamp(1rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #143155;
    border-bottom: 2px solid rgba(84, 168, 255, 0.45);
}

.dubaiexch365-page header {
    margin-left: 0;
    text-align: left;
}

.dubaiexch365-logo-link {
    display: inline-flex;
    align-items: center;
}

.dubaiexch365-logo {
    width: min(230px, 48vw);
    height: auto;
    display: block;
}

.dubaiexch365-auth-actions {
    display: inline-flex;
    gap: 0.55rem;
}

.dubaiexch365-auth-link {
    min-height: 36px;
    min-width: 88px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
}

.dubaiexch365-auth-login {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
}

.dubaiexch365-auth-register {
    color: #0d1d35;
    border: 1px solid #76b7ff;
    background: #76b7ff;
}

.dubaiexch365-banner {
    min-height: calc(100vh - 70px);
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(300px, 1fr);
}

.dubaiexch365-login-panel {
    background: var(--dx-bg);
    padding: clamp(1rem, 2.2vw, 1.6rem) clamp(0.9rem, 3vw, 2rem);
}

.dubaiexch365-login-panel h1 {
    margin: 0 0 0.9rem;
    text-align: center;
    color: #111827;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.dubaiexch365-login-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.95rem;
    border: 1px solid var(--dx-border);
}

.dubaiexch365-switch-btn {
    min-height: 48px;
    border: none;
    background: #efeff1;
    color: #1b273a;
    font-size: 1rem;
    font-weight: 700;
}

.dubaiexch365-switch-btn.active {
    background: var(--dx-purple);
    color: #fff;
}

.dubaiexch365-login-form {
    display: grid;
    gap: 0.88rem;
}

.dubaiexch365-mobile-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    border: 1px solid var(--dx-border);
    border-radius: 9px;
    overflow: hidden;
    background: var(--dx-input);
}

.dubaiexch365-country-code {
    min-height: 52px;
    padding: 0 10px;
    border: none;
    border-right: 1px solid var(--dx-border);
    background: var(--dx-input);
    color: #131a27;
    font-size: 1rem;
}

.dubaiexch365-input {
    width: 100%;
    min-height: 52px;
    border: none;
    background: var(--dx-input);
    color: #27374f;
    padding: 0 12px;
    font-size: 0.98rem;
    outline: none;
    box-sizing: border-box;
}

.dubaiexch365-input::placeholder {
    color: #6a7384;
}

.dubaiexch365-mode-row {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #111827;
    font-size: 0.98rem;
}

.dubaiexch365-mode-row input {
    accent-color: #111827;
}

.dubaiexch365-password-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    border: 1px solid var(--dx-border);
    border-radius: 9px;
    background: var(--dx-input);
    overflow: hidden;
}

.dubaiexch365-pass-icon {
    padding: 0 10px;
    color: #6a7384;
}

.dubaiexch365-password-row .dubaiexch365-input {
    min-height: 52px;
    padding-left: 0;
}

.dubaiexch365-eye {
    min-height: 52px;
    border: none;
    background: var(--dx-input);
    color: #2b3343;
    padding: 0 11px;
    cursor: pointer;
}

.dubaiexch365-forgot {
    justify-self: end;
    color: #222f48;
    text-decoration: underline;
    font-size: 0.94rem;
}

.dubaiexch365-action-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dubaiexch365-yellow-btn {
    min-height: 54px;
    border: none;
    border-radius: 8px;
    background: var(--dx-yellow);
    color: #12161f;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
}

.dubaiexch365-whatsapp-note {
    margin: 0;
    text-align: center;
    color: #202a3d;
    font-size: 0.93rem;
}

.dubaiexch365-whatsapp-btn {
    min-height: 50px;
    border-radius: 6px;
    background: var(--dx-green);
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
}

.dubaiexch365-social-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #232f42;
    font-size: 0.92rem;
}

.dubaiexch365-social-divider::before,
.dubaiexch365-social-divider::after {
    content: "";
    flex: 1;
    border-top: 1px solid #b8bcc7;
}

.dubaiexch365-social-row {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dubaiexch365-social {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
}

.dubaiexch365-ig { background: linear-gradient(135deg, #aa35b6, #ffdc64); }
.dubaiexch365-tg { background: #2fa3eb; }
.dubaiexch365-yt { background: #ff2d2d; }
.dubaiexch365-fb { background: #2f7ad9; }

.dubaiexch365-register-copy {
    margin: 0;
    text-align: center;
    color: #1c2941;
    font-size: 0.95rem;
}

.dubaiexch365-register-copy a {
    color: #3f2e9f;
    font-weight: 700;
    text-decoration: underline;
}

.dubaiexch365-hero-panel {
    background:
        linear-gradient(180deg, rgba(8, 11, 20, 0.15), rgba(8, 11, 20, 0.45)),
        url("../images/dubaiexch365.webp") center center / cover no-repeat;
}

.dubaiexch365-page .casino-footer {
    margin-left: 0;
    width: 100%;
    padding: 34px clamp(1rem, 4vw, 3rem) 62px;
    background:
        radial-gradient(circle at 10% 10%, rgba(82, 168, 255, 0.24), transparent 34%),
        radial-gradient(circle at 85% 14%, rgba(255, 181, 67, 0.15), transparent 32%),
        linear-gradient(180deg, #12263d 0%, #0d1d2f 100%);
    border-top: 1px solid rgba(116, 188, 255, 0.4);
}

.dubaiexch365-page .footer-kicker,
.dubaiexch365-page .footer-links-block h3,
.dubaiexch365-page .footer-disclaimer h3 {
    color: #8dccff;
}

.dubaiexch365-page .footer-brand-block h2,
.dubaiexch365-page .footer-tagline,
.dubaiexch365-page .footer-links-block a,
.dubaiexch365-page .footer-disclaimer p,
.dubaiexch365-page .footer-copy {
    color: #e4f1ff;
}

.dubaiexch365-page .footer-chip-row span {
    border: 1px solid rgba(141, 204, 255, 0.5);
    background: rgba(141, 204, 255, 0.13);
    color: #d6ecff;
}

.dubaiexch365-page .footer-rule {
    border-top-color: rgba(141, 204, 255, 0.34);
}

.dubaiexch365-footer-logo {
    width: min(230px, 94%);
    height: auto;
    display: block;
    margin: 0 0 10px;
}

@media (max-width: 980px) {
    .dubaiexch365-banner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .dubaiexch365-hero-panel {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .dubaiexch365-topbar {
        min-height: auto;
        padding: 10px 12px;
        gap: 8px;
    }

    .dubaiexch365-logo {
        width: min(152px, 42vw);
    }

    .dubaiexch365-auth-actions {
        gap: 6px;
    }

    .dubaiexch365-auth-link {
        min-width: 66px;
        min-height: 30px;
        font-size: 0.8rem;
    }

    .dubaiexch365-login-panel {
        padding: 0.85rem 0.8rem 1rem;
    }

    .dubaiexch365-login-panel h1 {
        font-size: 1.75rem;
        margin-bottom: 0.7rem;
    }

    .dubaiexch365-switch-btn,
    .dubaiexch365-country-code,
    .dubaiexch365-input,
    .dubaiexch365-password-row .dubaiexch365-input,
    .dubaiexch365-eye,
    .dubaiexch365-yellow-btn,
    .dubaiexch365-whatsapp-btn {
        min-height: 44px;
        font-size: 0.9rem;
    }

    .dubaiexch365-mode-row {
        gap: 16px;
        font-size: 0.9rem;
    }

    .dubaiexch365-social {
        width: 46px;
        height: 46px;
    }

    .dubaiexch365-hero-panel {
        min-height: 220px;
    }

    .dubaiexch365-page .casino-footer {
        padding: 28px 14px 48px;
    }
}