/* Import base styles from index.css */
@import url('index.css');

/* Lucky Jet specific styles */
.luckyjet-hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1) 0%, rgba(30, 144, 255, 0.05) 100%);
}

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

.luckyjet-hero-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

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

.hero-luckyjet-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.luckyjet-stat {
    text-align: center;
}

.luckyjet-stat .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00bfff;
    margin-bottom: 5px;
}

.luckyjet-stat .stat-label {
    font-size: 1rem;
    color: #ccc;
}

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

.btn-play-luckyjet {
    display: inline-block;
    background: linear-gradient(135deg, #00bfff 0%, #1e90ff 100%);
    color: #fff;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
}

.btn-play-luckyjet:hover {
    background: linear-gradient(135deg, #1e90ff 0%, #4169e1 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.4);
}

.btn-demo {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    border: 2px solid #00bfff;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    background: #00bfff;
    color: #fff;
}

/* Lucky Jet Game Preview */
.luckyjet-game-preview {
    background: linear-gradient(135deg, #001e3c 0%, #003d7a 100%);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid #00bfff;
    position: relative;
    overflow: hidden;
}

.game-screen {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #87ceeb 0%, #4682b4 100%);
    border-radius: 15px;
    overflow: hidden;
}

.sky-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cloud {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    animation: float 8s ease-in-out infinite;
}

.cloud:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cloud:nth-child(2) {
    top: 40%;
    right: 20%;
    animation-delay: 2s;
}

.cloud:nth-child(3) {
    top: 60%;
    left: 30%;
    animation-delay: 4s;
}

.jetman-trajectory {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 80%;
    height: 70%;
}

.jetman-icon {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 2.5rem;
    animation: jetman-fly 4s ease-in-out infinite;
}

.trajectory-path {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, #00bfff 0%, #1e90ff 100%);
    border-radius: 2px;
    animation: path-extend 4s ease-in-out infinite;
}

@keyframes jetman-fly {
    0% { left: 0; bottom: 0; transform: rotate(0deg); }
    50% { left: 35%; bottom: 35%; transform: rotate(15deg); }
    100% { left: 70%; bottom: 70%; transform: rotate(30deg); }
}

@keyframes path-extend {
    0% { width: 0; }
    100% { width: 70%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.multiplier-display {
    position: absolute;
    top: 30px;
    right: 30px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 10px;
}

.current-multiplier {
    font-size: 3rem;
    font-weight: bold;
    color: #00bfff;
    margin-bottom: 10px;
}

.multiplier-status {
    color: #ff6b6b;
    font-weight: 600;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.recent-multipliers {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 10px;
}

.multiplier-history {
    display: flex;
    gap: 10px;
}

.multiplier-item {
    background: rgba(0, 191, 255, 0.2);
    padding: 5px 10px;
    border-radius: 15px;
    color: #00bfff;
    font-size: 0.9rem;
    font-weight: 600;
}

/* How to Play Section */
.how-to-play-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

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

.how-to-play-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.gameplay-explanation h3 {
    color: #00bfff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.gameplay-explanation p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.gameplay-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.gameplay-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0, 191, 255, 0.3);
}

.step-number {
    background: #00bfff;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #00bfff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-content p {
    color: #ccc;
    line-height: 1.6;
}

.game-features h3 {
    color: #00bfff;
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 191, 255, 0.3);
}

.feature-icon {
    font-size: 2rem;
    min-width: 40px;
}

.feature-text h4 {
    color: #00bfff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature-text p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.comparison-intro {
    text-align: center;
    margin-bottom: 50px;
}

.comparison-intro h3 {
    color: #00bfff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.comparison-intro p {
    color: #ccc;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 191, 255, 0.3);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: rgba(0, 191, 255, 0.2);
    padding: 20px;
    font-weight: bold;
    color: #00bfff;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
    color: #ccc;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

.comparison-feature {
    font-weight: 600;
    color: #fff;
}

.comparison-luckyjet,
.comparison-aviator {
    text-align: center;
}

.comparison-luckyjet {
    color: #00bfff;
}

.comparison-aviator {
    color: #ff4500;
}

/* Strategies Section */
.strategies-section {
    padding: 80px 0;
    background: rgba(0, 191, 255, 0.05);
}

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

.strategies-intro {
    text-align: center;
    margin-bottom: 50px;
}

.strategies-intro h3 {
    color: #00bfff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.strategies-intro p {
    color: #ccc;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.strategy-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 191, 255, 0.3);
    transition: transform 0.3s ease;
}

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

.strategy-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.strategy-card h4 {
    color: #00bfff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

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

.strategy-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
}

.stat-value {
    color: #00bfff;
    font-weight: 600;
}

/* Tips Section */
.tips-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

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

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

.tip-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0, 191, 255, 0.3);
    transition: transform 0.3s ease;
}

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

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.tip-card h4 {
    color: #00bfff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.tip-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Game Features Section */
.game-features-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.features-overview {
    text-align: center;
    margin-bottom: 50px;
}

.features-overview h3 {
    color: #00bfff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.features-overview p {
    color: #ccc;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.feature-detailed {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 191, 255, 0.3);
}

.feature-detailed-icon {
    font-size: 3rem;
    min-width: 60px;
}

.feature-detailed-content h4 {
    color: #00bfff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-detailed-content p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-specs span {
    background: rgba(0, 191, 255, 0.2);
    color: #00bfff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Statistics Section */
.statistics-section {
    padding: 80px 0;
    background: rgba(0, 191, 255, 0.05);
}

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

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 191, 255, 0.3);
    transition: transform 0.3s ease;
}

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

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00bfff;
    margin-bottom: 10px;
}

.stat-label {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-description {
    color: #ccc;
    font-size: 0.9rem;
}

.multiplier-distribution {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(0, 191, 255, 0.3);
}

.multiplier-distribution h3 {
    color: #00bfff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.distribution-chart {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.distribution-bar {
    display: grid;
    grid-template-columns: 150px 1fr 80px;
    gap: 20px;
    align-items: center;
}

.distribution-range {
    color: #ccc;
    font-weight: 600;
}

.distribution-bar-fill {
    height: 25px;
    background: linear-gradient(90deg, #00bfff 0%, #1e90ff 100%);
    border-radius: 12px;
    position: relative;
}

.distribution-percent {
    color: #00bfff;
    font-weight: 600;
    text-align: center;
}

/* Lucky Jet Bonuses Section */
.luckyjet-bonuses-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

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

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

.bonus-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 191, 255, 0.3);
    transition: transform 0.3s ease;
    position: relative;
}

.bonus-card:hover {
    transform: translateY(-10px);
}

.bonus-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #00bfff;
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.bonus-card h3 {
    color: #00bfff;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.bonus-amount {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

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

.bonus-terms {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
}

.bonus-terms span {
    color: #ccc;
    font-size: 0.9rem;
}

/* FAQ Section */
.luckyjet-faq-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

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

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

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0, 191, 255, 0.3);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-question {
    color: #00bfff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-answer {
    color: #ccc;
    line-height: 1.6;
}

/* CTA Section */
.luckyjet-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.2) 0%, rgba(0, 191, 255, 0.1) 100%);
}

