:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #ec4899;
    --background-dark: #1a1535;
    --background-darker: #0f0a20;
    --surface-color: #241d40;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #3a2f5c;
    --success-color: #10b981;
    --warning-color: #f59e0b;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-width: 320px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.header .container {
    padding: 0 16px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, #1a1535 0%, #241d40 100%);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 70px;
    padding: 0;
    width: 100%;
    justify-content: space-between;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    order: -1;
    text-decoration: none;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.language-selector span {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.language-selector svg {
    color: white;
    opacity: 0.7;
}

.btn-register {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
    text-decoration: none;
    flex-shrink: 0;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(6, 182, 212, 0.4);
}

.btn-login {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(99, 102, 241, 0.5);
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    flex-shrink: 0;
}

.btn-login:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.8);
    transform: translateY(-2px);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: var(--surface-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--border-color);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 1;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}

.hero-bonus-big {
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    color: #fbbf24;
    text-shadow: 0 4px 20px rgba(251, 191, 36, 0.5);
}

.hero-bonus-subtitle {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

.hero-bonus-highlight {
    color: #fbbf24;
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.text-highlight {
    color: #fbbf24;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-claim-bonus {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
    text-transform: uppercase;
    text-decoration: none;
}

.btn-claim-bonus:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(6, 182, 212, 0.6);
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(99, 102, 241, 0.4));
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: var(--background-darker);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Games Section */
.games {
    padding: 0 0 80px;
}

.games-menu-wrapper {
    background: var(--background-darker);
    padding: 20px 0;
    margin-bottom: 48px;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.games-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-nav-arrow {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-nav-arrow:hover {
    background: rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.5);
}

.games-menu-scroll {
    flex: 1;
    overflow: hidden;
}

.games-menu-items {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.games-menu-items::-webkit-scrollbar {
    display: none;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    min-width: 90px;
    text-decoration: none;
}

.menu-item:hover {
    background: rgba(99, 102, 241, 0.25);
    transform: translateY(-2px);
}

.menu-item.active {
    background: linear-gradient(135deg, #5b5fcf 0%, #6366f1 100%);
    border-color: #6366f1;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.menu-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.menu-text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.games-menu-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.menu-select {
    position: relative;
}

.menu-select::after {
    content: '▼';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
    font-size: 10px;
}

.provider-select {
    padding: 10px 40px 10px 16px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 10px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    appearance: none;
    min-width: 180px;
}

.provider-select:hover {
    background: rgba(99, 102, 241, 0.25);
}

.provider-select option {
    background: #1a1535;
    color: white;
}

.provider-select-btn {
    display: inline-block;
    padding: 10px 16px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 10px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 180px;
    text-align: center;
    text-decoration: none;
}

.provider-select-btn:hover {
    background: rgba(99, 102, 241, 0.25);
    transform: translateY(-2px);
}

.menu-search {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    padding: 10px 45px 10px 16px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 10px;
    color: white;
    font-size: 14px;
    width: 200px;
    transition: all 0.3s;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-input:focus {
    outline: none;
    background: rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.5);
}

.search-btn {
    position: absolute;
    right: 8px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.search-btn:hover {
    color: white;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.game-card {
    background: rgba(26, 21, 53, 0.6);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.5);
}

.new-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fbbf24;
    color: #000;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    z-index: 10;
}


.game-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.game-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-icon {
    font-size: 42px;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.btn-play,
.btn-play-large,
.btn-try {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    font-size: 14px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    text-decoration: none;
}

.btn-play-large {
    padding: 16px 48px;
    font-size: 16px;
}

.btn-play:hover,
.btn-play-large:hover,
.btn-try:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.5);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #1a1535;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    transition: all 0.3s;
    z-index: 5;
    text-decoration: none;
}

.video-play-btn:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.game-info {
    padding: 12px;
    background: rgba(15, 10, 32, 0.8);
}

.game-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.games-footer {
    text-align: center;
    margin-top: 32px;
}

.btn-show-more {
    display: inline-block;
    padding: 14px 48px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
    text-decoration: none;
}

.btn-show-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.6);
}

/* Bonuses Section */
.bonuses {
    padding: 80px 0;
    background: var(--background-darker);
}

.section-header-center {
    text-align: center;
    margin-bottom: 48px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    margin-top: 12px;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.bonus-card {
    background: var(--surface-color);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bonus-featured {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
    border: 2px solid var(--primary-color);
}

.bonus-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

.bonus-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.bonus-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 8px;
}

.bonus-subtitle {
    color: var(--text-secondary);
    font-size: 20px;
    margin-bottom: 16px;
}

.bonus-description {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.bonus-card button {
    width: 100%;
    margin-bottom: 24px;
}

.bonus-features {
    list-style: none;
    text-align: left;
}

.bonus-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
}

.bonus-features li:first-child {
    border-top: none;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-item {
    text-align: center;
    padding: 32px;
    background: var(--surface-color);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-description {
    color: var(--text-secondary);
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: var(--background-dark);
}

.content-block {
    margin-bottom: 64px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-primary);
    text-align: left;
    position: relative;
}

.content-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.content-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
    background: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.content-table th,
.content-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.content-table th {
    background: rgba(99, 102, 241, 0.1);
    color: var(--text-primary);
    font-weight: 600;
}

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

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

/* Review Block */
.review-block .content-text {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

.review-block .content-text p {
    margin-bottom: 20px;
}

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

.review-block .content-text h3 {
    color: var(--primary-light);
    font-size: 22px;
    margin: 32px 0 16px 0;
    font-weight: 600;
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.content-list li {
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-list li:last-child {
    border-bottom: none;
}

.list-icon {
    color: var(--primary-light);
    flex-shrink: 0;
}

/* Content Images */
.content-image {
    max-width: 450px;
    height: auto;
    border-radius: 16px;
    margin: 0 0 24px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.content-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(139, 92, 246, 0.2);
}

.content-image-right {
    float: right;
    margin: 0 0 24px 32px;
}

.content-image-left {
    float: left;
    margin: 0 32px 24px 0;
}

.content-text::after,
.review-block .content-text::after {
    content: "";
    display: table;
    clear: both;
}

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

.faq-item {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
}

.faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--primary-light);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-answer {
    padding: 0 24px 20px 68px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Reviews Block */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.review-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
    transform: translateY(-4px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-avatar svg {
    color: white;
    width: 20px;
    height: 20px;
}

.review-author h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.review-rating {
    display: flex;
    gap: 3px;
}

.review-rating .star {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
}

.review-text {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

/* Footer */
.footer {
    background: linear-gradient(180deg, #0f0a20 0%, #1a1535 100%);
    padding: 60px 0 32px;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 500px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo-image {
    height: 45px;
    width: auto;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6366f1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-contact-item:hover {
    color: #818cf8;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-light);
    flex-shrink: 0;
}

.contact-text {
    color: #6366f1;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.footer-badge {
    background: #6366f1;
    color: white;
    padding: 8px 16px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-badge-gcb {
    background: #10b981;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
}

.footer-badge-combo {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #8b5cf6;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
}

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

.footer-badge-luck {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: #a78bfa;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-apps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-badge {
    display: block;
    transition: transform 0.3s;
}

.app-badge:hover {
    transform: translateY(-2px);
}

.app-badge img {
    width: 140px;
    height: auto;
    border-radius: 8px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.footer-copyright {
    color: #64748b;
    font-size: 12px;
    line-height: 1.6;
    max-width: 100%;
}

/* Responsive */

/* Tablets and smaller desktops */
@media (max-width: 1280px) {
    .container {
        padding: 0 32px;
    }

    .games-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-banner-img {
        max-width: 450px;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .header {
        position: fixed;
        top: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-bonus-big {
        font-size: 42px;
    }

    .hero-bonus-subtitle {
        font-size: 26px;
    }

    .games-menu-actions {
        display: none;
    }

    .menu-nav-arrow {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

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

    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .game-card-featured .game-image {
        min-height: 100%;
    }

    .game-image {
        height: 180px;
    }


    .game-icon {
        font-size: 36px;
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-apps {
        flex-direction: row;
        justify-content: flex-start;
    }

    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .content-title {
        font-size: 28px;
    }

    .container {
        padding: 0 24px;
    }

    .header {
        height: auto;
        min-height: 80px;
        position: fixed;
        top: 0;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-banner-img {
        max-width: 400px;
    }

    .content-table {
        font-size: 14px;
    }

    .content-table th,
    .content-table td {
        padding: 12px;
    }
}

/* Small tablets and large phones */
@media (max-width: 768px) {
    .header {
        position: fixed;
        top: 0;
    }

    .container {
        padding: 0 20px;
    }

    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .hero {
        padding: 140px 0 60px;
    }

    .hero-bonus-big {
        font-size: 38px;
    }

    .hero-bonus-subtitle {
        font-size: 24px;
    }

    .hero-banner-img {
        max-width: 380px;
    }

    .games-menu {
        padding: 16px;
    }

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

    /* Таблицы становятся скроллируемыми */
    .content-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        font-size: 13px;
    }

    .content-table th,
    .content-table td {
        padding: 10px 8px;
        min-width: 120px;
    }

    .content-text {
        font-size: 15px;
    }

    .content-image {
        max-width: 350px;
    }

    .content-list li {
        font-size: 14px;
        padding: 10px 0;
    }
}

/* Medium mobile phones (Pixel, larger iPhones) */
@media (max-width: 430px) {
    .header {
        position: fixed;
        top: 0;
    }

    .header .container {
        padding: 0 12px;
    }

    .nav {
        gap: 5px;
    }

    .logo-image {
        height: 34px;
    }

    .language-selector {
        padding: 5px 7px;
    }

    .language-selector span {
        font-size: 10px;
    }

    .btn-register,
    .btn-login {
        padding: 7px 9px;
        font-size: 10px;
    }

    .nav-right {
        gap: 5px;
    }

    /* Скрываем меню игр на смартфонах */
    .games-menu-wrapper {
        display: none;
    }
}

/* Small mobile phones */
@media (max-width: 480px) {
    .header {
        position: fixed;
        top: 0;
    }

    .header .container {
        padding: 0 12px;
    }

    .nav {
        gap: 6px;
    }

    .logo-image {
        height: 34px;
    }

    .mobile-menu-toggle {
        padding: 4px;
        min-width: 32px;
    }

    .mobile-menu-toggle span {
        width: 20px;
    }

    .language-selector {
        padding: 5px 6px;
    }

    .language-selector span {
        font-size: 10px;
    }

    .language-selector svg {
        width: 8px;
        height: 8px;
    }

    .btn-register,
    .btn-login {
        padding: 7px 8px;
        font-size: 10px;
        white-space: nowrap;
        border-radius: 6px;
    }

    .nav-right {
        gap: 4px;
    }

    /* Скрываем меню игр на смартфонах */
    .games-menu-wrapper {
        display: none;
    }
}

/* Mobile phones */
@media (max-width: 640px) {
    .header {
        position: fixed;
        top: 0;
    }

    .header .container {
        padding: 0 14px;
    }

    .nav {
        gap: 6px;
    }

    .logo {
        flex-shrink: 1;
        min-width: 0;
    }

    .logo-image {
        height: 36px;
    }

    .language-selector {
        padding: 6px 8px;
    }

    .language-selector span {
        font-size: 11px;
    }

    .btn-register,
    .btn-login {
        padding: 8px 12px;
        font-size: 11px;
        white-space: nowrap;
    }

    .nav-right {
        gap: 6px;
    }

    .mobile-menu-toggle {
        padding: 6px;
        min-width: 36px;
    }

    /* Скрываем меню игр на смартфонах */
    .games-menu-wrapper {
        display: none;
    }

    .menu-nav-arrow {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .menu-item {
        padding: 10px 16px;
        min-width: 75px;
    }

    .menu-icon {
        width: 20px;
        height: 20px;
    }

    .menu-text {
        font-size: 11px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-bonus-big {
        font-size: 36px;
    }

    .hero-bonus-subtitle {
        font-size: 22px;
    }

    .hero-description {
        font-size: 14px;
    }

    .btn-claim-bonus {
        width: 100%;
        padding: 14px 28px;
        font-size: 13px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .hero-banner-img {
        max-width: 350px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .section-tabs {
        width: 100%;
        overflow-x: auto;
    }

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

    .game-image {
        height: 200px;
    }


    .game-icon {
        font-size: 32px;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .btn-show-more {
        width: 100%;
        max-width: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        grid-template-columns: 1fr;
    }

    .footer-badges {
        flex-wrap: wrap;
    }

    .footer-apps {
        flex-direction: column;
    }

    .app-badge img {
        width: 100%;
        max-width: 160px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-copyright {
        font-size: 11px;
    }

    .content-section {
        padding: 48px 0;
    }

    .content-block {
        margin-bottom: 48px;
    }

    .content-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .review-block .content-text {
        font-size: 15px;
    }

    .review-block .content-text h3 {
        font-size: 20px;
    }

    .content-list li {
        font-size: 15px;
    }

    .content-image {
        float: none !important;
        max-width: 100%;
        width: 100%;
        margin: 24px 0 !important;
        display: block;
    }

    .faq-question {
        padding: 16px;
        gap: 12px;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 16px 16px 52px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .review-card {
        padding: 14px;
    }

    .review-text {
        font-size: 12px;
    }

    .review-author h4 {
        font-size: 13px;
    }

    .container {
        padding: 0 16px;
    }

    .header {
        height: auto;
        min-height: 70px;
    }

    /* Таблицы на мобильных - вертикальный формат */
    .content-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        font-size: 12px;
    }

    .content-table thead {
        display: none; /* Скрываем заголовки таблицы */
    }

    .content-table tr {
        display: block;
        margin-bottom: 16px;
        background: var(--surface-color);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 12px;
    }

    .content-table td {
        display: block;
        text-align: left;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        min-width: auto;
        white-space: normal;
    }

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

    .content-table td:before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--primary-light);
        display: block;
        margin-bottom: 4px;
        font-size: 11px;
        text-transform: uppercase;
    }

    /* Адаптация для баннера */
    .hero-banner-img {
        max-width: 100%;
        height: auto;
    }

    /* Меню игр становится более компактным */
    .games-menu-items {
        gap: 8px;
    }

    .menu-item {
        min-width: 70px;
        padding: 8px 12px;
    }

    .games-footer {
        margin-top: 24px;
    }
}

/* iPhone 12 Pro and similar */
@media (max-width: 414px) {
    .header {
        position: fixed;
        top: 0;
    }

    .header .container {
        padding: 0 12px;
    }

    .nav {
        gap: 5px;
    }

    .logo-image {
        height: 34px;
    }

    .mobile-menu-toggle {
        padding: 5px;
    }

    .language-selector {
        padding: 5px 7px;
    }

    .language-selector span {
        font-size: 10px;
    }

    .btn-register,
    .btn-login {
        padding: 7px 10px;
        font-size: 10px;
    }

    .nav-right {
        gap: 5px;
    }

    /* Скрываем меню игр на смартфонах */
    .games-menu-wrapper {
        display: none;
    }
}

/* Very small phones */
@media (max-width: 375px) {
    .header {
        position: fixed;
        top: 0;
    }

    .header .container {
        padding: 0 10px;
    }

    .nav {
        gap: 4px;
    }

    .language-selector {
        display: none;
    }

    .nav-right {
        gap: 4px;
    }

    .btn-register,
    .btn-login {
        padding: 6px 8px;
        font-size: 10px;
        border-radius: 6px;
    }

    .logo-image {
        height: 32px;
    }

    .mobile-menu-toggle {
        padding: 4px;
        min-width: 30px;
    }

    .mobile-menu-toggle span {
        width: 18px;
    }

    .hero-bonus-big {
        font-size: 32px;
    }

    .hero-bonus-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 13px;
    }

    .btn-claim-bonus {
        padding: 12px 24px;
        font-size: 12px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .game-image {
        height: 180px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .content-title {
        font-size: 22px;
    }

    .content-table {
        font-size: 11px;
    }

    .faq-question {
        padding: 12px;
    }

    .faq-question h3 {
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 12px 12px 40px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    /* Скрываем меню игр на смартфонах */
    .games-menu-wrapper {
        display: none;
    }
}

/* Extra small phones (iPhone SE, Galaxy Fold) */
@media (max-width: 320px) {
    .header {
        position: fixed;
        top: 0;
    }

    .header .container {
        padding: 0 8px;
    }

    .nav {
        gap: 3px;
    }

    .logo-image {
        height: 30px;
    }

    .mobile-menu-toggle {
        padding: 3px;
        min-width: 28px;
    }

    .mobile-menu-toggle span {
        width: 16px;
        height: 2px;
    }

    .language-selector {
        display: none;
    }

    .btn-register,
    .btn-login {
        padding: 6px 6px;
        font-size: 9px;
        border-radius: 5px;
    }

    .nav-right {
        gap: 3px;
    }

    /* Скрываем меню игр на смартфонах */
    .games-menu-wrapper {
        display: none;
    }
}

