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

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
min-height: 100vh;
}

.main-header {
background: linear-gradient(90deg, #0f3460 0%, #16537e 100%);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 1000;
}

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

.logo-section {
flex: 0 0 auto;
}

.logo-container {
width: 160px;
height: 40px;
display: flex;
align-items: center;
}

.site-logo {
width: 100%;
height: 100%;
object-fit: contain;
}

.main-navigation {
flex: 1;
display: flex;
justify-content: center;
}

.nav-menu {
display: flex;
list-style: none;
gap: 30px;
}

.nav-item {
position: relative;
}

.nav-link, .nav-link-current {
color: white;
text-decoration: none;
font-weight: 500;
padding: 10px 15px;
border-radius: 5px;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 5px;
}

.nav-link:hover {
background: rgba(255, 255, 255, 0.1);
}

.nav-link-current {
background: rgba(255, 255, 255, 0.2);
cursor: default;
}

.auth-buttons {
display: flex;
gap: 10px;
}

.btn-register, .btn-login {
padding: 10px 20px;
border-radius: 25px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}

.btn-register {
background: #ff6b35;
color: white;
}

.btn-register:hover {
background: #e55a2e;
transform: translateY(-2px);
}

.btn-login {
background: transparent;
color: white;
border: 2px solid white;
}

.btn-login:hover {
background: white;
color: #0f3460;
}

.mobile-menu-toggle {
display: none;
flex-direction: column;
cursor: pointer;
gap: 4px;
}

.hamburger-line {
width: 25px;
height: 3px;
background: white;
transition: all 0.3s ease;
}

.mobile-menu-overlay {
position: fixed;
top: 0;
right: -100%;
width: 100%;
height: 100vh;
background: rgba(15, 52, 96, 0.95);
z-index: 999;
transition: right 0.3s ease;
}

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

.mobile-navigation {
padding: 100px 30px 30px;
}

.mobile-nav-menu {
list-style: none;
margin-bottom: 30px;
}

.mobile-nav-item {
margin-bottom: 15px;
}

.mobile-nav-link, .mobile-nav-current {
color: white;
text-decoration: none;
font-size: 18px;
font-weight: 500;
display: block;
padding: 15px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-current {
color: #ff6b35;
}

.mobile-auth-buttons {
display: flex;
flex-direction: column;
gap: 15px;
}

.mobile-btn-register, .mobile-btn-login {
padding: 15px 20px;
border-radius: 25px;
text-decoration: none;
font-weight: 600;
text-align: center;
}

.mobile-btn-register {
background: #ff6b35;
color: white;
}

.mobile-btn-login {
background: transparent;
color: white;
border: 2px solid white;
}

.main-content {
padding: 0 10px;
}

.hero-section {
padding: 60px 0;
background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(22, 83, 126, 0.1) 100%);
}

.hero-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
}

.hero-content {
}

.hero-title {
font-size: 2.5rem;
font-weight: 700;
color: white;
margin-bottom: 20px;
line-height: 1.2;
}

.hero-subtitle {
font-size: 1.2rem;
color: #b8c5d1;
margin-bottom: 30px;
line-height: 1.6;
}

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

.btn-primary, .btn-secondary {
padding: 15px 30px;
border-radius: 30px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 8px;
}

