/* اضافه کردن این استایل‌ها به انتهای فایل CSS */
/* Landing Page Styles - MOBILE FIRST SINGLE COLUMN */
.landing-page {
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, var(--bg) 0%, #02040a 100%);
}

/* Fixed Header */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 12px 20px;
    background: rgba(5, 6, 10, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    height: 60px;
}

/* زبان در سمت راست */
.header-language {
    display: flex;
    justify-content: flex-start;
}

.language-selector {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-primary);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    max-width: 100px;
    font-family: 'Arad';
}

/* دکمه‌های احراز هویت در سمت چپ */
.header-auth-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
}

.header-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 70px;
    white-space: nowrap;
}

.header-btn.btn-primary {
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    color: var(--bg);
    border: none;
    font-family: 'Arad';
}

.header-btn.btn-outline {
    background: transparent;
    border: 2px solid var(--gold-1);
    color: var(--gold-1);
    font-family: 'Arad';
}

/* Main Content - SINGLE COLUMN HORIZONTAL SLIDER */
.landing-main-content {
    height: 100vh;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    display: flex;
    padding-top: 70px;
}

.landing-section {
    min-width: 100vw;
    height: calc(100vh - 70px);
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
  direction: rtl;
    box-sizing: border-box;
    opacity: 1 !important;
    visibility: visible !important;
}

.section-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    box-sizing: border-box;
    text-align: center;
}

.section-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

/* Hero Section - MOBILE OPTIMIZED */
.hero-title {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
    padding: 0 10px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    padding: 0 15px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 10px;
    width: 100%;
    max-width: 300px;
}

.hero-feature {
    color: var(--muted);
    font-size: 0.9rem;
    text-align: center;
    padding: 6px 0;
    word-break: break-word;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    padding: 0 10px;
    width: 100%;
    max-width: 280px;
}

.hero-btn {
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    color: var(--bg);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: Arad;
}

.hero-visual {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
    margin-top: 20px;
}

.visual-container {
    position: relative;
    width: 180px;
    height: 180px;
}

.chart-animation {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,216,107,0.1), rgba(255,184,77,0.05));
    border: 2px solid rgba(255,216,107,0.2);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.chart-animation::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(135deg, rgba(255,216,107,0.2), rgba(255,184,77,0.1));
    border-radius: 0 0 15px 15px;
    animation: chartGrow 2s ease-in-out infinite alternate;
}

@keyframes chartGrow {
    from { height: 60%; }
    to { height: 75%; }
}

.profit-badge,
.users-badge {
    position: absolute;
    background: rgba(77, 255, 145, 0.1);
    border: 1px solid rgba(77, 255, 145, 0.3);
    color: var(--success);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
}

.profit-badge {
    top: 10px;
    right: -5px;
}

.users-badge {
    bottom: 20px;
    left: -5px;
    background: rgba(110, 240, 255, 0.1);
    border-color: rgba(110, 240, 255, 0.3);
    color: var(--neon);
}

/* Features Section - MOBILE OPTIMIZED */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    padding: 0 10px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: right;
    width: 100%;
}

.feature-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-content {
    flex: 1;
    text-align: right;
}

.feature-card-title {
    color: var(--gold-1);
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 600;
    word-break: break-word;
}

.feature-card-desc {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.5;
    word-break: break-word;
}

/* How It Works Section - MOBILE OPTIMIZED */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 400px;
    padding: 0 10px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: right;
    width: 100%;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    font-weight: 800;
    flex-shrink: 0;
    font-size: 1rem;
}

.step-content {
    flex: 1;
    text-align: right;
}

.step-title {
    color: var(--gold-1);
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 600;
    word-break: break-word;
}

.step-desc {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.5;
    word-break: break-word;
}

/* Stats Section - MOBILE OPTIMIZED */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 400px;
    padding: 0 10px;
}

.stat-item {
    text-align: center;
    padding: 25px 15px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 100%;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-1);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--muted);
    font-size: 0.8rem;
    word-break: break-word;
}

