*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
overflow-x: hidden;
}

:root {
--primary-gold: #D4AF37;
--secondary-gold: #FFD700;
--dark-bg: #0D1B2A;
--card-bg: #1B263B;
--text-primary: #FFFFFF;
--text-secondary: #B8BCC8;
--accent-red: #E63946;
--success-green: #06D6A0;
--gradient-primary: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
--gradient-dark: linear-gradient(135deg, #0D1B2A 0%, #1B263B 100%);
--shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.3);
--shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
--primary-color: var(--primary-gold);
--accent-color: var(--secondary-gold);
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: var(--dark-bg);
color: var(--text-primary);
line-height: 1.6;
overflow-x: hidden;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.header {
background: var(--gradient-dark);
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
backdrop-filter: blur(10px);
border-bottom: 2px solid var(--primary-gold);
}

.header-container {
display: flex;
align-items: center;
justify-content: space-between;
padding: 15px 20px;
max-width: 1200px;
margin: 0 auto;
}

.header-logo {
flex-shrink: 0;
}

.logo-image {
height: 50px;
width: auto;
filter: brightness(1.2);
}

.header-nav {
display: flex;
align-items: center;
}

.mobile-menu-toggle {
display: none;
flex-direction: column;
background: none;
border: none;
cursor: pointer;
padding: 10px;
}

.hamburger-line {
width: 25px;
height: 3px;
background: var(--primary-gold);
margin: 3px 0;
transition: all 0.3s ease;
}

.nav-menu {
display: flex;
list-style: none;
margin: 0 20px;
}

.nav-item {
margin: 0 15px;
}

.nav-cta-mobile {
display: none;
}

.nav-link {
color: var(--text-primary);
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
position: relative;
}

.nav-link:hover {
color: var(--primary-gold);
}

.nav-link::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--primary-gold);
transition: width 0.3s ease;
}

.nav-link:hover::after {
width: 100%;
}

.cta-button, .btn-primary {
background: var(--gradient-primary);
color: var(--dark-bg);
padding: 12px 30px;
border: none;
border-radius: 25px;
font-weight: bold;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
cursor: pointer;
box-shadow: var(--shadow-gold);
text-transform: uppercase;
letter-spacing: 1px;
}

.cta-button:hover, .btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.main-content {
margin-top: 80px;
}

.section {
padding: 80px 0;
position: relative;
}

.section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent 0%, var(--primary-gold) 50%, transparent 100%);
}

.hero-section {
background: var(--gradient-dark);
padding: 120px 0;
text-align: center;
position: relative;
overflow: hidden;
}

.hero-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
z-index: 1;
}

.hero-header {
position: relative;
z-index: 2;
}

.hero-title {
font-size: 3.5rem;
font-weight: 800;
margin-bottom: 30px;
background: var(--gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1.2;
}

.hero-description {
font-size: 1.3rem;
color: var(--text-secondary);
max-width: 800px;
margin: 0 auto 40px;
line-height: 1.8;
}

.hero-features {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 20px;
list-style: none;
margin: 30px auto 40px;
max-width: 900px;
padding: 0;
}

.hero-feature-item {
background: var(--card-bg);
color: var(--text-primary);
padding: 10px 22px;
border-radius: 50px;
font-size: 0.95rem;
font-weight: 600;
border: 2px solid var(--primary-gold);
box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
transition: all 0.3s ease;
white-space: nowrap;
}

.hero-feature-item:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
background: var(--primary-gold);
color: var(--dark-bg);
}

.section-header {
text-align: center;
margin-bottom: 60px;
}

.section-title {
font-size: 2.8rem;
font-weight: 700;
color: var(--primary-gold);
margin-bottom: 20px;
position: relative;
}

.section-title::after {
content: '';
display: block;
width: 80px;
height: 4px;
background: var(--gradient-primary);
margin: 20px auto;
border-radius: 2px;
}

.review-content, .registration-content, .bonuses-content, .games-content, .payments-content {
background: var(--card-bg);
padding: 50px;
border-radius: 20px;
box-shadow: var(--shadow-dark);
margin-bottom: 40px;
border: 1px solid rgba(212, 175, 55, 0.2);
}

