/* 
  Main Colors:
  - Primary: #4F46E5 (Indigo)
  - Secondary: #FF6B35 (Orange)
  - Accent: #10B981 (Emerald)
  - Light BG: #F9FAFB (Light Gray)
  - Dark Text: #111827 (Dark Gray)
  - Light Text: #F9FAFB (Light Gray)
  - Gradient: Linear gradient from #4F46E5 to #10B981
*/

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', sans-serif;
    color: #111827;
    background-color: #F9FAFB;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #4F46E5;
    transition: all 0.3s ease;
}

a:hover {
    color: #3730A3;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style-type: none;
}

.FlyingMoney-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Header Styles */
.FlyingMoney-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.FlyingMoney-header .FlyingMoney-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.FlyingMoney-logo a{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    
}

.FlyingMoney-logo img {
    height: 50px;
    margin-right: 10px;
}

.FlyingMoney-nav {
    display: flex;
}

.FlyingMoney-navList {
    display: flex;
    gap: 2.5rem;
}

.FlyingMoney-navItem a {
    color: #111827;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
}

.FlyingMoney-navItem a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #4F46E5 0%, #10B981 100%);
    transition: width 0.3s ease;
}

.FlyingMoney-navItem a:hover:after,
.FlyingMoney-active a:after {
    width: 100%;
}

.FlyingMoney-mobileMenuToggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.FlyingMoney-mobileMenuToggle span {
    width: 30px;
    height: 3px;
    background-color: #111827;
    transition: all 0.3s ease;
}

/* Page Header */
.FlyingMoney-pageHeader {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #F9FAFB 0%, #EEF2FF 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.FlyingMoney-pageHeaderBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.FlyingMoney-pageHeaderShape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.FlyingMoney-pageHeaderShape1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    top: -200px;
    right: -100px;
    filter: blur(50px);
}

.FlyingMoney-pageHeaderShape2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(79, 70, 229, 0.2) 100%);
    bottom: -150px;
    left: 10%;
    filter: blur(40px);
}