/* CTA Section - MOBILE OPTIMIZED */
.cta-section {
    background: linear-gradient(135deg, rgba(255,216,107,0.05), rgba(255,184,77,0.02));
}

.cta-content {
    text-align: center;
    width: 100%;
    max-width: 500px;
    padding: 0 15px;
}

.cta-title {
    font-size: 1.6rem;
    color: var(--gold-1);
    margin-bottom: 15px;
    font-weight: 700;
    word-break: break-word;
}

.cta-desc {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 30px;
    line-height: 1.6;
    word-break: break-word;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
font-family: Arad;
}

.cta-btn {
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 100%;
font-family: Arad;
}

.cta-btn.btn-primary {
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    color: var(--bg);
    border: none;
font-family: Arad;
}

.cta-btn.btn-outline {
    background: transparent;
    border: 2px solid var(--gold-1);
    color: var(--gold-1);
font-family: Arad;
}

/* Section Titles */
.section-title {
    font-size: 1.6rem;
    color: var(--gold-1);
   
    font-weight: 700;
    padding: 0 10px;
    word-break: break-word;
    text-align: center;
}

.section-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.6;
    padding: 0 15px;
   
    word-break: break-word;
    text-align: center;
}

/* Horizontal Navigation */
.horizontal-navigation {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 1000;
    background: rgba(5, 6, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 10px 15px;
    display: none;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--gold-1);
    transform: scale(1.2);
}

/* Auto Scroll Indicator */
.auto-scroll-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(5, 6, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
}

.auto-scroll-text {
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 600;
}

.auto-scroll-toggle {
    width: 35px;
    height: 18px;
    background: rgba(255,255,255,0.1);
    border-radius: 9px;
    position: relative;
    transition: all 0.3s ease;
}

.auto-scroll-toggle.active {
    background: rgba(255, 184, 77, 0.3);
}

.auto-scroll-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    background: var(--muted);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.auto-scroll-toggle.active::after {
    left: 19px;
    background: var(--gold-1);
}

/* Very Small Mobile Devices */
@media (max-width: 360px) {
    .landing-header {
        padding: 10px 15px;
        height: 55px;
    }
    
    .header-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
        min-width: 76px;
    }
    
    .landing-main-content {
        padding-top: 60px;
      
    }
    
    .landing-section {
        height: calc(100vh - 60px);
        padding: 15px 10px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-desc {
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .horizontal-navigation {
        bottom: 15px;
        padding: 8px 12px;
    }
    
    .auto-scroll-indicator {
        bottom: 15px;
        right: 15px;
        padding: 8px 12px;
    }
}

/* Desktop Styles */
@media (min-width: 769px) {
    .landing-header {
        padding: 15px 30px;
        height: 70px;
    }
    
    .header-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 100px;
    }
    
    .landing-main-content {
        padding-top: 80px;
        /*! height: calc(100vh - 80px); */
    }
    
    .landing-section {
        height: calc(100vh - 80px);
        padding: 40px 30px;
    }
    
    .section-container {
        max-width: 1200px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        max-width: 400px;
    }
    
    .hero-btn {
        width: auto;
        min-width: 160px;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: 30px;
    }
    
    .visual-container {
        width: 250px;
        height: 250px;
    }
    
    .features-grid {
        max-width: 500px;
    }
    
    .steps-container {
        max-width: 500px;
    }
    
    .stats-grid {
        max-width: 600px;
        gap: 25px;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: row;
        max-width: 400px;
    }
    
    .cta-btn {
        width: auto;
        min-width: 160px;
    }
    
    .horizontal-navigation {
        /*! bottom: 30px; */
    }
    
    .auto-scroll-indicator {
        bottom: 30px;
        right: 30px;
    }
}