.luckyjet-cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 10px;
}

.luckyjet-cta-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.luckyjet-cta-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
}

.cta-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 25px;
    border: 1px solid rgba(0, 191, 255, 0.3);
}

.cta-icon {
    font-size: 1.5rem;
}

.cta-text {
    color: #ccc;
    font-weight: 600;
}

.btn-start-jet {
    display: inline-block;
    background: linear-gradient(135deg, #00bfff 0%, #1e90ff 100%);
    color: #fff;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.3);
}

.btn-start-jet:hover {
    background: linear-gradient(135deg, #1e90ff 0%, #4169e1 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 1080px) {
    .luckyjet-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-luckyjet-stats {
        justify-content: center;
    }
    
    .how-to-play-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .strategies-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .features-detailed {
        grid-template-columns: 1fr;
    }
    
    .bonuses-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .luckyjet-hero-title {
        font-size: 2.5rem;
    }
    
    .luckyjet-hero-description {
        font-size: 1rem;
    }
    
    .hero-luckyjet-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .luckyjet-stat .stat-number {
        font-size: 2rem;
    }
    
    .luckyjet-action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .strategies-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .gameplay-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .feature-detailed {
        flex-direction: column;
        text-align: center;
    }
    
    .distribution-bar {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .cta-highlights {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .luckyjet-hero-section {
        padding: 80px 0 60px;
    }
    
    .luckyjet-hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .luckyjet-cta-title {
        font-size: 2rem;
    }
    
    .game-screen {
        height: 200px;
    }
    
    .current-multiplier {
        font-size: 2rem;
    }
    
    .gameplay-step {
        padding: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .strategy-card {
        padding: 20px;
    }
    
    .tip-card {
        padding: 20px;
    }
    
    .feature-detailed {
        padding: 20px;
    }
    
    .bonus-card {
        padding: 20px;
    }
    
    .faq-item {
        padding: 20px;
    }
}