.btn-primary {
background: linear-gradient(45deg, #ff6b35, #ff8c42);
color: white;
box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
background: transparent;
color: white;
border: 2px solid #ff6b35;
}

.btn-secondary:hover {
background: #ff6b35;
transform: translateY(-3px);
}

.hero-image {
text-align: center;
}

.hero-graphic {
width: 100%;
max-width: 600px;
height: auto;
border-radius: 15px;
}

.features-section {
padding: 80px 0;
background: rgba(255, 255, 255, 0.02);
}

.features-container {
max-width: 1200px;
margin: 0 auto;
}

.section-title {
font-size: 2.2rem;
font-weight: 700;
color: white;
text-align: center;
margin-bottom: 50px;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.feature-card {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 15px;
padding: 30px;
text-align: center;
transition: transform 0.3s ease;
}

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

.feature-icon {
font-size: 3rem;
margin-bottom: 20px;
display: block;
}

.feature-title {
font-size: 1.4rem;
font-weight: 600;
color: white;
margin-bottom: 15px;
}

.feature-description {
color: #b8c5d1;
line-height: 1.6;
}

.auth-guide-section {
padding: 80px 0;
background: rgba(255, 255, 255, 0.02);
}

.auth-guide-container {
max-width: 1200px;
margin: 0 auto;
}

.auth-steps-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
}

.auth-step-card {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 15px;
padding: 30px;
text-align: center;
}

.auth-step-title {
color: white;
font-size: 1.5rem;
margin-bottom: 20px;
}

.auth-list {
list-style: decimal;
color: #b8c5d1;
text-align: left;
margin: 0 auto 25px;
max-width: 260px;
}

.auth-item {
margin-bottom: 10px;
}

.auth-cta {
width: 100%;
max-width: 220px;
margin: 0 auto;
display: inline-block;
}

.about-section {
padding: 80px 0;
}

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

.about-text {
color: #b8c5d1;
line-height: 1.8;
font-size: 1.1rem;
}

.sports-section {
padding: 80px 0;
background: rgba(255, 255, 255, 0.02);
}

.sports-container {
max-width: 800px;
margin: 0 auto;
}

.sports-list {
list-style: none;
}

.sports-item {
color: #b8c5d1;
font-size: 1.1rem;
margin-bottom: 15px;
display: flex;
align-items: center;
gap: 10px;
}

.sports-tag {
font-size: 1.4rem;
}

.games-section {
padding: 80px 0;
}

.games-container {
max-width: 1200px;
margin: 0 auto;
}

.games-category {
margin-bottom: 50px;
}

.category-title {
font-size: 1.8rem;
font-weight: 600;
color: white;
margin-bottom: 25px;
}

.games-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-bottom: 30px;
}

.game-card {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 10px;
padding: 20px;
display: flex;
justify-content: space-between;
align-items: center;
transition: all 0.3s ease;
}

.game-card:hover {
background: rgba(255, 107, 53, 0.1);
transform: translateX(5px);
}

.game-name {
color: white;
font-weight: 500;
}

.game-popularity {
color: #ffd700;
}

.games-cta {
text-align: center;
margin-top: 40px;
}

.games-button {
padding: 15px 40px;
}

.bonus-section {
padding: 80px 0;
background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 66, 0.05) 100%);
border-top: 1px solid rgba(255, 107, 53, 0.2);
border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

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

.bonus-title {
font-size: 2.5rem;
font-weight: 700;
color: white;
margin-bottom: 25px;
}

.bonus-description {
font-size: 1.2rem;
color: #b8c5d1;
margin-bottom: 35px;
line-height: 1.6;
}

.bonus-features {
list-style: none;
margin-bottom: 40px;
}

.bonus-feature {
color: white;
font-size: 1.1rem;
margin-bottom: 10px;
padding: 10px 0;
}

.bonus-cta {
}

.bonus-button {
padding: 18px 45px;
font-size: 1.2rem;
}

.payments-section {
padding: 80px 0;
}

.payments-container {
max-width: 1200px;
margin: 0 auto;
}

.payments-description {
text-align: center;
color: #b8c5d1;
font-size: 1.1rem;
margin-bottom: 50px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.payment-categories {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
margin-bottom: 50px;
}

.payment-category {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 15px;
padding: 30px;
}

.payment-category-title {
color: white;
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 20px;
text-align: center;
}

.payment-methods {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
}

.payment-method {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}

.payment-icon {
width: 48px;
height: 48px;
object-fit: contain;
}

.payment-name {
color: #b8c5d1;
font-size: 0.9rem;
}

.payment-cta {
text-align: center;
}

.payment-button {
padding: 15px 35px;
}

.howto-section {
padding: 80px 0;
background: rgba(255, 255, 255, 0.02);
}

.howto-container {
max-width: 1200px;
margin: 0 auto;
}

.steps-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-bottom: 50px;
}