/* Hide scrollbar */
.landing-main-content {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.landing-main-content::-webkit-scrollbar {
    display: none;
}

/* Text direction for Persian */
.hero-title,
.hero-subtitle,
.section-title,
.section-desc,
.cta-title,
.cta-desc,
.hero-feature,
.feature-card-title,
.feature-card-desc,
.step-title,
.step-desc,
.stat-label {
    direction: rtl;
    text-align: center;
    word-break: break-word;
    overflow-wrap: break-word;
}
/* Bubble Animation Styles */
.bubble-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: linear-gradient(135deg, rgba(255, 216, 107, 0.15), rgba(255, 184, 77, 0.08));
    border: 1px solid rgba(255, 216, 107, 0.2);
    border-radius: 50%;
    animation: floatUp linear infinite;
    opacity: 0.6;
}

.bubble::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 25px;
    height: 25px;
    left: 25%;
    animation-duration: 10s;
    animation-delay: 1s;
}

.bubble:nth-child(3) {
    width: 35px;
    height: 35px;
    left: 45%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.bubble:nth-child(4) {
    width: 30px;
    height: 30px;
    left: 65%;
    animation-duration: 9s;
    animation-delay: 0.5s;
}

.bubble:nth-child(5) {
    width: 20px;
    height: 20px;
    left: 80%;
    animation-duration: 11s;
    animation-delay: 1.5s;
}

.bubble:nth-child(6) {
    width: 45px;
    height: 45px;
    left: 15%;
    animation-duration: 14s;
    animation-delay: 3s;
}

.bubble:nth-child(7) {
    width: 28px;
    height: 28px;
    left: 55%;
    animation-duration: 8.5s;
    animation-delay: 2.5s;
}

.bubble:nth-child(8) {
    width: 32px;
    height: 32px;
    left: 35%;
    animation-duration: 13s;
    animation-delay: 1s;
}

.bubble:nth-child(9) {
    width: 22px;
    height: 22px;
    left: 70%;
    animation-duration: 9.5s;
    animation-delay: 3.5s;
}

.bubble:nth-child(10) {
    width: 38px;
    height: 38px;
    left: 5%;
    animation-duration: 11.5s;
    animation-delay: 0.8s;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-120vh) translateX(20px) scale(1.1);
        opacity: 0;
    }
}

/* برای موبایل */
@media (max-width: 768px) {
    .bubble {
        opacity: 0.4;
    }
    
    .bubble:nth-child(1) {
        width: 30px;
        height: 30px;
    }
    
    .bubble:nth-child(2) {
        width: 20px;
        height: 20px;
    }
    
    .bubble:nth-child(3) {
        width: 25px;
        height: 25px;
    }
    
    .bubble:nth-child(4) {
        width: 22px;
        height: 22px;
    }
    
    .bubble:nth-child(5) {
        width: 15px;
        height: 15px;
    }
    
    .bubble:nth-child(6) {
        width: 35px;
        height: 35px;
    }
    
    .bubble:nth-child(7) {
        width: 18px;
        height: 18px;
    }
    
    .bubble:nth-child(8) {
        width: 24px;
        height: 24px;
    }
    
    .bubble:nth-child(9) {
        width: 16px;
        height: 16px;
    }
    
    .bubble:nth-child(10) {
        width: 28px;
        height: 28px;
    }
    
    @keyframes floatUp {
        0% {
            transform: translateY(0) translateX(0) scale(1);
            opacity: 0;
        }
        10% {
            opacity: 0.4;
        }
        90% {
            opacity: 0.2;
        }
        100% {
            transform: translateY(-100vh) translateX(15px) scale(1.1);
            opacity: 0;
        }
    }
}
/* اضافه کردن این استایل‌ها به انتهای فایل CSS */
/* اضافه کردن این استایل‌ها به انتهای فایل CSS */

/* Financial Chart Animation */
.financial-charts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.1;
}

.chart-line {
    position: absolute;
    /*! background: linear-gradient(90deg, transparent, rgba(255, 216, 107, 0.3), transparent); */
    height: 2px;
    animation: chartMove 8s linear infinite;
}

.chart-line:nth-child(1) {
    top: 20%;
    width: 80%;
    left: 10%;
    animation-delay: 0s;
    /*! background: linear-gradient(90deg, transparent, rgba(77, 255, 145, 0.3), transparent); */
}

