:root {
--primary-color: #6f42c1;
--primary-dark: #5a32a3;
--secondary-color: #d4af37;
--accent-color: #ff6b35;
--dark-bg: #0a0a0a;
--dark-card: #1a1a2e;
--text-light: #ffffff;
--text-muted: #b8b8b8;
--gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
--gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
--gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e7c3 50%, #d4af37 100%);
--gradient-accent: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
--shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
--shadow-md: 0 4px 16px rgba(0,0,0,0.15);
--shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
--shadow-glow: 0 0 20px rgba(111, 66, 193, 0.4);
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: var(--dark-bg);
color: var(--text-light);
line-height: 1.6;
overflow-x: hidden;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.header {
background: rgba(26, 26, 46, 0.95);
backdrop-filter: blur(10px);
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 1px solid rgba(111, 66, 193, 0.3);
box-shadow: var(--shadow-md);
}

.header-container {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 20px;
gap: 20px;
}

.logo-text {
font-size: 28px;
font-weight: 800;
background: var(--gradient-gold);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
letter-spacing: 1px;
text-transform: uppercase;
}

.main-nav {
flex: 1;
display: flex;
justify-content: center;
}

.nav-list {
display: flex;
list-style: none;
gap: 32px;
margin: 0;
}

.nav-list a {
color: var(--text-light);
text-decoration: none;
font-weight: 500;
font-size: 15px;
transition: all 0.3s ease;
position: relative;
}

.nav-list a:hover {
color: var(--secondary-color);
}

.nav-list a::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background: var(--gradient-gold);
transition: width 0.3s ease;
}

.nav-list a:hover::after {
width: 100%;
}

.hamburger {
display: none;
flex-direction: column;
background: none;
border: none;
cursor: pointer;
padding: 10px;
gap: 6px;
min-width: 44px;
min-height: 44px;
justify-content: center;
align-items: center;
}

.hamburger span {
width: 24px;
height: 3px;
background: var(--secondary-color);
border-radius: 2px;
transition: all 0.3s ease;
}

.btn {
padding: 14px 32px;
border-radius: 50px;
font-weight: 700;
font-size: 16px;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
border: none;
cursor: pointer;
text-transform: uppercase;
letter-spacing: 0.5px;
position: relative;
overflow: hidden;
}

.btn-primary {
background: var(--gradient-primary);
color: var(--text-light);
box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 0 30px rgba(111, 66, 193, 0.6);
color: var(--text-light);
}

.btn-primary::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;
}

.btn-primary:hover::before {
width: 300px;
height: 300px;
}

.section {
padding: 100px 0;
position: relative;
}

.section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 20% 50%, rgba(111, 66, 193, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
pointer-events: none;
}

.hero {
background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%),
url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231a1a2e" width="1200" height="600"/><g fill-opacity="0.1"><circle fill="%236f42c1" cx="200" cy="100" r="100"/><circle fill="%23d4af37" cx="1000" cy="500" r="150"/></g></svg>');
background-size: cover;
background-position: center;
padding: 140px 0;
min-height: 600px;
display: flex;
align-items: center;
}

h1 {
font-size: 56px;
font-weight: 900;
line-height: 1.2;
margin-bottom: 24px;
background: var(--gradient-gold);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: fadeInUp 0.8s ease;
}

h2 {
font-size: 48px;
font-weight: 800;
margin-bottom: 40px;
text-align: center;
background: var(--gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: fadeInUp 0.8s ease;
}

h3 {
font-size: 32px;
font-weight: 700;
margin-bottom: 20px;
color: var(--secondary-color);
}

h4 {
font-size: 24px;
font-weight: 600;
margin-bottom: 16px;
color: var(--text-light);
}

p {
font-size: 18px;
color: var(--text-light);
margin-bottom: 20px;
line-height: 1.8;
}

.hero-content {
max-width: 800px;
animation: fadeInUp 1s ease;
}

.hero-content p {
font-size: 20px;
color: var(--text-muted);
margin-bottom: 32px;
}

.card {
background: var(--dark-card);
border-radius: 16px;
padding: 32px;
transition: all 0.4s ease;
border: 1px solid rgba(111, 66, 193, 0.2);
position: relative;
overflow: hidden;
}

.card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(111, 66, 193, 0.1) 0%, transparent 100%);
opacity: 0;
transition: opacity 0.4s ease;
}

.card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg), var(--shadow-glow);
border-color: var(--primary-color);
}

.card:hover::before {
opacity: 1;
}

.content-block {
background: var(--dark-card);
border-radius: 16px;
padding: 40px;
margin-bottom: 32px;
border-left: 4px solid var(--primary-color);
animation: fadeIn 0.6s ease;
}

.table-wrapper {
overflow-x: auto;
margin: 32px 0;
border-radius: 12px;
box-shadow: var(--shadow-md);
}

table {
width: 100%;
background: var(--dark-card);
border-collapse: collapse;
border-radius: 12px;
overflow: hidden;
}

thead {
background: var(--gradient-primary);
}

th {
padding: 20px;
text-align: left;
font-weight: 700;
font-size: 16px;
color: var(--text-light);
text-transform: uppercase;
letter-spacing: 0.5px;
}

td {
padding: 20px;
border-bottom: 1px solid rgba(111, 66, 193, 0.1);
font-size: 16px;
color: var(--text-light);
}

tbody tr {
transition: background 0.3s ease;
}

tbody tr:hover {
background: rgba(111, 66, 193, 0.1);
}

.bonus-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 24px;
margin: 32px 0;
}

.bonus-card {
text-align: center;
position: relative;
}

.bonus-image {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 12px;
margin-bottom: 20px;
}

