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

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

.main-header {
background-color: #11a306;
box-shadow: 0 2px 10px 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:80px;
}

.logo-container {
width:60px;
height:60px;
}

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

.desktop-nav {
display: flex;
align-items: center;
}

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

.nav-link, .nav-current {
color: white;
text-decoration: none;
font-weight: 500;
font-size: 16px;
transition: color 0.3s ease;
}

.nav-link:hover {
color: #ffeb3b;
}

.nav-current {
color: #ffeb3b;
font-weight: 600;
}

.dropdown-item {
position: relative;
}

.dropdown-toggle {
display: flex;
align-items: center;
gap: 5px;
}

.arrow-down {
font-size: 12px;
transition: transform 0.3s ease;
}

.dropdown-item:hover .arrow-down {
transform: rotate(180deg);
}

.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
background: white;
min-width: 180px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
border-radius: 8px;
list-style: none;
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: all 0.3s ease;
z-index: 1001;
}

.dropdown-item:hover .dropdown-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.dropdown-link {
display: block;
padding: 12px 20px;
color: #333;
text-decoration: none;
border-bottom: 1px solid #f0f0f0;
transition: background-color 0.3s ease;
}

.dropdown-link:hover {
background-color: #f8f9fa;
color: #11a306;
}

.desktop-auth {
display: flex;
gap: 15px;
}

.btn {
padding: 12px 24px;
border: none;
border-radius: 6px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
cursor: pointer;
font-size: 14px;
}

.btn-register {
background: #ffeb3b;
color: #333;
}

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

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

.btn-login:hover {
background: white;
color: #11a306;
}

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

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

.mobile-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: #11a306;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-list {
list-style: none;
padding: 20px;
}

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

.mobile-nav-link, .mobile-nav-current {
color: white;
text-decoration: none;
font-size: 18px;
font-weight: 500;
display: block;
padding: 10px 0;
}

.mobile-nav-current {
color: #ffeb3b;
font-weight: 600;
}

.mobile-auth-buttons {
padding: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
display: flex;
gap: 15px;
}

.btn-register-mobile, .btn-login-mobile {
flex: 1;
text-align: center;
padding: 12px;
}

.btn-register-mobile {
background: #ffeb3b;
color: #333;
}

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

.main-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 10px;
}

.hero-section {
padding: 60px 0;
}

.hero-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

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

.hero-description {
font-size: 18px;
color: #e0e0e0;
margin-bottom: 30px;
line-height: 1.6;
}

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

.btn-primary {
background: #11a306;
color: white;
font-size: 16px;
}

.btn-secondary {
background: transparent;
color: white;
border: 2px solid white;
font-size: 16px;
}

.btn-large {
padding: 15px 30px;
font-size: 16px;
}

.btn-primary:hover {
background: #0e8a05;
transform: translateY(-2px);
}

.btn-secondary:hover {
background: white;
color: #11a306;
}

.hero-img {
width: 100%;
height: auto;
border-radius: 12px;
}

.bonus-highlight {
padding: 50px 0;
background: rgba(255, 255, 255, 0.05);
margin: 40px 0;
border-radius: 15px;
}

.bonus-container {
text-align: center;
}

.bonus-card {
max-width: 600px;
margin: 0 auto;
}

.bonus-icon {
font-size: 60px;
margin-bottom: 20px;
}

.bonus-title {
font-size: 36px;
color: white;
margin-bottom: 20px;
font-weight: 700;
}

.bonus-description {
font-size: 18px;
color: #e0e0e0;
margin-bottom: 30px;
line-height: 1.6;
}

.bonus-features {
display: flex;
justify-content: center;
gap: 30px;
margin-bottom: 30px;
}

.bonus-feature {
display: flex;
align-items: center;
gap: 8px;
color: white;
font-weight: 500;
}

.feature-icon {
font-size: 20px;
}

.btn-bonus {
background: #ffeb3b;
color: #333;
font-size: 18px;
padding: 15px 40px;
}

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

.sports-section, .casino-section, .app-section, .features-section {
padding: 60px 0;
}

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

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

.sport-card, .feature-card {
background: rgba(255, 255, 255, 0.1);
padding: 30px;
border-radius: 12px;
text-align: center;
transition: transform 0.3s ease;
}

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

.sport-icon, .feature-icon {
font-size: 48px;
margin-bottom: 20px;
display: block;
}

.sport-title, .feature-title {
font-size: 24px;
color: white;
margin-bottom: 15px;
font-weight: 600;
}

.sport-description, .feature-description {
color: #e0e0e0;
line-height: 1.6;
}

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

.btn-sports, .btn-casino {
background: #11a306;
color: white;
font-size: 16px;
padding: 15px 30px;
}

.btn-sports:hover, .btn-casino:hover {
background: #0e8a05;
transform: translateY(-2px);
}

.casino-tabs {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 40px;
}

.tab-btn {
background: rgba(255, 255, 255, 0.1);
color: white;
border: none;
padding: 12px 24px;
border-radius: 25px;
cursor: pointer;
font-size: 16px;
font-weight: 500;
transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
background: #11a306;
color: white;
}

.tab-content {
display: none;
}

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

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

.game-item {
background: rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 8px;
text-align: center;
color: white;
font-weight: 500;
transition: all 0.3s ease;
}

.game-item:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-3px);
}

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

.app-container {
text-align: center;
}

.app-title {
font-size: 36px;
color: white;
margin-bottom: 20px;
font-weight: 700;
}

.app-description {
font-size: 18px;
color: #e0e0e0;
margin-bottom: 30px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
line-height: 1.6;
}