.chart-line:nth-child(2) {
    top: 40%;
    width: 70%;
    left: 15%;
    animation-delay: 2s;
    background: linear-gradient(90deg, transparent, rgba(255, 216, 107, 0.3), transparent);
}

.chart-line:nth-child(3) {
    top: 60%;
    width: 85%;
    left: 5%;
    animation-delay: 4s;
    background: linear-gradient(90deg, transparent, rgba(255, 87, 87, 0.3), transparent);
}

.chart-line:nth-child(4) {
    top: 80%;
    width: 75%;
    left: 12%;
    animation-delay: 6s;
    background: linear-gradient(90deg, transparent, rgba(110, 240, 255, 0.3), transparent);
}

@keyframes chartMove {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Candlestick Patterns */
.candlesticks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

.candlestick {
    position: absolute;
    width: 3px;
    background: rgba(255, 216, 107, 0.5);
    animation: candlestickFade 4s ease-in-out infinite;
}

.candlestick::before {
    content: '';
    position: absolute;
    left: -1px;
    width: 5px;
    height: 2px;
    background: inherit;
}

.candlestick.green {
    background: rgba(77, 255, 145, 0.5);
}

.candlestick.red {
    background: rgba(255, 87, 87, 0.5);
}

/* موقعیت‌های مختلف برای کندل‌ها */
.candlestick:nth-child(1) { top: 25%; left: 15%; height: 30px; animation-delay: 0s; }
.candlestick:nth-child(2) { top: 35%; left: 25%; height: 45px; animation-delay: 0.5s; }
.candlestick:nth-child(3) { top: 45%; left: 35%; height: 25px; animation-delay: 1s; }
.candlestick:nth-child(4) { top: 55%; left: 45%; height: 50px; animation-delay: 1.5s; }
.candlestick:nth-child(5) { top: 65%; left: 55%; height: 35px; animation-delay: 2s; }
.candlestick:nth-child(6) { top: 75%; left: 65%; height: 40px; animation-delay: 2.5s; }
.candlestick:nth-child(7) { top: 30%; left: 75%; height: 28px; animation-delay: 3s; }
.candlestick:nth-child(8) { top: 50%; left: 85%; height: 42px; animation-delay: 3.5s; }

/* رنگ‌های سبز و قرمز برای کندل‌ها */
.candlestick:nth-child(1),
.candlestick:nth-child(4),
.candlestick:nth-child(6),
.candlestick:nth-child(8) {
    background: rgba(77, 255, 145, 0.5);
}

.candlestick:nth-child(2),
.candlestick:nth-child(3),
.candlestick:nth-child(5),
.candlestick:nth-child(7) {
    background: rgba(255, 87, 87, 0.5);
}

@keyframes candlestickFade {
    0%, 100% {
        opacity: 0.2;
        transform: scaleY(0.8);
    }
    50% {
        opacity: 0.6;
        transform: scaleY(1.2);
    }
}

/* Price Fluctuation Dots */
.price-dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.2;
}

.price-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: pricePulse 3s ease-in-out infinite;
}

.price-dot.green {
    background: rgba(77, 255, 145, 0.6);
    box-shadow: 0 0 10px rgba(77, 255, 145, 0.4);
}

.price-dot.red {
    background: rgba(255, 87, 87, 0.6);
    box-shadow: 0 0 10px rgba(255, 87, 87, 0.4);
}

.price-dot.gold {
    background: rgba(255, 216, 107, 0.6);
    box-shadow: 0 0 10px rgba(255, 216, 107, 0.4);
}