.step-card {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 15px;
padding: 30px;
text-align: center;
position: relative;
}

.step-number {
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
width: 40px;
height: 40px;
background: linear-gradient(45deg, #ff6b35, #ff8c42);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 1.2rem;
}

.step-title {
color: white;
font-size: 1.4rem;
font-weight: 600;
margin: 20px 0 15px;
}

.step-description {
color: #b8c5d1;
line-height: 1.6;
}

.howto-cta {
text-align: center;
}

.howto-button {
padding: 18px 45px;
font-size: 1.2rem;
}

.main-footer {
background: linear-gradient(135deg, #0a1929 0%, #0f3460 100%);
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding: 60px 0 20px;
}

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

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 50px;
}

.footer-section {
}

.footer-title {
color: white;
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 20px;
}

.footer-text {
color: #b8c5d1;
line-height: 1.6;
margin-bottom: 10px;
}

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

.footer-link {
color: #b8c5d1;
text-decoration: none;
line-height: 2;
transition: color 0.3s ease;
}

.footer-link:hover {
color: #ff6b35;
}

.payment-icons-section {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 30px;
margin-bottom: 30px;
}

.payment-section-title {
color: white;
font-size: 1.1rem;
font-weight: 600;
text-align: center;
margin-bottom: 20px;
}

.payment-icons-container {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
}

.footer-payment-icon {
width: 40px;
height: 24px;
object-fit: contain;
opacity: 0.7;
transition: opacity 0.3s ease;
}

.footer-payment-icon:hover {
opacity: 1;
}

.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 20px;
text-align: center;
}

.footer-bottom-content {
}

.copyright, .disclaimer {
color: #8a92a3;
font-size: 0.9rem;
margin-bottom: 5px;
}

@media (max-width: 1080px) {
.main-navigation {
display: none;
}

.auth-buttons {
display: none;
}

.mobile-menu-toggle {
display: flex;
}

.hero-container {
grid-template-columns: 1fr;
text-align: center;
}

.hero-title {
font-size: 2rem;
}

.features-grid {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.games-grid {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.payment-categories {
grid-template-columns: 1fr;
}

.steps-grid {
grid-template-columns: 1fr;
}

.footer-content {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
}

@media (max-width: 768px) {
.hero-title {
font-size: 1.8rem;
}

.hero-subtitle {
font-size: 1rem;
}

.section-title {
font-size: 1.8rem;
}

.bonus-title {
font-size: 2rem;
}

.hero-buttons {
flex-direction: column;
align-items: center;
}

.btn-primary, .btn-secondary {
width: 100%;
max-width: 300px;
text-align: center;
justify-content: center;
}

.features-grid {
grid-template-columns: 1fr;
}

.games-grid {
grid-template-columns: 1fr;
}

.payment-icons-container {
gap: 15px;
}

.footer-payment-icon {
width: 35px;
height: 21px;
}

.auth-steps-grid {
grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {
.header-container {
padding: 0 15px;
}

.main-content {
padding: 0 15px;
}

.hero-section, .features-section, .games-section, .bonus-section, .payments-section, .howto-section {
padding: 40px 0;
}

.auth-guide-section, .about-section, .sports-section {
padding: 40px 0;
}

.hero-title {
font-size: 1.6rem;
}

.section-title {
font-size: 1.6rem;
}

.bonus-title {
font-size: 1.8rem;
}

.feature-card, .step-card, .auth-step-card {
padding: 20px;
}

.payment-category {
padding: 20px;
}

.footer-content {
grid-template-columns: 1fr;
}

.payment-icons-container {
gap: 10px;
}

.footer-payment-icon {
width: 30px;
height: 18px;
}
}

@media (max-width: 320px) {
.logo-container {
width: 140px;
height: 35px;
}

.hero-title {
font-size: 1.4rem;
}

.section-title {
font-size: 1.4rem;
}

.bonus-title {
font-size: 1.6rem;
}

.btn-primary, .btn-secondary {
padding: 12px 20px;
font-size: 1rem;
}
}