:root {
--primary-color: #ff0066;
--primary-dark: #cc0052;
--primary-light: #ff3385;
--secondary-color: #8b5cf6;
--accent-color: #ffd700;
--dark-bg: #0a0e27;
--dark-bg-secondary: #1a1f3a;
--dark-card: #1e2442;
--text-light: #ffffff;
--text-muted: #a0a8c1;
--gradient-primary: linear-gradient(135deg, #ff0066 0%, #8b5cf6 100%);
--gradient-secondary: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
--gradient-dark: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
--shadow-sm: 0 2px 8px rgba(255, 0, 102, 0.15);
--shadow-md: 0 4px 16px rgba(255, 0, 102, 0.2);
--shadow-lg: 0 8px 32px rgba(255, 0, 102, 0.3);
--shadow-glow: 0 0 30px rgba(255, 0, 102, 0.4);
--border-radius: 16px;
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: var(--dark-bg);
color: var(--text-light);
line-height: 1.7;
overflow-x: hidden;
}

.container {
max-width: 1440px;
margin: 0 auto;
padding: 0 20px;
}

.header {
position: sticky;
top: 0;
z-index: 1000;
background: rgba(10, 14, 39, 0.95);
backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(255, 0, 102, 0.1);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 20px;
gap: 5px;
margin: 10px auto;
}

.logo-image {
height: 35px;
width: auto;
transition: var(--transition);
}

@media (max-width: 767px) {
.logo-image {
height: 30px;
}
}

.logo-image:hover {
transform: scale(1.05);
}

.nav-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 8px;
z-index: 1001;
}

.hamburger {
display: block;
width: 28px;
height: 2px;
background: var(--text-light);
position: relative;
transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
content: '';
position: absolute;
width: 28px;
height: 2px;
background: var(--text-light);
transition: var(--transition);
}

.hamburger::before {
top: -8px;
}

.hamburger::after {
bottom: -8px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
transform: rotate(45deg);
top: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
transform: rotate(-45deg);
bottom: 0;
}

.nav-list {
display: flex;
list-style: none;
gap: 32px;
align-items: center;
margin-bottom: 0 !important;
}

.nav-link {
color: var(--text-light);
text-decoration: none;
font-weight: 500;
font-size: 15px;
transition: var(--transition);
position: relative;
}

.nav-link::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background: var(--gradient-primary);
transition: var(--transition);
}

.nav-link:hover {
color: var(--primary-color);
}

.nav-link:hover::after {
width: 100%;
}

.btn {
display: inline-block;
padding: 14px 32px;
border-radius: 50px;
font-weight: 700;
font-size: 15px;
text-decoration: none;
text-align: center;
transition: var(--transition);
border: none;
cursor: pointer;
letter-spacing: 0.3px;
position: relative;
overflow: hidden;
}

.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;
}

.btn:hover::before {
width: 300px;
height: 300px;
}

.btn-primary {
background: var(--gradient-primary);
color: var(--text-light);
box-shadow: var(--shadow-md);
position: relative;
z-index: 1;
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-glow);
color: var(--text-light);
}

.btn-large {
padding: 18px 48px;
font-size: 18px;
}

.section {
padding: 100px 0;
position: relative;
}

.section::before {
content: '';
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 100%;
max-width: 1200px;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(255, 0, 102, 0.3), transparent);
}

.section-title {
font-size: 52px;
font-weight: 800;
margin-bottom: 60px;
text-align: center;
background: var(--gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
letter-spacing: -1px;
line-height: 1.2;
}

.hero-section {
padding: 140px 0 120px;
background: var(--gradient-dark);
position: relative;
overflow: hidden;
}

.hero-section::before {
display: none;
}

.hero-section::after {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 800px;
height: 800px;
background: radial-gradient(circle, rgba(255, 0, 102, 0.15) 0%, transparent 70%);
border-radius: 50%;
animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
0%, 100% {
transform: scale(1);
opacity: 0.5;
}
50% {
transform: scale(1.1);
opacity: 0.8;
}
}

.hero-title {
font-size: 62px;
font-weight: 900;
line-height: 1.15;
margin-bottom: 32px;
letter-spacing: -1.5px;
position: relative;
z-index: 1;
}

.hero-description {
font-size: 19px;
line-height: 1.8;
color: var(--text-muted);
margin-bottom: 48px;
max-width: 900px;
position: relative;
z-index: 1;
}

.hero-cta {
position: relative;
z-index: 1;
}

.card {
background: var(--dark-card);
border-radius: var(--border-radius);
padding: 32px;
box-shadow: var(--shadow-md);
transition: var(--transition);
border: 1px solid rgba(255, 0, 102, 0.1);
}

.card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
border-color: rgba(255, 0, 102, 0.3);
}

.table-wrapper {
overflow-x: auto;
border-radius: var(--border-radius);
box-shadow: var(--shadow-md);
background: var(--dark-card);
margin-top: 40px;
}

.info-table,
.payments-table {
width: 100%;
border-collapse: collapse;
}

.info-table th,
.info-table td,
.payments-table th,
.payments-table td {
padding: 20px 24px;
text-align: left;
border-bottom: 1px solid rgba(255, 0, 102, 0.1);
color: var(--text-light);
}

.info-table th,
.payments-table th {
font-weight: 700;
color: var(--primary-color);
background: rgba(255, 0, 102, 0.05);
}

.info-table tbody tr:last-child td,
.info-table tbody tr:last-child th,
.payments-table tbody tr:last-child td,
.payments-table tbody tr:last-child th {
border-bottom: none;
}