.review-text, .section-intro {
font-size: 1.1rem;
color: var(--text-secondary);
margin-bottom: 40px;
line-height: 1.8;
}

.table-wrapper {
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}

.specs-table, .payment-table {
width: 100%;
min-width: 500px;
border-collapse: collapse;
margin: 40px 0;
background: rgba(27, 38, 59, 0.5);
border-radius: 15px;
overflow: hidden;
}

.specs-header, .payment-header {
background: var(--gradient-primary);
color: var(--dark-bg);
padding: 20px;
font-weight: bold;
text-align: left;
}

.specs-row, .payment-row {
border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.specs-row:nth-child(even), .payment-row:nth-child(even) {
background: rgba(212, 175, 55, 0.05);
}

.specs-label, .specs-value, .payment-method, .payment-time, .payment-limits {
padding: 15px 20px;
color: var(--text-primary);
}

.specs-label, .payment-method {
font-weight: 600;
color: var(--primary-gold);
}

.subsection-title {
font-size: 1.8rem;
color: var(--secondary-gold);
margin: 0 0 20px;
font-weight: 600;
}

.process-steps, .login-features, .welcome-package, .ongoing-promotions, 
.slot-games, .table-games, .security-standards {
margin: 40px 0;
padding: 30px;
background: rgba(13, 27, 42, 0.5);
border-radius: 15px;
border-left: 4px solid var(--primary-gold);
}

.bonus-structure {
background: rgba(212, 175, 55, 0.1);
padding: 25px;
border-radius: 10px;
margin: 20px 0;
}

.bonus-list {
list-style: none;
margin-top: 15px;
}

.bonus-item {
padding: 10px 0;
position: relative;
padding-left: 25px;
color: var(--text-primary);
}

.bonus-item::before {
content: '★';
position: absolute;
left: 0;
color: var(--primary-gold);
font-size: 1.2rem;
}

.faq-content {
max-width: 900px;
margin: 0 auto;
}

.faq-item {
background: var(--card-bg);
margin-bottom: 20px;
border-radius: 15px;
overflow: hidden;
border: 1px solid rgba(212, 175, 55, 0.2);
transition: all 0.3s ease;
}

.faq-item:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-gold);
}

.faq-question {
padding: 25px 30px;
cursor: pointer;
background: var(--gradient-dark);
color: var(--primary-gold);
margin: 0;
font-size: 1.2rem;
font-weight: 600;
position: relative;
transition: all 0.3s ease;
}

.faq-question::after {
content: '+';
position: absolute;
right: 30px;
top: 50%;
transform: translateY(-50%);
font-size: 1.5rem;
transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
max-height: 200px;
}

.faq-answer p {
padding: 0 30px 25px;
color: var(--text-secondary);
line-height: 1.7;
}

.footer {
background: var(--gradient-dark);
padding: 50px 0 30px;
border-top: 2px solid var(--primary-gold);
}

.footer-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
text-align: center;
}

.footer-links {
display: flex;
justify-content: center;
flex-wrap: wrap;
list-style: none;
margin-bottom: 30px;
}

.footer-link-item {
margin: 0 20px 10px;
}

.footer-link {
color: var(--text-secondary);
text-decoration: none;
transition: color 0.3s ease;
}

.footer-link:hover {
color: var(--primary-gold);
}

.disclaimer-text {
color: var(--text-secondary);
font-size: 0.9rem;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}

.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}

.popular-slots {
margin: 40px 0;
}

.popular-slots .slots-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin: 20px 0 0;
}

.slot-item {
background: rgba(13, 27, 42, 0.5);
padding: 20px;
border-radius: 15px;
border: 1px solid rgba(212, 175, 55, 0.2);
transition: all 0.3s ease;
}

.slot-item img {
width: 100%;
height: auto;
border-radius: 10px;
margin-bottom: 15px;
display: block;
}

.slot-item:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-gold);
border-color: var(--primary-gold);
}