.bonus-amount {
font-size: 22px;
font-weight: 700;
background: var(--gradient-gold);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.bonus-summary {
background: rgba(111, 66, 193, 0.2);
padding: 24px;
border-radius: 12px;
border-left: 4px solid var(--secondary-color);
margin-top: 24px;
font-weight: 600;
}

.game-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin: 24px 0;
}

.game-card {
text-align: center;
padding: 24px;
}

.game-icon {
width: 100%;
height: 180px;
object-fit: cover;
border-radius: 12px;
margin-bottom: 16px;
}

.game-category {
margin: 40px 0;
}

ul, ol {
margin: 20px 0 20px 24px;
color: var(--text-light);
}

li {
margin-bottom: 12px;
font-size: 17px;
line-height: 1.7;
}

.steps ol {
counter-reset: step-counter;
list-style: none;
margin-left: 0;
}

.steps li {
counter-increment: step-counter;
position: relative;
padding-left: 50px;
margin-bottom: 20px;
}

.steps li::before {
content: counter(step-counter);
position: absolute;
left: 0;
top: 0;
width: 36px;
height: 36px;
background: var(--gradient-primary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
color: var(--text-light);
}

.benefits-list {
display: grid;
gap: 24px;
margin: 32px 0;
}

.benefit-item {
background: rgba(111, 66, 193, 0.1);
padding: 24px;
border-radius: 12px;
border-left: 4px solid var(--secondary-color);
}

.limits-block {
background: var(--dark-card);
padding: 32px;
border-radius: 12px;
margin: 24px 0;
}

.cta-block {
text-align: center;
margin: 60px 0;
}

.cta-block .btn {
padding: 18px 48px;
font-size: 18px;
animation: pulse 2s infinite;
}

.faq-item {
background: var(--dark-card);
padding: 32px;
margin-bottom: 20px;
border-radius: 12px;
border-left: 4px solid var(--primary-color);
cursor: pointer;
transition: all 0.3s ease;
}

.faq-item:hover {
transform: translateX(8px);
box-shadow: var(--shadow-md);
}

.faq-item h3 {
font-size: 22px;
margin-bottom: 16px;
color: var(--text-light);
}

.footer {
background: var(--dark-card);
padding: 60px 0 30px;
margin-top: 80px;
border-top: 1px solid rgba(111, 66, 193, 0.3);
}

.footer-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 32px;
list-style: none;
margin-bottom: 32px;
}

.footer-links a {
color: var(--text-muted);
text-decoration: none;
transition: color 0.3s ease;
font-size: 15px;
}

.footer-links a:hover {
color: var(--secondary-color);
}

.footer-info {
text-align: center;
color: var(--text-muted);
font-size: 14px;
}

@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes pulse {
0%, 100% {
box-shadow: 0 0 20px rgba(111, 66, 193, 0.4);
}
50% {
box-shadow: 0 0 40px rgba(111, 66, 193, 0.8);
}
}

@media (max-width: 991px) {
.nav-list {
gap: 20px;
}

.nav-list a {
font-size: 14px;
}

h1 {
font-size: 42px;
}

h2 {
font-size: 36px;
}

.section {
padding: 60px 0;
}
}

@media (max-width: 767px) {
.header-container {
flex-wrap: wrap;
justify-content: space-between;
}

.logo {
flex: 0 0 auto;
}

.logo img {
min-height: 44px;
}

.main-nav {
width: auto;
margin-top: 0;
position: relative;
}

.nav-list {
display: none;
flex-direction: column;
width: 250px;
gap: 0;
background: var(--dark-card);
border-radius: 8px;
padding: 16px 0;
position: absolute;
top: 100%;
right: 0;
margin-top: 16px;
box-shadow: var(--shadow-lg);
z-index: 1000;
}

.nav-list.active {
display: flex;
}

.nav-list li {
width: 100%;
}

.nav-list a {
display: block;
padding: 16px 20px;
min-height: 44px;
border-bottom: 1px solid rgba(111, 66, 193, 0.1);
}

.nav-list a::after {
display: none;
}

.hamburger {
display: flex;
}

.hamburger.active span:nth-child(1) {
transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
opacity: 0;
}

.hamburger.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -7px);
}

.cta-button {
width: 100%;
margin-top: 16px;
padding: 12px 20px;
font-size: 14px;
text-align: center;
}

h1 {
font-size: 36px;
}

h2 {
font-size: 32px;
}

h3 {
font-size: 26px;
}

h4 {
font-size: 22px;
}

p {
font-size: 16px;
}

.hero {
padding: 80px 0;
min-height: auto;
}

.section {
padding: 40px 0;
}

.card, .content-block {
padding: 24px;
}

.bonus-cards {
grid-template-columns: 1fr;
}

.game-grid {
grid-template-columns: 1fr;
}

.table-wrapper {
font-size: 14px;
}

th, td {
padding: 12px;
font-size: 14px;
}

.footer-links {
flex-direction: column;
align-items: center;
gap: 16px;
}
}

@media (max-width: 575px) {
.logo-text {
font-size: 22px;
}

h1 {
font-size: 32px;
}

h2 {
font-size: 28px;
}

h3 {
font-size: 24px;
}

h4 {
font-size: 20px;
}

.btn {
min-height: 44px;
padding: 12px 24px;
font-size: 14px;
}

.cta-block .btn {
min-height: 44px;
padding: 14px 32px;
font-size: 16px;
}
}

@media (max-width: 430px) {
table {
font-size: 13px;
}

th, td {
padding: 8px;
font-size: 13px;
white-space: nowrap;
}

.table-wrapper {
-webkit-overflow-scrolling: touch;
}
}