/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    --bg-primary: #1a0f0a;
    --bg-secondary: #2a1810;
    --bg-tertiary: #3a2418;
    --accent-gold: #ffb347;
    --accent-orange: #ff9500;
    --accent-red: #ff4757;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --border-color: #442b1f;
    --card-bg: #241610;
    --hover-bg: #3a2418;
    --success: #26de81;
    --shadow: rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

/* ===================================
   Header Styles
   =================================== */
.header {
    background: rgba(26, 15, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px var(--shadow);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 800;
    font-size: 28px;
}

.logo-text {
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(255, 179, 71, 0.5);
    letter-spacing: 2px;
}

.logo-casino {
    color: var(--text-primary);
    font-size: 18px;
    letter-spacing: 3px;
}

.main-nav {
    flex: 1;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-gold);
    background: var(--hover-bg);
    transform: translateY(-2px);
}

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

.search-box {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.search-input {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 10px 20px;
    color: var(--text-primary);
    font-size: 14px;
    width: 200px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    width: 250px;
    box-shadow: 0 0 15px rgba(255, 179, 71, 0.3);
}

.search-input::placeholder {
    color: var(--text-muted);
}

/* ===================================
   Button Styles with Animations
   =================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-login {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-login:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    box-shadow: 0 5px 20px rgba(255, 179, 71, 0.4);
    transform: translateY(-2px);
}

/* Join Now Button - Extra Prominent with Animation */
.btn-signup {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
    color: var(--bg-primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 25px rgba(255, 149, 0, 0.5);
    animation: pulse 2s infinite;
}

.btn-signup:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 35px rgba(255, 149, 0, 0.7);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(255, 149, 0, 0.5);
    }
    50% {
        box-shadow: 0 5px 35px rgba(255, 179, 71, 0.8);
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
    color: var(--bg-primary);
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(255, 149, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 149, 0, 0.6);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

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

.btn-block {
    width: 100%;
}

.btn-load-more {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    padding: 14px 50px;
    border: 2px solid var(--border-color);
}

.btn-load-more:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* ===================================
   Mobile Menu
   =================================== */
.mobile-menu-toggle {
    display: none;
    background: var(--bg-tertiary);
    color: var(--accent-gold);
    font-size: 24px;
    padding: 10px 15px;
    border-radius: 8px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-primary);
    box-shadow: -5px 0 20px var(--shadow);
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid var(--border-color);
}

.mobile-menu-close {
    background: transparent;
    color: var(--text-primary);
    font-size: 28px;
    padding: 5px 10px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-nav-link {
    padding: 15px;
    color: var(--text-secondary);
    font-size: 16px;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: var(--hover-bg);
    color: var(--accent-gold);
}

.mobile-menu-actions {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ===================================
   Sidebar
   =================================== */
.sidebar {
    position: fixed;
    left: 0;
    top: 80px;
    width: 220px;
    height: calc(100vh - 80px);
    background: rgba(26, 15, 10, 0.95);
    backdrop-filter: blur(10px);
    border-right: 2px solid var(--border-color);
    overflow-y: auto;
    z-index: 900;
    padding: 20px 0;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar-item:hover {
    background: var(--hover-bg);
    color: var(--accent-gold);
    border-left: 4px solid var(--accent-gold);
}

.sidebar-item.active {
    background: var(--hover-bg);
    color: var(--accent-gold);
    border-left: 4px solid var(--accent-gold);
}

/* ===================================
   Main Content
   =================================== */
.main-content {
    margin-left: 220px;
    margin-top: 20px;
    padding-bottom: 50px;
}

/* Promo Banners */
.promo-banners {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.promo-banner {
    position: relative;
    height: 230px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.promo-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 179, 71, 0.3);
}

.promo-banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
}

.promo-banner:hover .promo-banner-bg {
    transform: scale(1.05);
}

.promo-banner-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-badge {
    background: rgba(26, 15, 10, 0.8);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
    width: fit-content;
}

.promo-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 5px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.promo-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.promo-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
    color: var(--bg-primary);
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    text-transform: capitalize;
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.4);
}

.promo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.6);
}

/* Content Sections */
.content-section {
    margin-bottom: 50px;
    padding: 40px 30px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
}

.main-title {
    font-size: 42px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    text-align: center;
}

.content-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.content-text h3 {
    font-size: 22px;
    color: var(--accent-gold);
    margin: 30px 0 15px 0;
    font-weight: 600;
}

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

.values-list,
.signup-steps {
    margin: 20px 0;
    padding-left: 25px;
}

.values-list li,
.signup-steps li {
    margin-bottom: 12px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.signup-steps {
    list-style-type: decimal;
}

.values-list {
    list-style-type: disc;
}

/* Games Section */
.games-section {
    margin-bottom: 50px;
}

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

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-gold);
}

.section-filters {
    display: flex;
    gap: 10px;
}

.filter-btn {
    display: inline-block;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.game-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(255, 179, 71, 0.3);
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image {
    transform: scale(1.1);
}

.game-info {
    padding: 15px;
}

.game-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

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

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

.play-button {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
    color: var(--bg-primary);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
}

.load-more {
    text-align: center;
    margin-top: 40px;
}

/* Providers Section */
.providers-section {
    margin-bottom: 50px;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.provider-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 120px;
}

.provider-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 179, 71, 0.2);
}

