/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #F8FAFC;
    background: linear-gradient(135deg, #0F2027 0%, #1E293B 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: #F59E0B;
}

h3 {
    font-size: 1.5rem;
    color: #10B981;
}

h4 {
    font-size: 1.2rem;
    color: #F8FAFC;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: #94A3B8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
    min-height: 44px;
}

.btn-primary {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.btn-secondary {
    background: transparent;
    color: #EF4444;
    border: 2px solid #EF4444;
}

.btn-secondary:hover {
    background: #EF4444;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    min-height: 60px;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    background: rgba(15, 32, 39, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid #10B981;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.games-table.aviator .table-header,
.games-table.aviator .table-row {
    grid-template-columns: 1fr 1fr;
}

.nav-link {
    color: #F8FAFC;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-link:hover,
.nav-link.active {
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #10B981;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Main Content */
.main {
    margin-top: 100px;
}

header .container {
    max-width: unset;
}

.hero h1, .hero p {
    text-align: left;
}

section .container {
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(15, 32, 39, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    color: #F8FAFC;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #10B981, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #F59E0B;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #94A3B8;
    margin-bottom: 1rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #F8FAFC;
}

.feature-item i {
    color: #10B981;
    font-size: 1.2rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Sections */
.info-section,
.games-section,
.strategies-section,
.why-section,
.audience-section,
.cta-section {
    padding: 4rem 0;
}

.info-section h2,
.games-section h2,
.strategies-section h2,
.why-section h2,
.audience-section h2,
.cta-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

/* Crash Games Visual */
.crash-games-visual {
    text-align: center;
    margin: 2rem 0;
}

.crash-games-visual img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.crash-games-visual img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    color: #10B981;
    font-size: 1.5rem;
}

/* Feature Numbers for How It Works */
.feature-number {
    background: linear-gradient(135deg, #10B981, #F59E0B);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    margin-bottom: 0.5rem;
}

.feature-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Games Table */
.games-table {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    background: #10B981;
    color: white;
    font-weight: 600;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.table-row:nth-child(even) {
    background: rgba(16, 185, 129, 0.05);
}

.table-cell {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.table-header .table-cell {
    justify-content: center;
}

/* Game Cards */
.game-details {
    padding: 2rem 0;
}

.game-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.game-card.reverse {
    direction: rtl;
}

.game-card.reverse > * {
    direction: ltr;
}

.game-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.game-content h3 {
    margin-bottom: 1.5rem;
}

.game-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    margin: 1.5rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #F8FAFC;
}

.feature i {
    color: #10B981;
}

.game-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Strategies Table */
.strategies-table {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.strategies-table .table-header {
    grid-template-columns: 1fr 1fr 1fr;
}

.strategies-table .table-row {
    grid-template-columns: 1fr 1fr 1fr;
}

/* Pro Tip */
.pro-tip {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 2px solid #F59E0B;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.pro-tip h3 {
    color: #F59E0B;
    margin-bottom: 1rem;
}

.pro-tip h3 i {
    margin-right: 0.5rem;
}

.pro-tip p {
    color: #F8FAFC;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Technique Cards */
.technique-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    transition: transform 0.3s ease;
}

.technique-card:hover {
    transform: translateY(-5px);
    border-color: #10B981;
}

.technique-card h3 {
    color: #10B981;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(16, 185, 129, 0.3);
    padding-bottom: 0.5rem;
}

.technique-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;  
    align-items: center;
    padding-left: 0;
}

.technique-card li {
    color: #F8FAFC;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.technique-card li:before {
    content: '✈️';
    position: absolute;
    left: 0;
    top: 0;
}

/* Affiliate Content */
.affiliate-content h3 {
    color: #F59E0B;
    margin: 1.5rem 0 1rem 0;
}

.affiliate-content ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;  
    align-items: center;
    margin-bottom: 2rem;
}

.affiliate-content li {
    color: #F8FAFC;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.affiliate-content li:before {
    content: '🚀';
    position: absolute;
    left: 0;
    top: 0;
}

/* CTA Subtitle */
.cta-subtitle {
    text-align: center;
    color: #F59E0B;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.benefit-item i {
    color: #F59E0B;
    font-size: 1.5rem;
}

/* Audience List */
.audience-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.audience-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.audience-item i {
    color: #EF4444;
    font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #0F2027;
    padding: 3rem 0 1rem;
    border-top: 2px solid #10B981;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #10B981;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #10B981;
}

.footer-bottom {
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.disclaimer {
    margin-bottom: 1rem;
}

.disclaimer p {
    color: #EF4444;
    font-size: 0.9rem;
}

.copyright p {
    color: #94A3B8;
    font-size: 0.9rem;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 32, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-top: 2px solid #10B981;
    z-index: 999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero .container {
        gap: 2rem;
    }
    
    .game-card {
        gap: 2rem;
        padding: 1.5rem;
    }
}

@media (max-width: 1320px) {
        .hero {
            padding-top: 6rem !important;
        }




        .nav {
            display: none;
            position: absolute;
            top: 101%;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(15, 32, 39, 1);
        }
        
        .nav.active {
            display: block;
        }
        
        .nav-menu {
            flex-direction: column;
            gap: 0;
            padding: 1rem;
        }
        
        .nav-link {
            padding: 1rem;
            border-radius: 6px;
            display: block;
        }
        
        .mobile-menu-toggle {
            display: flex;
        }
        
        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(4px, 4px);
        }
        
        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
}

@media (max-width: 768px) {
    
    /* Hero Section */
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer {
        padding-bottom: 6rem !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    /* Game Cards */
    .game-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .game-card.reverse {
        direction: ltr;
    }
    
    /* Tables */
    .games-table,
    .strategies-table {
        overflow-x: auto;
    }
    
    .table-header,
    .table-row {
        min-width: 600px;
    }
    
    /* Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobile Sticky CTA */
    .mobile-sticky-cta {
        display: block;
    }
    
    .main {
        margin-bottom: 80px;
    }
    
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    /* Spacing */
    .hero,
    .info-section,
    .games-section,
    .strategies-section,
    .why-section,
    .audience-section,
    .cta-section {
        padding: 2rem 0;
    }
    
    .game-card {
        margin: 2rem 0;
        padding: 1rem;
    }
    
    /* Feature Cards */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-number {
        align-self: center;
    }
    
    /* Crash Games Visual */
    .crash-games-visual {
        margin: 1.5rem 0;
    }
    
    .crash-games-visual img {
        max-width: 100%;
    }
}

@media (max-width: 561px) {
    .footer-content {
        text-align: center;
    }    
}

@media (max-width: 678px) {
    .header-buttons {
        width: 100%;
        justify-content: center;
        order: 3;
        margin-top: 15px;
    }


    .header-content {
        flex-wrap: wrap;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }

    .header-buttons a {
        font-size: 12px !important;
    }

    
    .header-buttons i {
        display: none;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .features-grid,
    .benefits-grid,
    .audience-list {
        grid-template-columns: 1fr;
    }
    
    .game-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .game-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .technique-card {
        padding: 1.5rem;
    }
    
    .pro-tip {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.btn-primary {
    animation: pulse 2s infinite;
}

/* Hover Effects */
.feature-card:hover,
.benefit-item:hover,
.audience-item:hover,
.technique-card:hover {
    border-color: #10B981;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.2);
}

/* Focus States */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #F59E0B;
    outline-offset: 2px;
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .mobile-sticky-cta,
    .btn {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .main {
        margin-top: 0;
    }
} 