.app-features {
display: flex;
justify-content: center;
gap: 30px;
margin-bottom: 40px;
}

.app-feature {
display: flex;
align-items: center;
gap: 8px;
color: white;
font-weight: 500;
}

.app-downloads {
display: flex;
justify-content: center;
gap: 30px;
}

.app-download {
display: flex;
align-items: center;
gap: 10px;
background: rgba(255, 255, 255, 0.1);
padding: 15px 25px;
border-radius: 10px;
color: white;
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
}

.app-download:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-3px);
}

.registration-section, .livebet-section {
padding: 60px 0;
}

.registration-container, .livebet-container {
max-width: 800px;
margin: 0 auto;
text-align: center;
padding: 0 10px;
}

.reg-intro, .reg-note, .livebet-text {
color: #e0e0e0;
line-height: 1.6;
margin-bottom: 25px;
font-size: 18px;
}

.step-list {
display: flex;
flex-direction: column;
gap: 20px;
margin-bottom: 25px;
}

.step-item {
background: rgba(255,255,255,0.1);
border-radius: 8px;
padding: 20px;
color: white;
font-weight: 500;
text-align: left;
}

.livebet-list {
list-style: disc;
margin: 0 0 30px 20px;
color: #e0e0e0;
text-align: left;
line-height: 1.6;
}

.livebet-list li {
margin-bottom: 10px;
}

/* FAQ Section Styles */
.faq-section {
padding: 60px 0;
background: rgba(255, 255, 255, 0.03);
}

.faq-container {
max-width: 900px;
margin: 0 auto;
padding: 0 10px;
}

.faq-list {
display: flex;
flex-direction: column;
gap: 20px;
}

.faq-item {
background: rgba(255, 255, 255, 0.08);
border-radius: 12px;
overflow: hidden;
transition: all 0.3s ease;
}

.faq-item:hover {
background: rgba(255, 255, 255, 0.12);
}

.faq-question {
display: flex;
justify-content: space-between;
align-items: center;
padding: 25px 30px;
cursor: pointer;
border: none;
background: transparent;
width: 100%;
}

.question-text {
color: white;
font-size: 18px;
font-weight: 600;
margin: 0;
text-align: left;
}

.faq-toggle {
color: #11a306;
font-size: 24px;
font-weight: 700;
transition: transform 0.3s ease;
flex-shrink: 0;
}

.faq-item.active .faq-toggle {
transform: rotate(45deg);
}

.faq-answer {
padding: 0 30px;
color: #e0e0e0;
line-height: 1.6;
max-height: 0;
overflow: hidden;
opacity: 0;
transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
max-height: 500px;
opacity: 1;
padding: 0 30px 25px;
}

.faq-answer p {
margin: 0;
font-size: 16px;
}




.main-footer {
background: #0d0d1a;
color: white;
padding: 50px 0 30px;
margin-top: 60px;
}

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

.payment-section, .providers-section {
margin-bottom: 40px;
text-align: center;
}

.payment-title, .providers-title, .company-title {
font-size: 24px;
margin-bottom: 20px;
color: #11a306;
font-weight: 600;
}

.payment-methods, .game-providers {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

.payment-icon, .provider-logo {
filter: brightness(0.8);
transition: filter 0.3s ease;
}

.payment-icon:hover, .provider-logo:hover {
filter: brightness(1);
}

.company-info {
background: rgba(255, 255, 255, 0.05);
padding: 30px;
border-radius: 10px;
margin-bottom: 30px;
}

.company-details p {
margin-bottom: 8px;
line-height: 1.5;
}

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

.copyright, .disclaimer {
color: #b0b0b0;
font-size: 14px;
margin-bottom: 10px;
}

@media (max-width: 1080px) {
.desktop-nav, .desktop-auth {
display: none;
}

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

.mobile-menu.active {
display: block;
}

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

.hero-title {
font-size: 36px;
}

.bonus-features, .app-features {
flex-direction: column;
align-items: center;
gap: 15px;
}

.app-downloads {
flex-direction: column;
align-items: center;
}

.payment-methods, .game-providers {
gap: 15px;
}
}

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

.section-title {
font-size: 28px;
}

.bonus-title {
font-size: 28px;
}

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

.casino-tabs {
flex-direction: column;
align-items: center;
gap: 10px;
}

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

.hero-buttons {
flex-direction: column;
gap: 15px;
}

.btn-large {
width: 100%;
}

.faq-question {
padding: 20px;
}

.faq-answer {
padding: 0 20px;
}

.faq-item.active .faq-answer {
padding: 0 20px 20px;
}

.question-text {
font-size: 16px;
}

.faq-toggle {
font-size: 20px;
}

.registration-container, .livebet-container {
padding: 0 5px;
}
}

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

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

.hero-section {
padding: 40px 0;
}

.hero-title {
font-size: 24px;
}

.section-title {
font-size: 24px;
}

.bonus-title {
font-size: 24px;
}

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

.payment-methods, .game-providers {
gap: 10px;
}

.payment-icon, .provider-logo {
max-width: 35px;
height: auto;
}

.faq-container {
padding: 0 5px;
}

.faq-question {
padding: 15px;
}

.faq-answer {
padding: 0 15px;
}

.faq-item.active .faq-answer {
padding: 0 15px 15px;
}

.question-text {
font-size: 15px;
}

}

@media (max-width: 320px) {
.hero-title {
font-size: 20px;
}

.section-title, .bonus-title {
font-size: 20px;
}

.hero-description, .app-description {
font-size: 16px;
}

.btn {
padding: 10px 20px;
font-size: 14px;
}
}