.provider-card img {
    max-width: 100%;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.provider-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

/* FAQ Section */
.faq-section {
    margin-bottom: 50px;
}

.faq-container {
    margin-top: 30px;
}

.faq-item {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-gold);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
}

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

.faq-toggle {
    font-size: 28px;
    color: var(--accent-gold);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 2px solid var(--border-color);
    padding: 50px 0 30px 0;
    margin-left: 220px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

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

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

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

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

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

.payment-icon {
    width: 50px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 14px;
}

/* ===================================
   Responsive Design
   =================================== */

/* Touch-friendly: увеличенные области нажатия */
@media (hover: none) and (pointer: coarse) {
    .game-card .game-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    }

    .game-card .play-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .nav-link,
    .sidebar-item,
    .filter-btn {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .faq-question {
        min-height: 60px;
    }
}

@media (max-width: 1024px) {
    .sidebar {
        display: none;
    }

    .main-content,
    .footer {
        margin-left: 0;
    }

    .promo-banners {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .promo-banner {
        height: 200px;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .search-box {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .btn-login {
        display: none;
    }

    .header-actions {
        gap: 10px;
    }

    .btn-signup {
        padding: 10px 18px;
        font-size: 13px;
    }

    .promo-banners {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 25px;
    }

    .promo-banner {
        height: 180px;
    }

    .promo-banner-content {
        padding: 20px;
    }

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

    .promo-subtitle {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .promo-badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 10px;
    }

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

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

    .game-card {
        border-radius: 12px;
    }

    .game-image {
        height: 130px;
    }

    .game-info {
        padding: 10px;
    }

    .game-title {
        font-size: 13px;
    }

    .game-provider {
        font-size: 11px;
    }

    .game-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
        align-items: flex-end;
        padding-bottom: 60px;
    }

    .play-button {
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 15px;
    }

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

    .provider-card {
        padding: 15px 10px;
        min-height: 90px;
        border-radius: 12px;
    }

    .provider-card img {
        height: 30px;
    }

    .provider-name {
        font-size: 12px;
    }

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

    .footer {
        padding: 35px 0 25px 0;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .content-section {
        padding: 25px 18px;
        margin-bottom: 20px;
        border-radius: 12px;
    }

    .main-title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .content-text h2 {
        font-size: 22px;
    }

    .content-text h3 {
        font-size: 18px;
    }

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

    .faq-section {
        margin-bottom: 30px;
    }

    .faq-item {
        border-radius: 12px;
        margin-bottom: 10px;
    }

    .faq-question {
        padding: 16px 18px;
    }

    .faq-question h3 {
        font-size: 15px;
        line-height: 1.4;
        padding-right: 10px;
    }

    .faq-toggle {
        font-size: 24px;
        flex-shrink: 0;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 16px 18px;
    }

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

    .section-filters {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
    }

    .section-filters::-webkit-scrollbar {
        display: none;
    }

    .load-more {
        margin-top: 25px;
    }

    .btn-load-more {
        width: 100%;
        padding: 14px 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .header-content {
        padding: 10px 0;
    }

    .logo {
        font-size: 20px;
    }

    .logo-text {
        letter-spacing: 1px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .btn-signup {
        padding: 10px 16px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }

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

    .game-image {
        height: 120px;
    }

    .game-info {
        padding: 8px;
    }

    .game-title {
        font-size: 12px;
    }

    .game-provider {
        font-size: 10px;
    }

    .promo-banner {
        height: 150px;
        border-radius: 15px;
    }

    .promo-banner-content {
        padding: 15px;
    }

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

    .promo-subtitle {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .promo-badge {
        font-size: 9px;
        padding: 5px 10px;
    }

    .promo-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 20px;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 12px;
        white-space: nowrap;
    }

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

    .provider-card {
        padding: 12px 8px;
        min-height: 80px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    .payment-methods {
        justify-content: center;
    }

    .main-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .content-section {
        padding: 20px 15px;
    }

    .content-text h2 {
        font-size: 20px;
    }

    .content-text h3 {
        font-size: 17px;
    }

    .content-text p,
    .values-list li,
    .signup-steps li {
        font-size: 14px;
    }

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

    .mobile-menu {
        width: 85%;
        max-width: 300px;
    }

    .mobile-nav-link {
        padding: 14px;
        font-size: 15px;
    }
}

/* Очень маленькие экраны (iPhone SE, и т.д.) */
@media (max-width: 360px) {
    .logo {
        font-size: 18px;
    }

    .btn-signup {
        padding: 8px 12px;
        font-size: 11px;
    }

    .promo-title {
        font-size: 20px;
    }

    .promo-subtitle {
        font-size: 12px;
    }

    .games-grid {
        gap: 6px;
    }

    .game-image {
        height: 100px;
    }

    .main-title {
        font-size: 20px;
    }

    .section-title {
        font-size: 18px;
    }
}

/* ===================================
   Scrollbar Styling
   =================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* ===================================
   Loading Animation
   =================================== */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    background: linear-gradient(90deg, var(--card-bg) 0%, var(--hover-bg) 50%, var(--card-bg) 100%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}
