/* Base Styles */
:root {
    --primary-color: #ff9800;
    --secondary-color: #f44336;
    --accent-color: #4caf50;
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --dark-surface: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #333333;
    --shadow-color: rgba(0, 0, 0, 0.5);
    --header-height: 80px;
    --footer-height: 250px;
    --tiger-orange: #ff7b00;
    --tiger-dark: #2d1b00;
    --heading-font: 'Kanit', sans-serif;
    --body-font: 'Prompt', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Prevent scrolling when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    font-family: var(--heading-font);
    letter-spacing: 0.5px;
}

h1 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--text-primary), var(--tiger-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: none;
}

h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--tiger-orange);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--tiger-orange);
}

strong {
    color: var(--tiger-orange);
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px var(--shadow-color);
}

section {
    padding: 80px 0;
    position: relative;
}

section:nth-child(odd) {
    background-color: var(--darker-bg);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow-color);
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    position: relative;
    padding: 5px 15px;
    border-radius: 4px;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 123, 0, 0.1), transparent);
    z-index: -1;
    border-radius: 4px;
}

.logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    z-index: -1;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-primary);
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    font-family: 'Kanit', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-text::before {
    content: '101';
    position: absolute;
    top: 2px;
    left: 2px;
    color: rgba(255, 123, 0, 0.3);
    z-index: -1;
    filter: blur(2px);
}

.logo-highlight {
    color: var(--tiger-orange);
    font-style: italic;
    position: relative;
}

.logo-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--tiger-orange), transparent);
}

.logo-highlight::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 10px;
    height: 10px;
    background-color: var(--tiger-orange);
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(2px);
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0.2;
    }
}

.logo-icon {
    margin-left: 5px;
    color: var(--tiger-orange);
    transform: rotate(15deg);
    display: inline-block;
    animation: pawPulse 2s infinite alternate;
}

@keyframes pawPulse {
    0% {
        transform: rotate(15deg) scale(1);
    }
    100% {
        transform: rotate(15deg) scale(1.2);
    }
}

/* Footer Logo Styles */
.footer-logo {
    position: relative;
}

.footer-logo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: radial-gradient(circle at center, rgba(255, 123, 0, 0.1), transparent 70%);
    z-index: -1;
    border-radius: 8px;
}

.footer-logo h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.footer-logo .logo-text {
    font-size: 2.5rem;
}

.footer-logo .logo-icon {
    font-size: 0.8em;
}

.footer-logo p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 300px;
    position: relative;
    padding-left: 10px;
    border-left: 3px solid var(--tiger-orange);
}

/* Navigation Styles */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    font-family: var(--heading-font);
}

nav ul li a:hover {
    color: var(--tiger-orange);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--tiger-orange);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a.active {
    color: var(--tiger-orange);
}

nav ul li a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 4px;
}

.mobile-menu-toggle:hover {
    color: var(--tiger-orange);
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-menu-toggle i {
    transition: transform 0.3s ease;
}

.mobile-menu-toggle.active i {
    transform: rotate(90deg);
    color: var(--tiger-orange);
}

/* Hero Section */
.hero-section {
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 80px;
    background: linear-gradient(to bottom, var(--darker-bg), var(--dark-bg));
}

.hero-section .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.hero-content h2::after {
    left: 0;
    transform: none;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.primary-btn {
    background-color: var(--primary-color);
    color: #000;
}

.primary-btn:hover {
    background-color: #ffb74d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 152, 0, 0.3);
}

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

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 152, 0, 0.3);
}

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

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.03);
}

/* About Section */
.about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.about-additional {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--dark-surface);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.about-additional p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.about-additional strong {
    color: var(--primary-color);
    font-weight: 700;
}

.about-additional p:last-child {
    margin-bottom: 0;
}

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