.FlyingMoney-pageTitle {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #4F46E5, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.FlyingMoney-pageDescription {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Guide Navigation */
.FlyingMoney-guideNav {
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 80px;
    z-index: 90;
    padding: 1rem 0;
}

.FlyingMoney-guideNavList {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.FlyingMoney-guideNavItem a {
    color: #111827;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.FlyingMoney-guideNavItem a:hover {
    background-color: rgba(79, 70, 229, 0.1);
    color: #4F46E5;
}

/* Guide Sections */
.FlyingMoney-guideSection {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.FlyingMoney-guideSectionAlt {
    background-color: #F9FAFB;
}

.FlyingMoney-guideSectionHeader {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.FlyingMoney-guideSectionIcon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.FlyingMoney-guideSectionIcon i {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #4F46E5, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.FlyingMoney-guideSectionTitle {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.FlyingMoney-guideSectionSubtitle {
    font-size: 1.2rem;
    color: #4B5563;
    max-width: 700px;
    margin: 0 auto;
}

/* Guide Steps */
.FlyingMoney-guideSteps {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.FlyingMoney-guideStep {
    display: flex;
    align-items: center;
    gap: 60px;
}

.FlyingMoney-guideStepReverse {
    flex-direction: row-reverse;
}

.FlyingMoney-guideStepImage {
    flex: 1;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.FlyingMoney-guideStepImage::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    pointer-events: none;
}

.FlyingMoney-guideStepContent {
    flex: 1;
    position: relative;
}

.FlyingMoney-guideStepNumber {
    font-size: 5rem;
    font-weight: 800;
    position: absolute;
    top: -60px;
    left: -20px;
    opacity: 0.1;
    color: #4F46E5;
    z-index: -1;
}

.FlyingMoney-guideStepTitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.FlyingMoney-guideStepText {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4B5563;
}

.FlyingMoney-guideStepTips {
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.FlyingMoney-guideStepTip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.FlyingMoney-guideStepTip:last-child {
    margin-bottom: 0;
}

.FlyingMoney-guideStepTip i {
    color: #10B981;
    margin-top: 5px;
}

/* Requirements Grid */
.FlyingMoney-requirementsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.FlyingMoney-requirementCard {
    background-color: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.FlyingMoney-requirementCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.FlyingMoney-requirementIcon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.FlyingMoney-requirementIcon i {
    font-size: 2rem;
    background: linear-gradient(90deg, #4F46E5, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.FlyingMoney-requirementTitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #111827;
}

.FlyingMoney-requirementText {
    color: #4B5563;
}

/* Eligibility Box */
.FlyingMoney-eligibilityBox {
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    border-radius: 16px;
    padding: 40px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.3);
}

.FlyingMoney-eligibilityTitle {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.FlyingMoney-eligibilityList {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.FlyingMoney-eligibilityItem {
    display: flex;
    align-items: center;
    gap: 15px;
}

.FlyingMoney-eligibilityItem i {
    color: #fff;
    font-size: 1.2rem;
}

/* App Features */
.FlyingMoney-appFeatures {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.FlyingMoney-appFeature {
    display: flex;
    align-items: center;
    gap: 60px;
}

.FlyingMoney-appFeatureReverse {
    flex-direction: row-reverse;
}

.FlyingMoney-appFeatureImage {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.FlyingMoney-appFeatureImage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    pointer-events: none;
}

.FlyingMoney-appFeatureContent {
    flex: 1;
}

.FlyingMoney-appFeatureTitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.FlyingMoney-appFeatureText {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4B5563;
}

.FlyingMoney-appFeatureTips {
    background-color: #F3F4F6;
    border-radius: 12px;
    padding: 1.5rem;
}

.FlyingMoney-appFeatureTip {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #4B5563;
}

.FlyingMoney-appFeatureTip:last-child {
    margin-bottom: 0;
}

.FlyingMoney-appFeatureTip::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(90deg, #4F46E5, #10B981);
}

/* Security Tips */
.FlyingMoney-securityTips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.FlyingMoney-securityTip {
    background-color: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.FlyingMoney-securityTip:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.FlyingMoney-securityTipIcon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.FlyingMoney-securityTipIcon i {
    font-size: 1.5rem;
    background: linear-gradient(90deg, #4F46E5, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.FlyingMoney-securityTipTitle {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #111827;
}

.FlyingMoney-securityTipText {
    color: #4B5563;
    font-size: 1rem;
}

/* Button Styles */
.FlyingMoney-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-family: 'Prompt', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.FlyingMoney-primaryButton {
    background: linear-gradient(90deg, #4F46E5 0%, #10B981 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.FlyingMoney-primaryButton:hover {
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
    transform: translateY(-3px);
    color: #fff;
}

.FlyingMoney-secondaryButton {
    background-color: #fff;
    color: #4F46E5;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.FlyingMoney-secondaryButton:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
    color: #4F46E5;
}

/* Footer Styles */
.FlyingMoney-footer {
    background-color: #111827;
    color: #F9FAFB;
    position: relative;
    overflow: hidden;
}

.FlyingMoney-footerTop {
    padding: 80px 0 50px;
    margin-top: auto;
    position: relative;
    width: 100%;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(79, 70, 229, 0.05) 0%, rgba(17, 24, 39, 0) 100%);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.FlyingMoney-main-content {
    flex: 1;
    padding-bottom: 120px;
}

.FlyingMoney-footerGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.FlyingMoney-footerCol {
    display: flex;
    flex-direction: column;
}

.FlyingMoney-footerLogo {
    margin-bottom: 1.5rem;
}

.FlyingMoney-footerLogo img {
    height: 50px;
}

.FlyingMoney-footerText {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.FlyingMoney-footerSocial {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.FlyingMoney-socialLink {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.FlyingMoney-socialLink:hover {
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    transform: translateY(-5px);
    color: white;
}

.FlyingMoney-footerTitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.8rem;
}

.FlyingMoney-footerTitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4F46E5 0%, #10B981 100%);
    border-radius: 2px;
}

.FlyingMoney-footerLinks {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.FlyingMoney-footerLinks li a {
    color: #9CA3AF;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
    position: relative;
}

.FlyingMoney-footerLinks li a:hover {
    color: white;
    transform: translateX(5px);
}

.FlyingMoney-footerLinks li a:hover {
    color: #F9FAFB;
}

.FlyingMoney-contactInfo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.FlyingMoney-contactInfo {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.FlyingMoney-contactItem {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.FlyingMoney-contactItem i {
    color: #4F46E5;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.FlyingMoney-contactItem span {
    color: #9CA3AF;
    font-size: 0.95rem;
    line-height: 1.6;
}

.FlyingMoney-footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.FlyingMoney-copyright {
    color: #9CA3AF;
    font-size: 0.95rem;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .FlyingMoney-pageTitle {
        font-size: 2.5rem;
    }
    
    .FlyingMoney-guideSectionTitle {
        font-size: 2rem;
    }
    
    .FlyingMoney-guideStep,
    .FlyingMoney-appFeature {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .FlyingMoney-nav {
        display: none;
    }
    
    .FlyingMoney-mobileMenuToggle {
        display: flex;
    }
    
    .FlyingMoney-navList {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        z-index: 99;
    }
    
    .FlyingMoney-navList.FlyingMoney-navActive {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .FlyingMoney-navItem {
        width: 100%;
    }
    
    .FlyingMoney-navItem a {
        display: block;
        padding: 15px 2rem;
        border-bottom: 1px solid #F3F4F6;
    }
    
    .FlyingMoney-pageTitle {
        font-size: 2rem;
    }
    
    .FlyingMoney-guideSectionTitle {
        font-size: 1.8rem;
    }
    
    .FlyingMoney-guideStep,
    .FlyingMoney-appFeature {
        flex-direction: column;
        gap: 30px;
    }
    
    .FlyingMoney-guideStepReverse,
    .FlyingMoney-appFeatureReverse {
        flex-direction: column;
    }
    
    .FlyingMoney-guideStepImage,
    .FlyingMoney-appFeatureImage {
        max-width: 100%;
    }
    
    .FlyingMoney-guideStepNumber {
        top: -40px;
        left: 0;
        font-size: 4rem;
    }
}

@media (max-width: 576px) {
    .FlyingMoney-container {
        padding: 0 1.5rem;
    }
    
    .FlyingMoney-pageTitle {
        font-size: 1.8rem;
    }
    
    .FlyingMoney-pageDescription {
        font-size: 1rem;
    }
    
    .FlyingMoney-guideSectionTitle {
        font-size: 1.5rem;
    }
    
    .FlyingMoney-guideSectionSubtitle {
        font-size: 1rem;
    }
    
    .FlyingMoney-guideNavList {
        gap: 1rem;
    }
    
    .FlyingMoney-guideNavItem a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .FlyingMoney-securityTips {
        grid-template-columns: 1fr;
    }
    
    .FlyingMoney-eligibilityList {
        grid-template-columns: 1fr;
    }
}

.FlyingMoney-backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.FlyingMoney-backToTop.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.FlyingMoney-backToTop:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.3);
}