/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background: linear-gradient(135deg, #0D1B2A 0%, #1B263B 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-image img {
    max-width: 800px;
    width: 100%;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 1.8rem;
    color: #FCA311;
    text-align: center;
}

h2 {
    font-size: 1.5rem;
    color: #3A86FF;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.2rem;
    color: #2EC4B6;
}

p {
    margin-bottom: 1rem;
    color: #FFFFFF;
}

blockquote {
    background: rgba(252, 163, 17, 0.1);
    border-left: 4px solid #FCA311;
    padding: 1rem;
    margin: 1rem 0;
    font-style: italic;
    border-radius: 4px;
}

cite {
    font-style: normal;
    color: #778DA9;
    font-size: 0.9rem;
}

/* 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: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #FCA311 0%, #E69500 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(252, 163, 17, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E69500 0%, #CC8500 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 163, 17, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #3A86FF 0%, #2563EB 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(58, 134, 255, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 134, 255, 0.4);
}

.btn-hero {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 12px;
}

.btn-center {
    display: block;
    text-wrap: wrap;
    margin: 2rem auto;
    width: fit-content;
}

.btn-hero {
    text-wrap: wrap;
}

/* Header */
.header {
    background: rgba(27, 38, 59, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(65, 90, 119, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    height: 40px;
    width: auto;
}

.header-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Hero Section */
.hero {
    padding: 3rem 0;
    text-align: center;
    background: linear-gradient(135deg, #0D1B2A 0%, #1B263B 50%, #415A77 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="gradient" cx="50%" cy="50%"><stop offset="0%" style="stop-color:rgba(252,163,17,0.1)"/><stop offset="100%" style="stop-color:rgba(252,163,17,0)"/></radialGradient></defs><circle cx="50" cy="50" r="50" fill="url(%23gradient)"/></svg>') center/cover;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image {
    margin: 2rem 0;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(252, 163, 17, 0.2);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #2EC4B6;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-size: 1.3rem;
    color: #FCA311;
    margin-bottom: 2rem;
}

.hero-features {
    margin: 2rem 0;
}

.hero-features p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #FFFFFF;
}

.hero-features i {
    color: #2EC4B6;
}

/* Sections */
section {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(65, 90, 119, 0.2);
}

.section-content {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    margin: 1rem 0;
}

/* What Is Section */
.what-is {
    background: rgba(27, 38, 59, 0.3);
}

.what-is ul {
    list-style: none;
    padding-left: 0;
}

.what-is li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.what-is li::before {
    content: '✈️';
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* How to Play */
.steps-grid {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    background: rgba(27, 38, 59, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(65, 90, 119, 0.3);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
    border-color: #FCA311;
    box-shadow: 0 8px 25px rgba(252, 163, 17, 0.2);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FCA311 0%, #E69500 100%);
    color: #FFFFFF;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step-icon {
    font-size: 2rem;
    color: #3A86FF;
    margin-bottom: 1rem;
}

.features-list {
    margin: 2rem 0;
    text-align: center;
}

.features-list p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.features-list i {
    color: #2EC4B6;
}

/* Strategies */
.strategies-grid {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

.strategy {
    background: rgba(27, 38, 59, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(65, 90, 119, 0.3);
    transition: all 0.3s ease;
}

.strategy:hover {
    border-color: #2EC4B6;
    box-shadow: 0 8px 25px rgba(46, 196, 182, 0.2);
}

.strategy h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.strategy ul {
    list-style: none;
    padding-left: 0;
}

.strategy li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.strategy li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FCA311;
    font-weight: bold;
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: rgba(27, 38, 59, 0.6);
    border-radius: 8px;
    overflow: hidden;
    margin: 0;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(65, 90, 119, 0.3);
    white-space: nowrap;
}

th {
    background: rgba(58, 134, 255, 0.2);
    color: #3A86FF;
    font-weight: 600;
}

tbody tr:hover {
    background: rgba(252, 163, 17, 0.1);
}

/* Features Grid */
.features-grid {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

.feature {
    background: rgba(27, 38, 59, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(65, 90, 119, 0.3);
}

.feature h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature ul {
    list-style: none;
    padding-left: 0;
}

.feature li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.feature li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2EC4B6;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Movement Text */
.movement-text {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(252, 163, 17, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(252, 163, 17, 0.3);
}

/* Success Story */
.story-content {
    margin-top: 2rem;
}

.story-section {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(27, 38, 59, 0.6);
    border-radius: 12px;
    border-left: 4px solid #2EC4B6;
}

.story-section h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #3A86FF;
    margin-bottom: 1rem;
}

.takeaways-grid {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.takeaway {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(46, 196, 182, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(46, 196, 182, 0.3);
}

.takeaway i {
    color: #2EC4B6;
    font-size: 1.2rem;
}

/* Reviews */
.reviews-grid {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

.review {
    background: rgba(27, 38, 59, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(65, 90, 119, 0.3);
    text-align: center;
}

.stars {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.stars .fas {
    color: #FCA311;
}

.stars .far {
    color: #778DA9;
}

/* FAQ */
.faq-grid {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.faq-item {
    background: rgba(27, 38, 59, 0.6);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(65, 90, 119, 0.3);
}

.faq-item h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2EC4B6;
    margin-bottom: 0.5rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #1B263B 0%, #415A77 100%);
    text-align: center;
    padding: 4rem 0;
}

.final-cta h2 {
    color: #FCA311;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #000000;
    text-align: center;
    padding: 2rem 0;
    color: #778DA9;
}

/* Responsive Design - Mobile First */

/* Small phones (up to 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-hero {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .header-buttons {
        justify-content: center;
    }
    
    .logo {
        height: 35px;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .steps-grid {
        gap: 1rem;
    }
    
    .step {
        padding: 1rem;
    }
    
    .strategies-grid {
        gap: 1rem;
    }
    
    .strategy {
        padding: 1.5rem;
    }
    
    .features-grid {
        gap: 1rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .story-section {
        padding: 1.5rem;
    }
    
    .reviews-grid {
        gap: 1rem;
    }
    
    .review {
        padding: 1.5rem;
    }
    
    .takeaways-grid {
        gap: 0.75rem;
    }
    
    .takeaway {
        padding: 0.75rem;
    }
    
    table {
        font-size: 0.85rem;
    }
    
    th, td {
        padding: 0.75rem 0.5rem;
    }
    
    .final-cta h2 {
        font-size: 1.5rem;
    }
    
    /* Mobile table optimizations */
    .table-wrapper {
        margin: 1rem 0;
        border-radius: 6px;
    }
    
    table {
        min-width: 500px;
        font-size: 0.85rem;
    }
    
    th, td {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .strategy-table table {
        min-width: 700px;
    }
    
    .comparison-table table {
        min-width: 550px;
    }
    
    .why-works-table table {
        min-width: 450px;
    }
}

/* Tablets (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .strategies-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .takeaways-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Small desktops (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .section-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .strategies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .takeaways-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large desktops (1025px and up) */
@media (min-width: 1025px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .strategies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .takeaways-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .final-cta h2 {
        font-size: 2.5rem;
    }
}

/* Extra large screens (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-tagline {
        font-size: 1.7rem;
    }
    
    .final-cta h2 {
        font-size: 3rem;
    }
}

/* Accessibility and Performance */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
a:focus {
    outline: 2px solid #FCA311;
    outline-offset: 2px;
}

/* Loading optimization */
img {
    max-width: 100%;
    height: auto;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background-color: rgba(252, 163, 17, 0.3);
    color: #FFFFFF;
} 