.feature {
    background-color: var(--dark-surface);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Games Section */
.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.game-category {
    background-color: var(--dark-surface);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.game-category:hover {
    transform: translateY(-10px);
    background-color: var(--primary-color);
}

.game-category:hover i,
.game-category:hover h3,
.game-category:hover p {
    color: #000;
}

.game-category i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.game-category h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.game-category p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.games-image {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.games-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

/* Promotion Section */
.promotions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.promotion-card {
    background-color: var(--dark-surface);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-color);
    border-left: 4px solid var(--primary-color);
}

.promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.promotion-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.promotion-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.promotion-card p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-method {
    background-color: var(--dark-surface);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.contact-method:hover {
    transform: translateY(-10px);
}

.contact-method i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-method h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-method p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 60px 0 20px;
    position: relative;
    margin-bottom: 70px; /* Space for sticky buttons */
}

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

.footer-logo h2 {
    text-align: left;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-logo h2::after {
    display: none;
}

.footer-logo p {
    color: var(--text-secondary);
}

.footer-links h3,
.footer-payment h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

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

.footer-links ul li a {
    color: var(--text-secondary);
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

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

.payment-icons i {
    font-size: 1.8rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: var(--darker-bg);
    padding: 15px 20px;
    box-shadow: 0 -2px 10px var(--shadow-color);
    z-index: 999;
}

.sticky-btn {
    flex: 1;
    padding: 12px 10px;
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin: 0 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.login-btn {
    background-color: var(--dark-surface);
    color: var(--text-primary);
    border: 1px solid var(--primary-color);
}

.login-btn:hover {
    background-color: var(--primary-color);
    color: #000;
}

.register-btn {
    background-color: var(--primary-color);
    color: #000;
}

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

.free-credit-btn {
    background-color: var(--accent-color);
    color: #000;
}

.free-credit-btn:hover {
    background-color: #66bb6a;
    transform: translateY(-3px);
}

/* Login Section */
.login-section {
    background-color: var(--dark-bg);
}

.login-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.login-text {
    flex: 1;
}

.login-image {
    flex: 1;
}

.login-text p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.login-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.registration-steps {
    margin: 20px 0 20px 20px;
    padding-left: 20px;
}

.registration-steps li {
    margin-bottom: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    padding-left: 10px;
}

.registration-steps li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

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

.login-feature {
    background-color: var(--dark-surface);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.login-feature:hover {
    transform: translateY(-10px);
}

.login-feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.login-feature h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.login-feature p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.login-feature strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Commission Section */
.commission-section {
    background-color: var(--darker-bg);
}

.commission-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.commission-text {
    flex: 1;
}

.commission-image {
    flex: 1;
}

.commission-text p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.commission-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.commission-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.commission-benefit {
    background-color: var(--dark-surface);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-color);
    border-top: 4px solid var(--primary-color);
}

.commission-benefit:hover {
    transform: translateY(-10px);
}

.commission-benefit i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.commission-benefit h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.commission-benefit p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.commission-benefit strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Games Section - New Unique Layout */
.games-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(255, 152, 0, 0.05) 0%, transparent 60%);
    z-index: 0;
}

.games-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.games-intro p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.games-intro strong {
    color: var(--primary-color);
    font-weight: 700;
}

.games-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.game-feature-card {
    display: flex;
    background-color: var(--dark-surface);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease;
}

.game-feature-card:hover {
    transform: translateX(10px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    background-color: var(--primary-color);
    padding: 20px;
}

.feature-icon i {
    font-size: 2.5rem;
    color: #000;
}

.feature-content {
    padding: 20px 30px;
    flex: 1;
}

.feature-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.game-providers {
    margin-bottom: 50px;
}

.game-providers h3 {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.game-providers h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 1.5px;
}

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

.provider-card {
    background-color: var(--dark-surface);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.provider-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.provider-card:hover::before {
    opacity: 0.1;
}

.provider-card:hover {
    transform: translateY(-10px);
}

.provider-logo {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 152, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.provider-logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.provider-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.provider-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.games-cta {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: var(--dark-surface);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

.games-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.cta-content {
    flex: 1;
}

.cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.cta-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.cta-content .btn {
    margin-top: 20px;
}

.cta-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-image img {
    max-width: 100%;
    border-radius: 10px;
    transform: rotate(2deg);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px var(--shadow-color);
}

.cta-image img:hover {
    transform: rotate(0deg) scale(1.05);
}

/* Why Choose Section - Unique Layout */
.why-choose-section {
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.why-choose-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.why-choose-intro p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

.why-choose-intro strong {
    color: var(--primary-color);
    font-weight: 700;
}

.reasons-container {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.reasons-content {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reason-card {
    display: flex;
    background-color: var(--dark-surface);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-color);
}

.reason-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 20px;
}

.reason-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.reason-text {
    padding: 20px;
    flex: 1;
}

.reason-text h3 {
    margin-bottom: 10px;
    color: var(--text-primary);
    font-size: 1.3rem;
}

.reason-text p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.reason-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.reasons-image {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: scale(1.03);
}

.image-container img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px 20px;
    text-align: center;
}

.image-overlay span {
    display: inline-block;
    background-color: var(--primary-color);
    color: #000;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.additional-reasons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.additional-reason {
    background-color: var(--dark-surface);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

.additional-reason::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.additional-reason:hover {
    transform: translateY(-10px);
}

.additional-reason i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.additional-reason h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.additional-reason p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.additional-reason strong {
    color: var(--primary-color);
    font-weight: 700;
}

.why-choose-conclusion {
    background-color: var(--dark-surface);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px var(--shadow-color);
    max-width: 900px;
    margin: 0 auto;
}

.why-choose-conclusion::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 5px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    border-radius: 5px;
}

.why-choose-conclusion p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.why-choose-conclusion strong {
    color: var(--primary-color);
    font-weight: 700;
}

.conclusion-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .features,
    .games-grid,
    .login-features,
    .commission-benefits,
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-cta {
        flex-direction: column;
        padding: 30px;
    }
    
    .cta-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .reasons-container {
        flex-direction: column;
    }
    
    .reasons-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .additional-reasons {
        grid-template-columns: 1fr;
    }
    
    .conclusion-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 1100px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 300px;
        max-width: 80%;
        height: calc(100vh - var(--header-height));
        background-color: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        box-shadow: 2px 0 10px var(--shadow-color);
        z-index: 999;
        overflow-y: auto;
        border-right: 1px solid var(--border-color);
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav ul li {
        margin: 15px 0;
        width: 100%;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
        transition-delay: calc(0.05s * var(--item-index, 0));
    }
    
    nav.active ul li {
        opacity: 1;
        transform: translateX(0);
    }
    
    nav ul li a {
        display: block;
        padding: 10px 15px;
        font-size: 1.1rem;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    nav ul li a:hover {
        background-color: rgba(255, 255, 255, 0.05);
        padding-left: 20px;
    }
    
    /* Add overlay when menu is active */
    .menu-overlay {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 768px) {
    .logo {
        padding: 3px 10px;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    .logo-icon {
        font-size: 0.8em;
    }
    
    .footer-logo .logo-text {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero-section .container,
    .about-content,
    .login-content,
    .commission-content {
        flex-direction: column;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 30px;
    }
    
    .about-image {
        margin-top: 30px;
        order: 1;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-additional {
        padding: 20px;
    }
    
    .promotions {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sticky-btn {
        font-size: 0.9rem;
        padding: 10px 5px;
    }
    
    .login-image {
        order: 1;
        margin-bottom: 30px;
    }
    
    .login-text {
        order: 2;
    }
    
    .login-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .commission-image {
        order: 1;
        margin-bottom: 30px;
    }
    
    .commission-text {
        order: 2;
    }
    
    .commission-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .game-feature-card {
        flex-direction: column;
    }
    
    .feature-icon {
        min-width: auto;
        padding: 30px;
    }
    
    .providers-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-conclusion {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding-top: calc(var(--header-height) + 60px);
    }
    
    .features,
    .games-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .sticky-btn {
        font-size: 0.8rem;
        padding: 10px 5px;
    }
    
    .games-cta {
        padding: 20px;
    }
    
    .why-choose-conclusion {
        padding: 20px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-icon {
        font-size: 0.7em;
    }
    
    .footer-logo .logo-text {
        font-size: 1.8rem;
    }
}
