/* Reset and Base Styles */
* {
    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, #115d01 0%, #1a7a02 100%);
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles (Same as other pages) */
.main-header {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 10px;
}

.navigation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 0;
    position: relative;
}

.logo-wrapper {
    flex-shrink: 0;
}

.site-logo {
    display: block;
    max-width: 190px;
    height: 50px;
    object-fit: contain;
}

.primary-navigation {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.primary-navigation a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.primary-navigation a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #4CAF50;
}

.current-page {
    color: #4CAF50;
    font-weight: 600;
    padding: 8px 12px;
}

.dropdown-menu {
    position: relative;
}

.dropdown-arrow {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
}

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

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

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    border-radius: 4px;
    margin: 0 10px;
}

.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.login-button {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #4CAF50;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-button:hover {
    background: #4CAF50;
    color: #000;
}

.register-button {
    background: linear-gradient(45deg, #115d01, #1a7a02);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.register-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 93, 1, 0.4);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    order: 3;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Main Content */
.aviator-content {
    padding: 0 10px;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 40px auto;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    gap: 40px;
}

.hero-container {
    flex: 1;
    max-width: 600px;
}

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

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: #fff;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.hero-image {
    flex-shrink: 0;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
.game-overview-section,
.how-to-play-section,
.game-features-section,
.strategies-section,
.statistics-section,
.payment-section,
.mobile-gaming-section,
.bonuses-section,
.faq-section,
.final-cta-section {
    margin: 60px auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px 0;
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Game Overview Stats */
.game-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

/* How to Play Steps */
.gameplay-steps {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.step-number {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 10px;
}

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

/* Game Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

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

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 15px;
}

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

/* Strategies */
.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.strategy-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.strategy-title {
    font-size: 20px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 20px;
}

.strategy-description p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.strategy-description strong {
    color: #ff6b35;
}

.strategy-tips {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.tips-title {
    font-size: 24px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 20px;
    text-align: center;
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
    color: #333;
    line-height: 1.5;
}

.tips-list li:before {
    content: "💡";
    position: absolute;
    left: 0;
    top: 10px;
}

/* Statistics */
.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.stats-column {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats-title {
    font-size: 22px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 20px;
}

.stats-list {
    display: grid;
    gap: 15px;
}

.stats-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.stats-item:last-child {
    border-bottom: none;
}

.stats-label {
    font-weight: 600;
    color: #333;
}

.stats-value {
    color: #ff6b35;
    font-weight: 600;
}

.stats-info p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.stats-info strong {
    color: #115d01;
}

.stats-disclaimer {
    background: rgba(255, 107, 53, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid #ff6b35;
}

.stats-disclaimer p {
    color: #333;
    margin: 0;
    font-style: italic;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.payment-method {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
}

.payment-icon {
    margin-bottom: 20px;
}

.payment-title {
    font-size: 20px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 15px;
}

.payment-description {
    color: #666;
    line-height: 1.6;
}

/* Mobile Gaming */
.mobile-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mobile-feature {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

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

.mobile-title {
    font-size: 20px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 15px;
}

.mobile-description {
    color: #666;
    line-height: 1.6;
}

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

.mobile-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #115d01, #1a7a02);
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 93, 1, 0.4);
}

/* Bonuses */
.aviator-bonuses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bonus-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.bonus-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff6b35;
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.bonus-title {
    font-size: 22px;
    font-weight: 700;
    color: #115d01;
    margin-bottom: 15px;
}

.bonus-amount {
    font-size: 32px;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 20px;
}

.bonus-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.bonus-claim-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bonus-claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* FAQ */
.faq-container {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    color: #115d01;
    padding: 25px 30px;
    margin: 0;
    background: rgba(17, 93, 1, 0.05);
    cursor: pointer;
    position: relative;
    border: none;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(17, 93, 1, 0.1);
}

.faq-question:after {
    content: "+";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: bold;
    color: #115d01;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 25px 30px;
    color: #666;
    line-height: 1.7;
    border-top: 1px solid #eee;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Final CTA */
.final-cta-section {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #fff;
    text-align: center;
}

.cta-heading {
    color: #fff;
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-cta-button {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.primary-cta-button.large {
    padding: 20px 40px;
    font-size: 20px;
}

.primary-cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.secondary-cta-button {
    background: transparent;
    color: #fff;
    text-decoration: none;
    padding: 18px 35px;
    border: 2px solid #fff;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.secondary-cta-button:hover {
    background: #fff;
    color: #ff6b35;
}

/* Footer Styles (Same as other pages) */
.site-footer {
    background: #000;
    color: #fff;
    padding: 50px 10px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #4CAF50;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4CAF50;
}

.app-download-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-download-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.app-download-link:hover {
    color: #4CAF50;
}

.app-icon {
    border-radius: 8px;
}

.payment-methods-footer {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 30px 20px;
    border-top: 1px solid #333;
    text-align: center;
}

.payment-methods-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #4CAF50;
}

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

.payment-method-icon {
    background: rgba(255, 255, 255, 0.1);
    padding: 3px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.payment-method-icon:hover {
    transform: scale(1.1);
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 20px;
    border-top: 1px solid #333;
    text-align: center;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1080px) {
    .navigation-container {
        flex-wrap: wrap;
    }
    
    .logo-wrapper {
        order: 1;
        flex: 1;
    }
    
    .auth-buttons {
        order: 2;
        gap: 10px;
    }
    
    .menu-toggle {
        display: flex;
        order: 3;
        margin-left: 15px;
    }
    
    .primary-navigation {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 30px 20px;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        overflow-y: auto;
        justify-content: flex-start;
        align-items: stretch;
        order: 4;
        flex-basis: 100%;
    }
    
    .primary-navigation.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .primary-navigation li {
        width: 100%;
        text-align: left;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .primary-navigation a,
    .current-page {
        display: block;
        padding: 18px 20px;
        font-size: 16px;
        border-radius: 0;
        margin: 0;
        width: 100%;
        text-align: left;
        color: #fff;
        border-bottom: none;
    }
    
    .primary-navigation a:hover,
    .current-page {
        background: rgba(255, 255, 255, 0.1);
        color: #4CAF50;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        margin: 0;
        border-radius: 0;
        padding: 0;
        display: none;
    }
    
    .dropdown-content.active {
        display: block;
    }
    
    .dropdown-content li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-content a {
        font-size: 14px;
        padding: 15px 40px;
        color: rgba(255, 255, 255, 0.8);
    }
}

@media (max-width: 768px) {
	
	
	    .auth-buttons a {
        padding: 8px 16px;
        font-size: 14px;
    }
	
	
    .navigation-container {
        padding: 10px 0;
    }
    
    .site-logo {
        max-width: 150px;
        height: 40px;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .cta-heading {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
	
	
	.auth-buttons a {
        padding: 6px 12px;
        font-size: 13px;
    }
	
    .navigation-container {
        padding: 8px 0;
    }
    
    .site-logo {
        max-width: 130px;
        height: 35px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-heading {
        font-size: 24px;
    }
    
    .game-stats,
    .features-grid,
    .strategies-grid,
    .payment-methods,
    .mobile-features,
    .aviator-bonuses {
        grid-template-columns: 1fr;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 320px) {
	
	    .auth-buttons a {
        padding: 5px 10px;
        font-size: 12px;
    }
	
	
    .navigation-container {
        padding: 6px 0;
    }
    
    .site-logo {
        max-width: 110px;
        height: 30px;
    }
    
    .hero-section {
        padding: 30px 15px;
    }
    
    .content-wrapper {
        padding: 0 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .bonus-amount {
        font-size: 24px;
    }
}