/* موقعیت‌های مختلف برای نقطه‌های قیمت */
.price-dot:nth-child(1) { top: 15%; left: 20%; animation-delay: 0s; }
.price-dot:nth-child(2) { top: 25%; left: 40%; animation-delay: 0.3s; }
.price-dot:nth-child(3) { top: 35%; left: 60%; animation-delay: 0.6s; }
.price-dot:nth-child(4) { top: 45%; left: 80%; animation-delay: 0.9s; }
.price-dot:nth-child(5) { top: 55%; left: 30%; animation-delay: 1.2s; }
.price-dot:nth-child(6) { top: 65%; left: 50%; animation-delay: 1.5s; }
.price-dot:nth-child(7) { top: 75%; left: 70%; animation-delay: 1.8s; }
.price-dot:nth-child(8) { top: 85%; left: 25%; animation-delay: 2.1s; }
.price-dot:nth-child(9) { top: 20%; left: 65%; animation-delay: 2.4s; }
.price-dot:nth-child(10) { top: 40%; left: 35%; animation-delay: 2.7s; }

/* رنگ‌بندی نقطه‌های قیمت */
.price-dot:nth-child(1),
.price-dot:nth-child(4),
.price-dot:nth-child(6),
.price-dot:nth-child(9) {
    background: rgba(77, 255, 145, 0.6);
}

.price-dot:nth-child(2),
.price-dot:nth-child(5),
.price-dot:nth-child(8) {
    background: rgba(255, 87, 87, 0.6);
}

.price-dot:nth-child(3),
.price-dot:nth-child(7),
.price-dot:nth-child(10) {
    background: rgba(255, 216, 107, 0.6);
}

@keyframes pricePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }
}

/* برای موبایل */
@media (max-width: 768px) {
    .financial-charts {
        opacity: 0.08;
    }
    
    .candlesticks {
        opacity: 0.1;
    }
    
    .price-dots {
        opacity: 0.15;
    }
    
    .chart-line {
        height: 1px;
    }
    
    .candlestick {
        width: 2px;
    }
    
    .price-dot {
        width: 3px;
        height: 3px;
    }
}

/* تنظیم z-index برای سایر المان‌ها */
.landing-header {
    z-index: 1000;
}

.landing-main-content {
    z-index: 2;
    position: relative;
}

.horizontal-navigation {
    z-index: 1000;
}

.auto-scroll-indicator {
    z-index: 1000;
}

.bubble-container {
    z-index: 1;
}
/* اضافه کردن این استایل‌ها به انتهای فایل CSS */
 
/* Main Chart Line Animation */
.main-chart-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

.chart-path {
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 80%;
    height: 60%;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawChart 20s ease-in-out infinite;
}

.chart-line path {
    stroke: rgba(255, 216, 107, 0.6);
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.chart-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.chart-fill path {
    fill: url(#chartGradient);
    opacity: 0.3;
}

/* Chart Points */
.chart-points {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.chart-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 216, 107, 0.8);
    border: 2px solid rgba(255, 184, 77, 0.6);
    border-radius: 50%;
    animation: pointPulse 3s ease-in-out infinite;
    transform: translate(-50%, 50%);
}

.chart-point:nth-child(1) { left: 10%; bottom: 20%; animation-delay: 0s; }
.chart-point:nth-child(2) { left: 25%; bottom: 45%; animation-delay: 0.5s; }
.chart-point:nth-child(3) { left: 40%; bottom: 30%; animation-delay: 1s; }
.chart-point:nth-child(4) { left: 55%; bottom: 60%; animation-delay: 1.5s; }
.chart-point:nth-child(5) { left: 70%; bottom: 40%; animation-delay: 2s; }
.chart-point:nth-child(6) { left: 85%; bottom: 75%; animation-delay: 2.5s; }

@keyframes drawChart {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0;
    }
    20% {
        opacity: 0.8;
    }
    80% {
        opacity: 0.8;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

@keyframes pointPulse {
    0%, 100% {
        transform: translate(-50%, 50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, 50%) scale(1.3);
        opacity: 1;
    }
}

/* برای موبایل */
@media (max-width: 768px) {
    .main-chart-line {
        opacity: 0.2;
    }
    
    .chart-path {
        bottom: 25%;
        height: 50%;
    }
    
    .chart-line path {
        stroke-width: 2;
    }
    
    .chart-point {
        width: 6px;
        height: 6px;
    }
}