/* CSS Variables */
:root {
    --bg-primary: #0B3D33;
    --bg-secondary: #0A3329;
    --bg-dark: #072822;
    --bg-card: #0D4A3C;
    --bg-hover: #115544;
    --accent-yellow: #D4AF37;
    --accent-gold: #FFD700;
    --accent-green: #00C853;
    --text-primary: #FFFFFF;
    --text-secondary: #A0B8B0;
    --text-muted: #6B8B7B;
    --border-color: #1A5A4A;
    --win-amount: #00E676;
    --btn-register: #00897B;
    --sidebar-width: 260px;
    --coupon-width: 320px;
    --header-height: 60px;
}

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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}


a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    border-bottom: 1px solid #1a1a1a;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
}

.logo {
    display: flex;
    align-items: center;
}

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

.header-nav {
    display: flex;
    gap: 25px;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link i {
    font-size: 16px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s;
}

.lang-selector:hover {
    color: var(--text-primary);
}

.flag-ru {
    width: 24px;
    height: 16px;
    background: linear-gradient(to bottom, #fff 33%, #0039A6 33%, #0039A6 66%, #D52B1E 66%);
    border-radius: 2px;
}

.btn-login {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 16px;
}

.btn-register {
    background-color: #D4A825;
    border: none;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 24px;
    border-radius: 20px;
    transition: all 0.3s;
}

.btn-register:hover {
    background-color: #E5B82A;
    transform: translateY(-1px);
}

/* Main Container */
.main-container {
    display: flex;
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
    max-width: 100%;
    overflow-x: hidden;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    padding: 10px 0;
    position: fixed;
    top: var(--header-height);
    left: 0;
    height: calc(100vh - var(--header-height));
    overflow-y: auto;
    z-index: 100;
}

/* Sidebar Overlay for Mobile */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
}

.sidebar-overlay.active {
    display: block;
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.sidebar-link:hover {
    background-color: var(--bg-hover);
}

.sidebar-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Sidebar Icons */
.icon-bonus {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M20 7h-1.5c.31-.44.5-.97.5-1.5C19 4.12 17.88 3 16.5 3c-1.06 0-1.96.66-2.33 1.59C13.86 3.66 12.96 3 11.9 3c-1.38 0-2.5 1.12-2.5 2.5 0 .53.19 1.06.5 1.5H4c-1.1 0-2 .9-2 2v3h2v7c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-7h2V9c0-1.1-.9-2-2-2zm-8 11H8v-6h4v6zm0-8H6V9h6v1zm4 8h-2v-6h2v6zm2-8h-6V9h6v1z'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M20 7h-1.5c.31-.44.5-.97.5-1.5C19 4.12 17.88 3 16.5 3c-1.06 0-1.96.66-2.33 1.59C13.86 3.66 12.96 3 11.9 3c-1.38 0-2.5 1.12-2.5 2.5 0 .53.19 1.06.5 1.5H4c-1.1 0-2 .9-2 2v3h2v7c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-7h2V9c0-1.1-.9-2-2-2zm-8 11H8v-6h4v6zm0-8H6V9h6v1zm4 8h-2v-6h2v6zm2-8h-6V9h6v1z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-star {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-express {
    width: 16px;
    height: 16px;
    background: #4CAF50;
    border-radius: 50%;
    border: 2px solid #2E7D32;
}

.icon-football {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='48' fill='%23fff' stroke='%23333' stroke-width='2'/%3E%3Cpath d='M50 15 L62 35 L50 50 L38 35 Z' fill='%23333'/%3E%3Cpath d='M50 85 L62 65 L50 50 L38 65 Z' fill='%23333'/%3E%3Cpath d='M15 50 L35 38 L50 50 L35 62 Z' fill='%23333'/%3E%3Cpath d='M85 50 L65 38 L50 50 L65 62 Z' fill='%23333'/%3E%3Ccircle cx='50' cy='50' r='12' fill='%23333'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-tennis {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='48' fill='%23c8e620'/%3E%3Cpath d='M20 50 Q50 20 80 50' stroke='%23fff' stroke-width='4' fill='none'/%3E%3Cpath d='M20 50 Q50 80 80 50' stroke='%23fff' stroke-width='4' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-esports {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F7931E'%3E%3Cpath d='M21.58 16.09l-1.09-7.66C20.21 6.46 18.52 5 16.53 5H7.47C5.48 5 3.79 6.46 3.51 8.43l-1.09 7.66C2.2 17.63 3.39 19 4.94 19h0c.68 0 1.32-.27 1.8-.75L9 16h6l2.25 2.25c.48.48 1.13.75 1.8.75h0C20.61 19 21.8 17.63 21.58 16.09zM11 11H9v2H8v-2H6v-1h2V8h1v2h2V11zM15 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1S15.55 10 15 10zM17 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1S17.55 13 17 13z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.sidebar-section {
    margin-top: 10px;
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
}

.sidebar-section-title {
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 16px;
    margin-bottom: 2px;
}

.leagues-list {
    display: flex;
    flex-direction: column;
}

.league-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    transition: background-color 0.3s;
}

.league-item:hover {
    background-color: var(--bg-hover);
}

.flag {
    width: 26px;
    height: 18px;
    border-radius: 3px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.flag-england {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.flag-england::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: #C8102E;
    transform: translateY(-50%);
}

.flag-england::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #C8102E;
    transform: translateX(-50%);
}

.flag-spain {
    background: linear-gradient(to bottom, #C60B1E 30%, #FFC400 30%, #FFC400 70%, #C60B1E 70%);
}

.flag-italy {
    background: linear-gradient(to right, #009246 33%, #fff 33%, #fff 66%, #CE2B37 66%);
}

.flag-germany {
    background: linear-gradient(to bottom, #000 33%, #DD0000 33%, #DD0000 66%, #FFCC00 66%);
}

.flag-france {
    background: linear-gradient(to right, #002395 33%, #fff 33%, #fff 66%, #ED2939 66%);
}

.flag-uefa {
    background: #003399;
    position: relative;
}

.flag-uefa::before {
    content: '★';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFD700;
    font-size: 12px;
}

.flag-europa {
    background: linear-gradient(135deg, #F37021, #FF8C00);
    position: relative;
}

.flag-europa::before {
    content: '★';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
}

.league-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.country {
    font-size: 10px;
    color: var(--text-muted);
    line-height: 1.2;
}

.league-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.2;
}

.league-item i {
    color: var(--text-muted);
    font-size: 10px;
    margin-left: auto;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    margin-right: var(--coupon-width);
    padding: 20px;
    background-color: var(--bg-primary);
    max-width: 100%;
    overflow-x: hidden;
}

/* Hero Banner */
.hero-banner {
    background: url('banner.webp') center/cover no-repeat;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    font-style: italic;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 10px;
    letter-spacing: 1px;
    line-height: 1.1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 25px;
}

.btn-banner-register {
    background-color: #D4A825;
    border: none;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-banner-register:hover {
    background-color: #E5B82A;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 168, 37, 0.4);
}


/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.category-tabs::-webkit-scrollbar {
    height: 4px;
}

.category-tabs::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 2px;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background-color: var(--bg-card);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.category-tab:hover {
    background-color: var(--bg-hover);
    border-color: var(--border-color);
}

.category-tab.active {
    background-color: var(--btn-register);
}

.tab-icon {
    font-size: 16px;
}

/* Sections */
.games-section,
.wins-section,
.providers-section {
    margin-bottom: 35px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background-color: #FF5252;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.see-more {
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.see-more:hover {
    color: var(--text-primary);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 15px;
    width: 100%;
}

/* Slots Grid - smaller cards, fits 10 in a row */
.slots-grid {
    grid-template-columns: repeat(10, 1fr);
    gap: 12px;
}

/* Large Grid - bigger cards for Virtual Sports & Bingo */
.large-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    align-items: stretch;
}

.large-grid .game-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.game-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-image {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-color: #1a3d3d;
    position: relative;
    overflow: hidden;
}

/* Smaller cards for slots */
.slots-grid .game-card {
    gap: 5px;
}

.slots-grid .game-image {
    border-radius: 8px;
}

.slots-grid .game-name {
    font-size: 11px;
}

/* Larger cards for virtual sports & bingo */
.large-grid .game-image {
    border-radius: 12px;
    aspect-ratio: 3 / 4;
    width: 100%;
    flex-shrink: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
}

.large-grid .game-name {
    font-size: 13px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.6em;
    max-height: 2.6em;
}

.large-grid .game-provider {
    font-size: 12px;
    min-height: 1.5em;
    max-height: 1.5em;
    overflow: hidden;
}

.game-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.game-card:hover .game-image::after {
    opacity: 1;
}

.game-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-provider {
    font-size: 11px;
    color: var(--text-muted);
}

/* Wins Grid */
.wins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.win-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--bg-card);
    padding: 12px 15px;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.win-card:hover {
    background-color: var(--bg-hover);
}

.win-game-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    flex-shrink: 0;
    object-fit: cover;
}

.win-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.win-game-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.win-user {
    font-size: 11px;
    color: var(--text-muted);
}

.win-amount {
    font-size: 14px;
    font-weight: 700;
    color: var(--win-amount);
    white-space: nowrap;
}

/* Providers */
.providers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.provider-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background-color: var(--bg-card);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.provider-tag:hover {
    background-color: var(--bg-hover);
    border-color: var(--accent-gold);
}

.provider-icon {
    font-size: 16px;
}

/* Content Block */
.content-block {
    margin-top: 40px;
    margin-bottom: 30px;
}

.content-body {
    background-color: var(--bg-card);
    border-radius: 10px;
    padding: 25px 30px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.content-body h1 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.content-body h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.content-body h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 25px;
    margin-bottom: 12px;
}

.content-body h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-top: 18px;
    margin-bottom: 10px;
}

.content-body p {
    margin-bottom: 15px;
}

/* Reviews Section */
.reviews-section {
    margin-top: 20px;
}

.review-item {
    background-color: var(--bg-secondary);
    border-left: 3px solid var(--accent-gold);
    padding: 12px 15px;
    margin-bottom: 12px;
    border-radius: 6px;
}

.review-item p {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.6;
}

.review-item strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Content Images */
.content-body::after {
    content: "";
    display: table;
    clear: both;
}

.content-image {
    width: 280px;
    height: 180px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 15px;
}

.content-image-right {
    float: right;
    margin-left: 25px;
    margin-bottom: 15px;
}

.content-image-left {
    float: left;
    margin-right: 25px;
    margin-bottom: 15px;
}

/* Info Table Section */
.info-table-section {
    margin-bottom: 35px;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.info-table thead {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-secondary));
}

.info-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--accent-gold);
    font-size: 15px;
    border-bottom: 2px solid var(--accent-gold);
}

.info-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.info-table tbody tr:last-child td {
    border-bottom: none;
}

.info-table tbody tr:hover {
    background-color: var(--bg-hover);
}

.info-table td:first-child {
    color: var(--text-primary);
    font-weight: 500;
}

/* Content Tables (inside content-body) */
.content-table-wrapper {
    overflow-x: auto;
    margin: 15px 0 25px 0;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.content-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    background-color: var(--bg-secondary);
}

.content-table thead {
    background: linear-gradient(135deg, var(--bg-dark), #0a3328);
}

.content-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    color: var(--accent-gold);
    font-size: 13px;
    border-bottom: 2px solid var(--accent-gold);
    white-space: nowrap;
}

.content-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    vertical-align: middle;
}

.content-table tbody tr:last-child td {
    border-bottom: none;
}

.content-table tbody tr:hover {
    background-color: rgba(26, 90, 74, 0.5);
}

.content-table td:first-child {
    color: var(--text-primary);
    font-weight: 500;
}

/* Responsive Tables */
@media (max-width: 768px) {
    .info-table th,
    .info-table td {
        padding: 12px 14px;
        font-size: 12px;
    }
    
    .info-table th {
        font-size: 13px;
    }
    
    .content-table th,
    .content-table td {
        padding: 10px 12px;
        font-size: 11px;
    }
    
    .content-table th {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .info-table th,
    .info-table td {
        padding: 10px 12px;
        font-size: 11px;
    }
    
    .info-table th {
        font-size: 12px;
    }
    
    .content-table th,
    .content-table td {
        padding: 8px 10px;
        font-size: 10px;
    }
    
    .content-table th {
        font-size: 10px;
    }
}

/* Footer Accordion */
.footer-accordion {
    margin-top: 20px;
    margin-bottom: 30px;
}

.accordion-item {
    background-color: var(--bg-card);
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: var(--bg-hover);
}

.accordion-header i {
    color: var(--text-muted);
    transition: transform 0.3s;
}

/* Accordion content */
.accordion-content {
    display: none;
    padding: 0 20px 16px;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background-color: rgba(0, 0, 0, 0.18);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 14px;
}

.faq-q {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.faq-a {
    font-size: 12px;
    line-height: 1.55;
    color: var(--text-secondary);
}

/* Legal Section */
.legal-section {
    margin-bottom: 30px;
    width: 100%;
}

.legal-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 25px;
    width: 100%;
}

.legal-links a {
    color: var(--text-secondary);
    font-size: 13px;
    transition: color 0.3s;
    word-break: break-word;
}

.legal-links a:hover {
    color: var(--text-primary);
}

/* Subtitle for sections */
.section-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

/* Mobile App */
.mobile-app-section {
    margin-bottom: 30px;
}

.android-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--bg-card);
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.android-btn:hover {
    background-color: var(--bg-hover);
    border-color: #3DDC84;
}

.android-btn i {
    font-size: 28px;
    color: #3DDC84;
}

.android-btn .small-text {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.android-btn .big-text {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Payment Methods */
.payment-section {
    margin-bottom: 30px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.payment-icon {
    width: 55px;
    height: 38px;
    background-color: var(--bg-card);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.payment-icon.visa {
    color: #1A1F71;
    background: #fff;
}

.payment-icon.mastercard {
    background: #fff;
}

.mc-circles {
    width: 30px;
    height: 20px;
    position: relative;
}

.mc-circles::before,
.mc-circles::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.mc-circles::before {
    background: #EB001B;
    left: 0;
}

.mc-circles::after {
    background: #F79E1B;
    right: 0;
}

.payment-icon.bitcoin {
    background: #F7931A;
    color: #fff;
    font-size: 18px;
}

.payment-icon.tether {
    background: #26A17B;
    color: #fff;
    font-size: 16px;
}

.payment-icon.eth {
    background: #627EEA;
    color: #fff;
    font-size: 16px;
}

.payment-icon.usdc {
    background: #2775CA;
    color: #fff;
    font-size: 16px;
}

.payment-icon.kaspi {
    background: #fff;
    font-size: 20px;
}

/* Social Links */
.social-section {
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.telegram {
    background: #0088cc;
}

.social-link.tiktok {
    background: #000;
    border: 1px solid #333;
}

/* Coupon Sidebar */
.coupon-sidebar {
    width: var(--coupon-width);
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    position: fixed;
    top: var(--header-height);
    right: 0;
    height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
}

.coupon-header {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    color: var(--text-primary);
}

.coupon-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px;
    text-align: center;
}

.coupon-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--text-muted);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.coupon-icon::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--bg-secondary);
    border-radius: 50%;
    border-right: 2px solid var(--text-muted);
}

.coupon-icon::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--bg-secondary);
    border-radius: 50%;
    border-left: 2px solid var(--text-muted);
}

.coupon-icon i {
    font-size: 24px;
    color: var(--text-muted);
}

.coupon-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.coupon-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 220px;
}

