/* Base Styles and Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    color: var(--accent-secondary);
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    background: none;
    outline: none;
}

button {
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Container */
.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Section Styles */
section {
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 10px var(--shadow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.desktop-nav {
    display: none;
}

.desktop-nav ul {
    display: flex;
    gap: 1.5rem;
}

.desktop-nav a {
    color: var(--text-primary);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-primary);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-btn {
    padding: 0.5rem 1rem;
    background-color: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--text-primary);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background-color: rgba(255, 102, 0, 0.1);
}

.register-btn {
    padding: 0.5rem 1rem;
    background-color: var(--accent-primary);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: none;
}

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

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transition: background-color 0.3s ease;
}

.theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

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

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--bg-secondary);
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    padding: 5rem 1.5rem 1.5rem;
    overflow-y: auto;
}

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

.mobile-menu nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu a {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    padding: 0.5rem 0;
}

.mobile-buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-buttons .login-btn,
.mobile-buttons .register-btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url('https://vsesvit-ai.ams3.cdn.digitaloceanspaces.com/files/6/8/6/686f5838cd854951116836.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--accent-primary);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-primary);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-secondary);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.7);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 102, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
    }
}

.recent-winners {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.winner-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.winner-name {
    font-weight: 600;
}

.winner-amount {
    color: var(--accent-primary);
    font-weight: 700;
}

.hero-image {
    display: none;
}

.falling-coins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Games Section */
.games-section {
    background-color: var(--bg-secondary);
    padding: 4rem 0;
}

.games-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--accent-primary);
    color: white;
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.game-card {
    background-color: var(--bg-primary);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

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

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.game-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.game-provider {
    font-size: 0.8rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.play-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--accent-primary);
    color: white;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.games-description {
    max-width: 800px;
    margin: 0 auto;
}

.games-description h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Payments Section */
.payments-section {
    background-color: var(--bg-primary);
    padding: 4rem 0;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.payment-category {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.payment-category h3 {
    margin-bottom: 1rem;
    text-align: center;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.payment-icon svg {
    width: 48px;
    height: 48px;
}

.payment-icon span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.payment-category p {
    text-align: center;
    color: var(--accent-primary);
    font-weight: 600;
}

.payment-process {
    margin-bottom: 3rem;
}

.payment-process h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    padding: 1rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--accent-primary);
    color: white;
    font-weight: 700;
    border-radius: 50%;
}

.step-content h4 {
    margin-bottom: 0.25rem;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.progress-bar {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 75%;
    background-color: var(--accent-primary);
    border-radius: 4px;
    animation: progress 2s ease-in-out;
}

@keyframes progress {
    from { width: 0; }
    to { width: 75%; }
}

.payment-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-block {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-block h3 {
    margin-bottom: 1rem;
    text-align: center;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.payment-table th,
.payment-table td {
    padding: 0.75rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.payment-table th {
    background-color: rgba(255, 102, 0, 0.1);
    color: var(--accent-primary);
    font-weight: 600;
}

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

.security-block {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(76, 175, 80, 0.1);
    padding: 0.75rem;
    border-radius: 4px;
    margin-top: 1rem;
}

.security-badge svg {
    width: 32px;
    height: 32px;
}

.security-badge span {
    font-weight: 600;
    color: #4CAF50;
}

.testimonials {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--bg-primary);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.testimonial-item:last-child {
    margin-bottom: 0;
}

.testimonial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--accent-primary);
    color: white;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonial-content {
    flex-grow: 1;
}

.testimonial-content p {
    margin-bottom: 0.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-primary);
}

/* Security Section */
.security-section {
    background-color: var(--bg-secondary);
    padding: 4rem 0;
}

.security-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.security-card {
    background-color: var(--bg-primary);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.2);
}

.card-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.security-card h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.security-card p {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-details {
    display: none;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.card-details p {
    text-align: left;
    font-size: 0.9rem;
}

.details-toggle {
    display: block;
    width: 100%;
    padding: 0.5rem;
    background-color: rgba(255, 102, 0, 0.1);
    color: var(--accent-primary);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.details-toggle:hover {
    background-color: rgba(255, 102, 0, 0.2);
}

.license-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.badge {
    transition: transform 0.3s ease;
}

.badge:hover {
    transform: scale(1.1);
}

.company-timeline {
    margin-bottom: 3rem;
}

.company-timeline h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background-color: var(--accent-primary);
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--accent-primary);
    color: white;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 1;
}

.timeline-content {
    background-color: var(--bg-primary);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    color: var(--accent-primary);
}

.timeline-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.security-info {
    max-width: 800px;
    margin: 0 auto;
}

.security-info h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Loyalty Section */
.loyalty-section {
    background-color: var(--bg-primary);
    padding: 4rem 0;
}

.loyalty-levels {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.level-card {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.2);
}

.level-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.level-card h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.level-benefits {
    margin-bottom: 1rem;
}

.level-benefits ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.level-benefits li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.level-points {
    text-align: center;
    font-weight: 600;
    color: var(--accent-primary);
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.loyalty-calculator {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.loyalty-calculator h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.calculator-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    background-color: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 4px;
}

.calculate-btn {
    padding: 0.75rem;
    background-color: var(--accent-primary);
    color: white;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.calculator-result {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background-color: var(--bg-primary);
    border-radius: 4px;
}

.result-label {
    font-weight: 600;
}

.result-value {
    color: var(--accent-primary);
    font-weight: 700;
}

.level-progress {
    background-color: var(--bg-primary);
    border-radius: 4px;
    padding: 1rem;
}

.progress-label {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.progress-bar {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-stats {
    text-align: right;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.rewards-carousel {
    margin-bottom: 3rem;
}

.rewards-carousel h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 0 2rem;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s ease;
}

.carousel-item {
    flex: 0 0 100%;
    max-width: 100%;
}

.reward-card {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.reward-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.reward-card h4 {
    margin-bottom: 0.5rem;
}

.reward-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: var(--accent-primary);
    color: white;
}

.loyalty-info {
    max-width: 800px;
    margin: 0 auto;
}

.loyalty-info h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.cta-block {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-block h4 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

/* Support Section */
.support-section {
    background-color: var(--bg-secondary);
    padding: 4rem 0;
}

.support-channels {
    margin-bottom: 3rem;
}

.support-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--bg-primary);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background-color: var(--accent-primary);
    color: white;
}

.tab-content {
    display: none;
    background-color: var(--bg-primary);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tab-content.active {
    display: block;
}

.chat-widget {
    border-radius: 8px;
    overflow: hidden;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: var(--accent-primary);
    color: white;
}

.operator-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.operator-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.operator-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.operator-name {
    font-weight: 600;
}

.operator-status {
    font-size: 0.8rem;
    opacity: 0.8;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.chat-messages {
    height: 300px;
    padding: 1rem;
    overflow-y: auto;
    background-color: var(--bg-secondary);
}

.message {
    margin-bottom: 1rem;
    max-width: 80%;
}

.message.operator {
    margin-right: auto;
}

.message.user {
    margin-left: auto;
}

.message-content {
    padding: 0.75rem;
    border-radius: 8px;
    background-color: var(--accent-primary);
    color: white;
}

.message.user .message-content {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.message-time {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
    text-align: right;
}

.chat-input {
    display: flex;
    padding: 1rem;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.chat-input input {
    flex-grow: 1;
    padding: 0.75rem;
    background-color: var(--bg-secondary);
    border-radius: 4px;
    margin-right: 0.5rem;
}

.send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--accent-primary);
    color: white;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.email-form {
    max-width: 600px;
    margin: 0 auto;
}

.email-form .response-time {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.telegram-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.telegram-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.telegram-info h3 {
    margin-bottom: 1rem;
}

.telegram-info p {
    margin-bottom: 1.5rem;
}

.telegram-info .response-time {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.telegram-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #0088CC;
    color: white;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.telegram-btn:hover {
    background-color: #0077B5;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

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

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem;
    background-color: var(--bg-secondary);
    font-weight: 600;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: rgba(255, 102, 0, 0.1);
}

.accordion-header svg {
    transition: transform 0.3s ease;
}

.accordion-header.active svg {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 1rem;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.accordion-content.active {
    display: block;
}

.accordion-content p {
    margin-bottom: 1rem;
}

.accordion-content ol,
.accordion-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.accordion-content ol {
    list-style: decimal;
}

.accordion-content ul {
    list-style: disc;
}

.accordion-content li {
    margin-bottom: 0.5rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto 3rem;
    background-color: var(--bg-primary);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: var(--accent-primary);
    color: white;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.responsible-gaming {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-primary);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.responsible-gaming h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.responsible-gaming ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.responsible-gaming li {
    margin-bottom: 0.5rem;
}

/* Winners Section */
.winners-section {
    background-color: var(--bg-primary);
    padding: 4rem 0;
}

.stats-counters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.counter-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.counter-label {
    color: var(--text-secondary);
}

.live-winners {
    max-width: 800px;
    margin: 0 auto 3rem;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.live-winners h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.winners-feed {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.winner-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0.5rem;
    padding: 0.75rem;
    background-color: var(--bg-primary);
    border-radius: 4px;
    font-size: 0.9rem;
}

.winner-game {
    font-weight: 600;
}

.winner-amount {
    color: var(--accent-primary);
    font-weight: 700;
}

.winner-time {
    color: var(--text-secondary);
    text-align: right;
}

.testimonials {
    margin-bottom: 3rem;
}

.testimonials h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonial-card {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    font-size: 1.1rem;
}

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

.testimonial-content {
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
}

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

.testimonial-game span {
    font-weight: 600;
}

.limited-offer {
    background: linear-gradient(to right, rgba(255, 102, 0, 0.8), rgba(255, 153, 0, 0.8));
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.3);
}

.offer-content {
    text-align: center;
    color: white;
}

.offer-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.offer-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.offer-timer {
    margin-bottom: 1.5rem;
}

.timer-label {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.timer-item {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0.75rem;
    border-radius: 4px;
    min-width: 70px;
}

.timer-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.timer-unit {
    font-size: 0.8rem;
    opacity: 0.8;
}

.timer-separator {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.2);
}

.benefit-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.final-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Footer Styles */
footer {
    background-color: var(--bg-secondary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.footer-logo img {
    height: 60px;
    width: auto;
    margin: 0 auto 1rem;
}

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

.footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-primary);
}

.footer-middle {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.payment-methods h3,
.social-media h3,
.newsletter h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.payment-icons,
.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-icon {
    transition: transform 0.3s ease;
}

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

.newsletter p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-form input {
    padding: 0.75rem;
    background-color: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 4px;
}

.newsletter-form button {
    padding: 0.75rem;
    background-color: var(--accent-primary);
    color: white;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--accent-secondary);
}

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

.license-info {
    margin-bottom: 2rem;
}

.license-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.legal-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.disclaimer {
    margin-bottom: 1.5rem;
}

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

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--bg-primary);
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.modal-header h2 {
    margin-bottom: 0;
    text-align: left;
}

.close-modal {
    font-size: 2rem;
    line-height: 1;
    color: var(--text-secondary);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--accent-primary);
}

.modal-body {
    padding: 1.5rem;
    max-height: 70vh;
    overflow-y: auto;
}

/* Falling Coins Animation */
@keyframes falling {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.coin {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    animation: falling linear infinite;
}

/* Media Queries */
@media (min-width: 576px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .process-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .carousel-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 768px) {
    .header-container {
        padding: 1rem 2rem;
    }
    
    .desktop-nav {
        display: block;
    }
    
    .register-btn {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 2rem;
    }
    
    .hero-content {
        text-align: left;
        max-width: 50%;
    }
    
    .hero-stats {
        justify-content: flex-start;
    }
    
    .hero-image {
        display: block;
        max-width: 45%;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .security-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        left: 50%;
    }
    
    .timeline-item {
        padding-left: 0;
        width: 50%;
    }
    
    .timeline-item:nth-child(odd) {
        margin-left: auto;
        padding-left: 2rem;
    }
    
    .timeline-item:nth-child(even) {
        margin-right: auto;
        padding-right: 2rem;
        text-align: right;
    }
    
    .timeline-date {
        left: -20px;
    }
    
    .timeline-item:nth-child(even) .timeline-date {
        left: auto;
        right: -20px;
    }
    
    .calculator-form {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .carousel-item {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-middle {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-form {
        flex-direction: row;
    }
    
    .newsletter-form input {
        flex-grow: 1;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .payment-methods {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .payment-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .security-cards {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .carousel-item {
        flex: 0 0 25%;
        max-width: 25%;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-middle {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .section-container {
        padding: 3rem 2rem;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.fade-in {
    animation: fadeIn 1s ease;
}

.slide-in-left {
    animation: slideInLeft 1s ease;
}

.slide-in-right {
    animation: slideInRight 1s ease;
}

.slide-in-up {
    animation: slideInUp 1s ease;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}.hero-content {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .hero-content {
    display: flex;
    flex-direction: column;
  }

  .hero-stats {
    order: 2;
  }

  .cta-button {
    order: 1;
    margin-bottom: 1rem;
  }

  .recent-winners {
    order: 3;
  }
}