.info-table tbody tr:hover,
.payments-table tbody tr:hover {
background: rgba(255, 0, 102, 0.03);
}

.content-subtitle,
.category-title,
.strategy-title,
.payment-subtitle {
font-size: 32px;
font-weight: 700;
margin-bottom: 24px;
color: var(--text-light);
letter-spacing: -0.5px;
}

.text-content p,
.category-text p,
.strategy-text p,
.payment-text p {
font-size: 17px;
line-height: 1.8;
color: var(--text-muted);
margin-bottom: 20px;
}

.cta-inline {
margin-top: 32px;
}

.bonus-grid,
.games-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 32px;
margin-top: 48px;
}

.bonus-card .card-image,
.game-card .card-image,
.content-block .card-image,
.games-category .card-image,
.strategy-block .card-image,
.bonus-card-fullwidth .card-image {
width: 100%;
border-radius: 12px;
overflow: hidden;
margin-bottom: 24px;
}

.bonus-card .card-image img,
.game-card .card-image img,
.content-block .card-image img,
.games-category .card-image img,
.strategy-block .card-image img,
.bonus-card-fullwidth .card-image img {
width: 100%;
height: 220px;
object-fit: cover;
transition: var(--transition);
}

.content-block .card-image-wide img,
.games-category .card-image-wide img {
height: 350px;
}

.card:hover .card-image img {
transform: scale(1.05);
}

.card-title {
font-size: 24px;
font-weight: 700;
margin-bottom: 16px;
color: var(--text-light);
}

.card-text p {
font-size: 16px;
line-height: 1.7;
color: var(--text-muted);
margin-bottom: 16px;
}

.card-cta {
margin-top: 24px;
}

.game-name {
font-size: 18px;
font-weight: 700;
color: var(--text-light);
margin-bottom: 8px;
}

.game-provider {
font-size: 14px;
color: var(--text-muted);
}

.section-cta {
text-align: center;
margin-top: 64px;
}

.faq-list {
max-width: 100%;
margin: 48px auto 0;
}

.faq-item {
background: var(--dark-card);
border-radius: var(--border-radius);
padding: 32px;
margin-bottom: 24px;
border: 1px solid rgba(255, 0, 102, 0.1);
transition: var(--transition);
}

.faq-item:hover {
border-color: rgba(255, 0, 102, 0.3);
box-shadow: var(--shadow-md);
}

.faq-question {
font-size: 22px;
font-weight: 700;
color: var(--text-light);
margin-bottom: 16px;
letter-spacing: -0.3px;
}

.faq-answer p {
font-size: 16px;
line-height: 1.8;
color: var(--text-muted);
}

.faq-cta {
text-align: center;
margin-top: 64px;
}

.footer {
background: var(--dark-bg-secondary);
padding: 60px 0 40px;
border-top: 1px solid rgba(255, 0, 102, 0.1);
}

.footer-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 32px;
list-style: none;
margin-bottom: 40px;
}

.footer-link {
color: var(--text-muted);
text-decoration: none;
font-size: 15px;
transition: var(--transition);
}

.footer-link:hover {
color: var(--primary-color);
}

.footer-disclaimer {
text-align: center;
max-width: 800px;
margin: 0 auto;
}

.disclaimer-text {
font-size: 14px;
color: var(--text-muted);
margin-bottom: 16px;
}

.copyright {
font-size: 14px;
color: var(--text-muted);
}

@media (max-width: 320px) {
.container {
padding: 0 10px;
}

.header-container {
padding: 12px 10px;
}

.btn {
padding: 12px 20px;
font-size: 14px;
}
}

@media (max-width: 767px) {
.header-container {
flex-wrap: wrap;
margin: 0 !important;
}

.logo-image {
    height: 30px;
}

.nav-toggle {
display: block;
order: 2;
}

.header-nav {
order: 3;
width: 100%;
}

.nav-list {
flex-direction: column;
position: fixed;
top: 0;
right: -100%;
width: 280px;
height: 100vh;
background: rgba(10, 14, 39, 0.98);
backdrop-filter: blur(20px);
padding: 100px 30px 30px;
gap: 24px;
transition: right 0.3s ease;
box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
align-items: flex-start;
display: none;
z-index: 100;
}

.nav-list.active {
right: 0;
display: flex;
}

.header-cta {
order: 2;
width: 100%;
margin-top: 16px;
}

.header-cta .btn {
width: 100%;
}

.section {
padding: 60px 0;
}

.hero-section {
padding: 80px 0 60px;
}

.hero-title {
font-size: 36px;
}

.hero-description {
font-size: 16px;
}

.section-title {
font-size: 32px;
margin-bottom: 40px;
}

.content-subtitle,
.category-title,
.strategy-title,
.payment-subtitle {
font-size: 24px;
}

.bonus-grid,
.games-grid {
grid-template-columns: 1fr;
gap: 24px;
}

.btn-large {
padding: 16px 32px;
font-size: 16px;
}

.faq-question {
font-size: 18px;
}

.section-image img {
height: 150px !important;
}

.games-category .card-image img,
.strategy-block .card-image img,
.games-category.card .card-image img,
.strategy-block.card .card-image img,
img.mobile-img {
height: 150px !important;
max-height: 150px !important;
}

.content-block .card-image-wide img {
height: 200px !important;
}
}

@media (min-width: 768px) and (max-width: 1023px) {
.hero-title {
font-size: 48px;
}

.section-title {
font-size: 42px;
}

.bonus-grid,
.games-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 1440px) {
.container {
padding: 0 40px;
}

.hero-title {
font-size: 72px;
}

.section-title {
font-size: 58px;
}
}