/* Responsive */

/* Extra Large Screens (1600px+) */
@media (max-width: 1600px) {
    .slots-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

/* Large Screens (1400px) */
@media (max-width: 1400px) {
    .coupon-sidebar {
        display: none;
    }
    
    .main-content {
        margin-right: 0;
    }
    
    .slots-grid {
        grid-template-columns: repeat(7, 1fr);
    }
}

/* Medium-Large Screens (1200px) */
@media (max-width: 1200px) {
    .slots-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .large-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .wins-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .providers-list {
        gap: 8px;
    }
    
    .provider-tag {
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* Medium Screens (1100px) */
@media (max-width: 1100px) {
    .header-nav {
        display: none;
    }
}

/* Tablets (1024px) */
@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
        z-index: 200;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
        padding: 15px;
    }
    
    .slots-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .large-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets (900px) */
@media (max-width: 900px) {
    .hero-banner {
        min-height: 180px;
        padding: 20px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .slots-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .large-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .wins-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-body {
        padding: 20px;
    }
    
    .content-body h2 {
        font-size: 18px;
    }
    
    .content-body h3 {
        font-size: 15px;
    }
    
    .content-body h4 {
        font-size: 14px;
        margin-top: 16px;
    }
    
    .content-image {
        width: 200px;
        height: 130px;
    }
    
    .content-image-right {
        margin-left: 20px;
    }
    
    .content-image-left {
        margin-right: 20px;
    }
    
    .section-title {
        font-size: 17px;
    }
}

/* Small Tablets (768px) */
@media (max-width: 768px) {
    .header {
        padding: 0 10px;
    }
    
    .header-left {
        gap: 10px;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .header-right {
        gap: 8px;
    }
    
    .btn-login {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .btn-register {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .lang-selector {
        display: none;
    }
    
    .hero-banner {
        min-height: 150px;
        padding: 20px;
        border-radius: 12px;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .btn-banner-register {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    /* Category tabs - горизонтальный скролл */
    .category-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 8px;
        margin-bottom: 20px;
        padding-bottom: 5px;
    }
    
    .category-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .category-tab {
        flex-shrink: 0;
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .slots-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }
    
    .large-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .large-grid .game-name {
        font-size: 12px;
        min-height: 2.4em;
        max-height: 2.4em;
    }
    
    .large-grid .game-provider {
        font-size: 11px;
        min-height: 1.4em;
        max-height: 1.4em;
    }
    
    .wins-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .win-card {
        padding: 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .win-game-icon {
        width: 40px;
        height: 40px;
    }
    
    .win-game-name {
        font-size: 12px;
    }
    
    .win-amount {
        font-size: 13px;
        align-self: flex-end;
    }
    
    .providers-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 5px;
    }
    
    .providers-list::-webkit-scrollbar {
        display: none;
    }
    
    .provider-tag {
        flex-shrink: 0;
        padding: 8px 14px;
        font-size: 12px;
    }
    
    /* Контент с картинками - вертикально на планшетах */
    .content-image {
        width: 200px;
        height: 130px;
    }
    
    .content-image-right {
        margin-left: 20px;
    }
    
    .content-image-left {
        margin-right: 20px;
    }
    
    .content-body {
        padding: 18px;
    }
    
    .content-body h2 {
        font-size: 16px;
    }
    
    .content-body h3 {
        font-size: 14px;
    }
    
    .content-body h4 {
        font-size: 13px;
        margin-top: 15px;
    }
    
    .content-body p {
        font-size: 13px;
    }
    
    .games-section,
    .wins-section,
    .providers-section {
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 15px;
    }
    
    .accordion-header {
        padding: 14px 16px;
        font-size: 13px;
    }
    
    .legal-links {
        gap: 8px 15px;
    }
    
    .legal-links a {
        font-size: 12px;
    }
    
    .payment-methods {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .payment-icon {
        width: 50px;
        height: 32px;
        font-size: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .game-name {
        font-size: 11px;
    }
    
    .slots-grid .game-name {
        font-size: 10px;
    }
}

/* Mobile (600px) */
@media (max-width: 600px) {
    :root {
        --header-height: 56px;
    }
    
    .header {
        padding: 0 12px;
    }
    
    .header-left {
        gap: 10px;
    }
    
    .menu-toggle {
        font-size: 20px;
        padding: 8px;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .header-right {
        gap: 8px;
    }
    
    .header-right .btn-login {
        display: none;
    }
    
    .btn-register {
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 18px;
    }
    
    .search-btn {
        font-size: 18px;
        padding: 8px;
    }
    
    .main-content {
        padding: 12px;
    }
    
    .hero-banner {
        padding: 20px;
        min-height: 140px;
        border-radius: 10px;
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .btn-banner-register {
        padding: 10px 20px;
        font-size: 12px;
        border-radius: 16px;
    }
    
    .category-tabs {
        gap: 6px;
        margin-bottom: 15px;
    }
    
    .category-tab {
        padding: 8px 12px;
        font-size: 11px;
        border-radius: 16px;
    }
    
    .tab-icon {
        font-size: 12px;
    }
    
    .section-header {
        margin-bottom: 12px;
    }
    
    .section-title {
        font-size: 14px;
    }
    
    .see-more {
        font-size: 12px;
    }
    
    .games-grid,
    .slots-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
    
    .large-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .large-grid .game-name {
        font-size: 10px;
        min-height: 2.2em;
        max-height: 2.2em;
    }
    
    .large-grid .game-provider {
        font-size: 9px;
        min-height: 1.3em;
        max-height: 1.3em;
    }
    
    .game-card {
        gap: 3px;
    }
    
    .game-image {
        border-radius: 6px;
    }
    
    .game-name {
        font-size: 9px;
        line-height: 1.2;
    }
    
    .game-provider {
        font-size: 8px;
    }
    
    .slots-grid .game-name {
        font-size: 9px;
    }
    
    .wins-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .win-card {
        flex-direction: row;
        padding: 12px;
        align-items: center;
    }
    
    .win-game-icon {
        width: 45px;
        height: 45px;
        border-radius: 8px;
    }
    
    .win-info {
        flex: 1;
        gap: 2px;
    }
    
    .win-game-name {
        font-size: 13px;
    }
    
    .win-user {
        font-size: 11px;
    }
    
    .win-amount {
        font-size: 14px;
        align-self: center;
    }
    
    .providers-list {
        gap: 6px;
    }
    
    .provider-tag {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .provider-icon {
        font-size: 12px;
    }
    
    .content-block {
        margin-top: 20px;
        margin-bottom: 15px;
    }
    
    .content-body {
        padding: 15px;
        border-radius: 10px;
    }
    
    .content-body h2 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .content-body h3 {
        font-size: 13px;
        margin-top: 15px;
        margin-bottom: 8px;
    }
    
    .content-body h4 {
        font-size: 12px;
        margin-top: 12px;
    }
    
    .content-body p {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 10px;
    }
    
    .review-item {
        padding: 10px 12px;
        margin-bottom: 10px;
    }
    
    .review-item p {
        font-size: 11px;
    }
    
    .content-image {
        float: none;
        width: 100%;
        max-width: 100%;
        height: 150px;
        border-radius: 8px;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 12px;
        display: block;
    }
    
    .content-image-right,
    .content-image-left {
        float: none;
        margin-left: 0;
        margin-right: 0;
    }
    
    .footer-accordion {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .accordion-item {
        border-radius: 8px;
        margin-bottom: 6px;
    }
    
    .accordion-header {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .legal-section {
        margin-bottom: 20px;
    }
    
    .legal-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .legal-links {
        gap: 6px 12px;
    }
    
    .legal-links a {
        font-size: 11px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .mobile-app-section {
        margin-bottom: 20px;
    }
    
    .android-btn {
        padding: 12px 16px;
        width: 100%;
        justify-content: center;
    }
    
    .android-btn i {
        font-size: 24px;
    }
    
    .android-btn .small-text {
        font-size: 9px;
    }
    
    .android-btn .big-text {
        font-size: 14px;
    }
    
    .payment-section {
        margin-bottom: 20px;
    }
    
    .payment-methods {
        gap: 6px;
        justify-content: flex-start;
    }
    
    .payment-icon {
        width: 48px;
        height: 30px;
        font-size: 9px;
        border-radius: 6px;
    }
    
    .social-section {
        margin-bottom: 30px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .games-section,
    .wins-section,
    .providers-section {
        margin-bottom: 20px;
    }
    
    /* Sidebar на мобильных */
    .sidebar {
        width: 280px;
    }
}

/* Extra Small Mobile (480px) */
@media (max-width: 480px) {
    :root {
        --header-height: 52px;
    }
    
    .header {
        padding: 0 10px;
    }
    
    .logo-img {
        height: 26px;
    }
    
    .menu-toggle {
        font-size: 18px;
        padding: 6px;
    }
    
    .btn-register {
        padding: 7px 14px;
        font-size: 11px;
    }
    
    .search-btn {
        font-size: 16px;
        padding: 6px;
    }
    
    .main-content {
        padding: 10px;
    }
    
    .hero-banner {
        padding: 15px;
        min-height: 120px;
        border-radius: 8px;
        margin-bottom: 12px;
    }
    
    .hero-title {
        font-size: 18px;
    }
    
    .hero-subtitle {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    .btn-banner-register {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .category-tabs {
        gap: 5px;
        margin-bottom: 12px;
    }
    
    .category-tab {
        padding: 6px 10px;
        font-size: 10px;
        border-radius: 14px;
    }
    
    .tab-icon {
        font-size: 11px;
    }
    
    .section-header {
        margin-bottom: 10px;
    }
    
    .section-title {
        font-size: 13px;
    }
    
    .see-more {
        font-size: 11px;
    }
    
    .slots-grid,
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
    }
    
    .large-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }
    
    .large-grid .game-name {
        font-size: 9px;
        min-height: 2em;
        max-height: 2em;
    }
    
    .large-grid .game-provider {
        font-size: 8px;
        min-height: 1.2em;
        max-height: 1.2em;
    }
    
    .game-card {
        gap: 2px;
    }
    
    .game-image {
        border-radius: 5px;
    }
    
    .game-name {
        font-size: 8px;
    }
    
    .game-provider {
        font-size: 7px;
    }
    
    .slots-grid .game-name {
        font-size: 8px;
    }
    
    .win-card {
        padding: 10px;
    }
    
    .win-game-icon {
        width: 40px;
        height: 40px;
    }
    
    .win-game-name {
        font-size: 12px;
    }
    
    .win-user {
        font-size: 10px;
    }
    
    .win-amount {
        font-size: 13px;
    }
    
    .content-body {
        padding: 12px;
    }
    
    .content-body h2 {
        font-size: 14px;
    }
    
    .content-body h3 {
        font-size: 12px;
    }
    
    .content-body h4 {
        font-size: 11px;
        margin-top: 10px;
    }
    
    .content-body p {
        font-size: 11px;
    }
    
    .review-item {
        padding: 8px 10px;
        margin-bottom: 8px;
    }
    
    .review-item p {
        font-size: 10px;
    }
    
    .content-image {
        float: none;
        width: 100%;
        height: 130px;
        margin-left: 0;
        margin-right: 0;
    }
    
    .content-image-right,
    .content-image-left {
        float: none;
        margin-left: 0;
        margin-right: 0;
    }
    
    .accordion-header {
        padding: 11px 14px;
        font-size: 12px;
    }
    
    .legal-links a {
        font-size: 10px;
    }
    
    .payment-icon {
        width: 44px;
        height: 28px;
        font-size: 8px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .android-btn {
        padding: 10px 14px;
    }
    
    .android-btn i {
        font-size: 22px;
    }
    
    .android-btn .small-text {
        font-size: 8px;
    }
    
    .android-btn .big-text {
        font-size: 13px;
    }
    
    /* Sidebar */
    .sidebar {
        width: 260px;
    }
}

/* Extra Small Mobile (360px) */
@media (max-width: 360px) {
    :root {
        --header-height: 50px;
    }
    
    .header {
        padding: 0 8px;
    }
    
    .logo-img {
        height: 24px;
    }
    
    .btn-register {
        padding: 6px 12px;
        font-size: 10px;
    }
    
    .main-content {
        padding: 8px;
    }
    
    .hero-banner {
        padding: 12px;
        min-height: 100px;
    }
    
    .hero-title {
        font-size: 16px;
    }
    
    .hero-subtitle {
        font-size: 10px;
    }
    
    .btn-banner-register {
        padding: 7px 14px;
        font-size: 10px;
    }
    
    .category-tab {
        padding: 5px 8px;
        font-size: 9px;
    }
    
    .section-title {
        font-size: 12px;
    }
    
    .slots-grid,
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
    }
    
    .large-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }
    
    .large-grid .game-name {
        font-size: 8px;
        min-height: 1.8em;
        max-height: 1.8em;
    }
    
    .large-grid .game-provider {
        font-size: 7px;
        min-height: 1.1em;
        max-height: 1.1em;
    }
    
    .game-card {
        gap: 2px;
    }
    
    .game-image {
        border-radius: 4px;
    }
    
    .game-name {
        font-size: 7px;
    }
    
    .game-provider {
        font-size: 6px;
    }
    
    .slots-grid .game-name {
        font-size: 7px;
    }
    
    .win-card {
        padding: 8px;
    }
    
    .win-game-icon {
        width: 36px;
        height: 36px;
    }
    
    .win-game-name {
        font-size: 11px;
    }
    
    .win-amount {
        font-size: 12px;
    }
    
    .content-body {
        padding: 10px;
    }
    
    .content-body h2 {
        font-size: 13px;
    }
    
    .content-body h3 {
        font-size: 11px;
    }
    
    .content-body h4 {
        font-size: 10px;
        margin-top: 8px;
    }
    
    .content-body p {
        font-size: 10px;
    }
    
    .review-item {
        padding: 6px 8px;
        margin-bottom: 6px;
    }
    
    .review-item p {
        font-size: 9px;
    }
    
    .content-image {
        float: none;
        width: 100%;
        height: 110px;
        margin-left: 0;
        margin-right: 0;
    }
    
    .content-image-right,
    .content-image-left {
        float: none;
        margin-left: 0;
        margin-right: 0;
    }
    
    .legal-links a {
        font-size: 9px;
    }
    
    .payment-icon {
        width: 40px;
        height: 26px;
        font-size: 7px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