.slot-item h4 {
font-size: 1.5rem;
margin-bottom: 10px;
color: var(--primary-gold);
}

.slot-item p {
font-size: 1.05rem;
color: var(--text-secondary);
line-height: 1.6;
}

@media (max-width: 768px) {
html, body {
overflow-x: hidden;
width: 100%;
}

.mobile-menu-toggle {
display: flex;
}

.nav-menu {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--card-bg);
flex-direction: column;
margin: 0;
padding: 20px;
transform: translateY(-100%);
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}

.nav-menu.active {
transform: translateY(0);
opacity: 1;
visibility: visible;
}

.nav-item {
margin: 10px 0;
}

.header-cta {
display: none;
}

.nav-cta-mobile {
display: block;
margin-top: 15px;
text-align: center;
}

.hero-title {
font-size: 2.5rem;
}

.hero-features {
gap: 15px;
margin: 25px auto 35px;
}

.hero-feature-item {
font-size: 0.85rem;
padding: 8px 18px;
}

.section-title {
font-size: 2.2rem;
}

.review-content, .registration-content, .bonuses-content,
.games-content, .payments-content {
padding: 30px 20px;
}

.specs-table, .payment-table {
font-size: 0.9rem;
}

.specs-header, .payment-header,
.specs-label, .specs-value, .payment-method, .payment-time, .payment-limits {
padding: 10px 15px;
}

.footer-links {
flex-direction: column;
}

.footer-link-item {
margin: 5px 0;
}

.popular-slots .slots-grid {
grid-template-columns: 1fr;
gap: 15px;
max-width: 100%;
margin-left: -20px;
margin-right: -20px;
padding: 0 20px;
}

.popular-slots .slot-item {
max-width: 100%;
padding: 15px;
}

.popular-slots .slot-item img {
max-width: 100%;
height: auto;
}

.slot-item h4 {
font-size: 1.3rem;
}

.slot-item p {
font-size: 1rem;
}
}

@media (max-width: 480px) {
.hero-section {
padding: 55px 0 80px;
}

.hero-title {
font-size: 2rem;
}

.hero-description {
font-size: 1.1rem;
margin-bottom: 20px;
}

.hero-features {
gap: 10px;
margin: 20px auto 30px;
}

.hero-feature-item {
font-size: 0.8rem;
padding: 7px 16px;
}

.section {
padding: 60px 0;
}

.section-title {
font-size: 1.8rem;
}

.cta-button, .btn-primary {
padding: 14px 32px;
font-size: 1.1rem;
}
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.animate-fade-in {
animation: fadeInUp 0.8s ease forwards;
}

@keyframes pulse {
0%, 100% {
box-shadow: var(--shadow-gold);
}
50% {
box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
}
}

.cta-button:hover, .btn-primary:hover {
animation: pulse 2s infinite;
}

/* site-blocks: card components for games / providers / payments / footer RG badges. */

.games-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2.5rem 0 1.5rem;
}

.games-block-header:first-child {
    margin-top: 0;
}

.games-block-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.games-all-btn {
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--text-primary);
    padding: 0.55rem 1.4rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.games-all-btn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-2px);
}

.games-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.game-card {
    display: block;
    flex: 1 1 150px;
    max-width: 190px;
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border-color: var(--primary-color);
}

.game-card-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.game-card-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-card-thumb img {
    transform: scale(1.08);
}

.game-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 35, 0.82);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-card-overlay {
    opacity: 1;
}

.game-play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.game-demo-btn {
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.game-card-info {
    padding: 0.75rem 0.9rem 0.9rem;
}

.game-card-info h3 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.logo-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 130px;
    max-width: 200px;
    height: 90px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.logo-card.on-light {
    background: rgba(244, 241, 251, 0.95);
    border-color: rgba(212, 175, 55, 0.3);
}

.logo-card.on-light:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.payments-logos {
    margin-bottom: 2.5rem;
}

.footer-rg-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin: 1.25rem 0;
}

.footer-rg-badge {
    height: 30px;
    width: auto;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.footer-rg-badge:hover {
    opacity: 1;
}