:root {
    --bg-dark: #0B0E11;        
    --bg-card: #181A20;
    --bg-elevated: #2B3139;
    --border-color: #2B3139;
    --border-light: #474D57;
    --text-main: #EAECEF;
    --text-muted: #848E9C;
    --text-dark: #1E2329;
    
    --up-color: #0ECB81;       
    --up-glow: rgba(14, 203, 129, 0.2);
    --down-color: #F6465D;     
    --down-glow: rgba(246, 70, 93, 0.2);
    
    --gold: #FCD535;           
    --gold-hover: #F0B90B;
    
    --font-ui: 'Inter', sans-serif;
    --font-thai: 'Prompt', sans-serif;
    --font-mono: 'Roboto Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Offset for sticky navbar */
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-thai);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    padding-top: 48px; /* space for exactly 48px ticker */
}

/* Trading Grid Background */
.chart-grid {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -3;
    animation: panGrid 40s linear infinite;
}

@keyframes panGrid {
    0% { background-position: 0px 0px; }
    100% { background-position: -50px 50px; }
}

/* Real-time Ticker Wrapper */
.marquee-wrapper {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #181A20;
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    height: 48px;
    overflow: hidden;
}

.tradingview-widget-container {
    height: 100%;
}

.mono { font-family: var(--font-mono); }
.up-color { color: var(--up-color); }
.down-color { color: var(--down-color); }
.text-gold { 
    color: var(--gold); 
    text-shadow: 0 0 10px rgba(252, 213, 53, 0.3);
}
.gold-text { 
    color: var(--gold); 
    text-shadow: 0 0 10px rgba(252, 213, 53, 0.3);
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-thai);
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    border: none;
}

.w-full { width: 100%; }

.btn-gold {
    background-color: var(--gold);
    color: var(--text-dark);
}
.btn-gold:hover { background-color: var(--gold-hover); }

.btn-gold.outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}
.btn-gold.outline:hover {
    background: rgba(252, 213, 53, 0.1);
}

.btn-secondary {
    background-color: var(--bg-elevated);
    color: var(--text-main);
}
.btn-secondary:hover { background-color: var(--border-light); }
.btn-outline {
    border: 1px solid var(--border-color);
    color: var(--text-main);
}
.btn-outline:hover { background: var(--bg-elevated); }

/* Telegram special button */
.btn-telegram {
    background-color: #2AABEE;
    color: #FFF;
}
.btn-telegram:hover {
    background-color: #229ED9;
    box-shadow: 0 0 15px rgba(42, 171, 238, 0.5);
}

/* Navbar */
.navbar {
    padding: 0.75rem 0;
    background: rgba(11, 14, 17, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 48px;
    z-index: 1000;
}

@media (max-width: 768px) {
    .navbar {
        top: 0;
        padding: 0.5rem 0;
    }
    .nav-container {
        flex-direction: column;
        gap: 12px;
    }
    .nav-links {
        width: 100%;
        overflow-X: auto;
        white-space: nowrap;
        justify-content: flex-start;
        padding-bottom: 8px;
        gap: 1.5rem;
        scrollbar-width: none;
    }
    .nav-links::-webkit-scrollbar { display: none; }
    
    .nav-actions {
        width: 100%;
        justify-content: space-between !important;
    }
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-ui);
    font-weight: 800;
    font-size: 1.25rem;
    gap: 10px;
}

.logo span { color: var(--gold); }

.logo-icon {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
}
.logo-icon .bar { width: 4px; border-radius: 1px; }
.logo-icon .bar.up { height: 100%; background: var(--up-color); }
.logo-icon .bar.down { height: 50%; background: var(--down-color); }

.nav-links { display: flex; gap: 2rem; }
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 4px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--text-main); }
.nav-links a:hover::after { width: 100%; }

/* Hero */
.hero { padding: clamp(2rem, 8vw, 6rem) 0; }
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        justify-content: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta {
        justify-content: center;
    }
    .stats-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
    }
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--gold);
    background: rgba(252, 213, 53, 0.05);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.live-dot {
    width: 8px; height: 8px;
    background-color: var(--up-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--up-color);
    animation: flash 1.5s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-cta { display: flex; gap: 1rem; margin-bottom: 3rem; }

.stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
}
.stat-value .mono { font-size: 1.2rem; }
.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Terminal Mockup */
.terminal-mockup {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.terminal-mockup:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.7);
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    font-family: var(--font-mono);
}

.ticker { display: flex; gap: 12px; align-items: baseline; }
.symbol { font-weight: 700; font-size: 1.1rem; color: #fff; }
.price { font-weight: 700; font-size: 1.1rem; }
.change { font-size: 0.85rem; }

.tabs { display: flex; gap: 15px; font-size: 0.85rem; color: var(--text-muted); }
.tabs span.active { color: var(--gold); border-bottom: 2px solid var(--gold); padding-bottom: 4px; }

.terminal-body { padding: 1.5rem; }

.signal-execution { margin-bottom: 2rem; }
.signal-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--up-glow);
    color: var(--up-color);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    border: 1px solid var(--up-color);
    margin-bottom: 1.25rem;
}

.order-book {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-row {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-main);
}
.info-row .label { color: var(--text-muted); }
.dots {
    flex-grow: 1;
    border-bottom: 1px dashed var(--border-color);
    margin: 0 15px;
    position: relative; top: -4px;
}

.info-row.highlight-tp .label { color: var(--up-color); }
.info-row.highlight-sl .label { color: var(--down-color); }

/* Candlesticks */
.candlestick-chart {
    display: flex;
    height: 160px;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding-right: 15px;
    border-right: 1px solid var(--border-color);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    width: 60px;
}

.chart-area {
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
    gap: 16px;
    padding-left: 20px;
    position: relative;
}

.candle {
    width: 14px;
    position: relative;
    background-color: var(--border-light);
}
.candle.up { background-color: var(--up-color); }
.candle.down { background-color: var(--down-color); }

.wick {
    position: absolute;
    width: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: inherit;
    z-index: -1;
}

.w-40 { height: 140%; top: -20%; }
.w-50 { height: 150%; top: -20%; }
.w-60 { height: 160%; top: -30%; }
.w-70 { height: 170%; top: -30%; }
.w-90 { height: 190%; top: -40%; }

.h-20 { height: 20%; }
.h-30 { height: 30%; }
.h-40 { height: 40%; }
.h-50 { height: 50%; }
.h-75 { height: 75%; animation: growCandle 2s ease-out; }

@keyframes growCandle { from { height: 50%; } to { height: 75%; } }

.current-price-line {
    position: absolute;
    top: 0; left: 14px;
    width: 250px;
    height: 1px;
    background-color: var(--up-color);
    border-top: 1px dashed var(--up-color);
}
.pulse {
    position: absolute;
    left: -4px; top: -3px;
    width: 6px; height: 6px;
    background: var(--up-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--up-color);
    animation: flash 1s infinite;
}

/* Sections */
section { padding: 4rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; position: relative; }
.section-header h2 { 
    font-size: clamp(2rem, 5vw, 2.75rem); 
    font-weight: 800; 
    margin-bottom: 1rem; 
    letter-spacing: -0.5px;
}
.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin: 15px auto 0;
    border-radius: 2px;
}
.section-header { 
    text-align: center; 
    margin-bottom: 60px; 
    width: 100%;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p { 
    color: var(--text-muted); 
    max-width: 700px; 
    margin: 0 auto; 
    font-size: 1.1rem;
    line-height: 1.6;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}

@media (max-width: 900px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
}

.disciplines-grid { 
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px; 
    justify-content: center;
}

.ecosystem-container {
    align-items: center;
    gap: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    justify-content: center;
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.features-grid { 
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    justify-content: center;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover { 
    transform: translateY(-8px) scale(1.02); 
    border-color: var(--gold); 
    box-shadow: 0 15px 40px rgba(252, 213, 53, 0.08);
}

.feature-icon {
    font-size: 2rem;
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background: var(--bg-elevated);
}
.feature-icon.gold { color: var(--gold); }
.feature-icon.green { color: var(--up-color); }
.feature-icon.blue { color: #2AABEE; }

.feature-card h3 { 
    font-size: 1.25rem; 
    font-weight: 700;
    margin-bottom: 1rem; 
    color: #fff;
}
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Reviews */
.reviews-grid { 
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    justify-content: center;
}
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border-color: var(--border-light);
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}
.reviewer-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
}

.avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--bg-elevated);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; color: var(--gold);
    flex-shrink: 0;
    border: 1px solid rgba(252, 213, 53, 0.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.mini-broker-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    width: fit-content;
}

.mini-broker-badge .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
}

.mini-broker-badge.quotex .dot { background: #F6465D; box-shadow: 0 0 8px #F6465D; }
.mini-broker-badge.iq .dot { background: #F68310; box-shadow: 0 0 8px #F68310; }
.mini-broker-badge.pocket .dot { background: #0F62FE; box-shadow: 0 0 8px #0F62FE; }

.reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.name-line {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.reviewer-name { 
    font-weight: 700; 
    font-size: 1rem; 
    white-space: nowrap;
    color: #fff;
}
.reviewer-tier { 
    font-size: 0.8rem; 
    color: var(--gold); 
    white-space: nowrap;
}
.stars { 
    color: var(--gold); 
    font-size: 0.8rem; 
    letter-spacing: 2px;
    flex-shrink: 0;
    margin-left: 10px;
}
.review-text { font-size: 0.95rem; color: var(--text-muted); font-style: italic; line-height: 1.8;}
.profit-screenshot { 
    margin-top: 1.5rem;
    font-family: var(--font-mono); color: var(--up-color); font-size: 0.85rem; 
    background: rgba(14,203,129,0.1); padding: 5px 10px; border-radius: 4px; display: inline-block;
}

/* Pricing */
.pricing { background: #080A0C; border-top: 1px solid var(--border-color); }
.pricing-grid { 
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
    align-items: start; 
    justify-content: center;
}
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 3rem 2rem;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-light);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.pricing-card.popular {
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(252, 213, 53, 0.05);
}
.pricing-card.popular:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(252, 213, 53, 0.15);
}

.popular-badge {
    position: absolute;
    top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--gold);
    color: var(--text-dark);
    font-weight: 700; font-size: 0.8rem;
    padding: 4px 16px;
    border-radius: 4px;
}

.pricing-card h3 { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 1rem; }
.pricing-card .price { font-size: 2.25rem; font-weight: 700; margin-bottom: 2rem; }
.pricing-card .price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }

.features-list { list-style: none; margin-bottom: 2.5rem; border-top: 1px solid var(--border-color); padding-top: 1.5rem;}
.features-list li { color: var(--text-main); margin-bottom: 1rem; font-size: 0.95rem; display: flex; align-items: baseline;}
.features-list li::before { content: '→'; color: var(--gold); margin-right: 12px; font-weight: bold; }

/* Contact CTA */
.contact-section { 
    padding: 5rem 0; 
    text-align: center;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #06090c 100%);
}
.contact-box {
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    border-radius: 8px;
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}
.contact-box h2 {
    font-size: 2rem; margin-bottom: 1rem;
}
.contact-box p {
    color: var(--text-muted); margin-bottom: 2rem;
}
.tg-id {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    color: var(--gold);
    font-weight: 700;
    margin: 1rem 0 2rem;
    display: inline-block;
    background: rgba(252, 213, 53, 0.1);
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px dashed var(--gold);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    background: var(--bg-card);
}

.footer-content { display: flex; justify-content: space-between; align-items: flex-start; }
.footer-brand p { color: var(--text-muted); margin-top: 1rem; max-width: 400px; font-size: 0.9rem; }
.footer-links p { font-size: 0.8rem; text-align: right;}

@media (max-width: 768px) {
    .hero-title { font-size: 2.25rem; }
    .section-header h2 { font-size: 1.75rem; }
    
    .pricing-card { padding: 2rem 1.5rem; }
    .contact-box { padding: 2rem 1rem; }
    
    .floating-chat-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    #toast-container {
        left: 10px;
        right: 10px;
        bottom: 80px;
    }
    .trade-toast {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-container { grid-template-columns: 1fr; }
    .features-grid, .pricing-grid, .reviews-grid, .disciplines-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 2rem; }
    .marquee-wrapper { display: none; }
    body { padding-top: 0; }
    .navbar { top: 0; }
    .ecosystem-container { grid-template-columns: 1fr !important; }
}

/* Image Logo */
.logo-img, .logo-img-full {
    height: 38px;
    width: auto;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-img:hover, .logo-img-full:hover {
    transform: scale(1.12);
}

/* Video Sections */
.video-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-card));
}
.bonus-section {
    background: linear-gradient(to bottom, var(--bg-card), var(--bg-dark));
}
.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-container:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}
.video-container.bonus-video-container {
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(252, 213, 53, 0.15);
}
.video-container.bonus-video-container:hover {
    box-shadow: 0 30px 60px rgba(252, 213, 53, 0.3);
}
.promo-video {
    width: 100%;
    display: block;
    background: #000;
}

/* Supported Brokers */
.supported-brokers {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-card) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.brokers-title {
    font-size: 0.95rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.brokers-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
}

.broker-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-main);
    padding: 0.8rem 1.75rem;
    border-radius: 50px;
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.broker-badge:hover {
    transform: translateY(-5px) scale(1.08);
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    border-color: rgba(255, 255, 255, 0.15);
}

.broker-badge .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

/* Broker Brand Glow Colors */
.broker-badge.iq-option:hover { box-shadow: 0 15px 30px rgba(246, 131, 16, 0.2); border-color: rgba(246, 131, 16, 0.3); }
.broker-badge.quotex:hover { box-shadow: 0 15px 30px rgba(225, 33, 39, 0.2); border-color: rgba(225, 33, 39, 0.3); } /* Official Quotex Red */
.broker-badge.pocket:hover { box-shadow: 0 15px 30px rgba(15, 98, 254, 0.2); border-color: rgba(15, 98, 254, 0.3); }
.broker-badge.olymp:hover { box-shadow: 0 15px 30px rgba(0, 178, 104, 0.2); border-color: rgba(0, 178, 104, 0.3); }
.broker-badge.binomo:hover { box-shadow: 0 15px 30px rgba(255, 222, 0, 0.15); border-color: rgba(255, 222, 0, 0.3); }

/* Floating Chat Button */
@keyframes floatChat {
    0% { transform: translateY(0); box-shadow: 0 10px 25px rgba(42, 171, 238, 0.4); }
    50% { transform: translateY(-12px); box-shadow: 0 20px 30px rgba(42, 171, 238, 0.5); }
    100% { transform: translateY(0); box-shadow: 0 10px 25px rgba(42, 171, 238, 0.4); }
}

.floating-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #2AABEE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    animation: floatChat 3s ease-in-out infinite;
}

.floating-chat-btn:hover {
    animation: none;
    transform: translateY(-8px) scale(1.1);
    background-color: #229ED9;
    box-shadow: 0 15px 35px rgba(42, 171, 238, 0.7);
}
.discipline-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}
.discipline-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.floating-chat-btn svg {
    margin-right: 2px;
}

/* Toast Fake Notification */
#toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none; /* Make clicks pass through */
}

.trade-toast {
    background: var(--bg-card);
    border-left: 4px solid var(--up-color);
    padding: 12px 18px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    color: var(--text-main);
    transform: translateX(-150%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.6s ease;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trade-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-icon {
    font-size: 22px;
    background: rgba(0, 178, 104, 0.1);
    color: var(--up-color);
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 178, 104, 0.2);
}

.toast-content {
    display: flex;
    flex-direction: column;
}

.toast-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.toast-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}
.toast-desc span.profit {
    color: var(--up-color);
    font-weight: 600;
}

/* Mobile Adjustments for Toasts */
@media (max-width: 768px) {
    #toast-container {
        left: 20px;
        right: auto;
        bottom: 100px;
    }
    .trade-toast {
        min-width: unset;
        max-width: 90vw;
    }
}
 
/* FAQ Grid System */ 
.faq-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 25px; 
    max-width: 1100px; 
    margin: 0 auto; 
    justify-content: center;
} 
 
@media (max-width: 900px) { 
    .faq-grid { 
        grid-template-columns: 1fr; 
    } 
}

/* Floating Animation for Visuals */
@keyframes floatImage {
    0% { transform: translateY(0); box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
    50% { transform: translateY(-15px); box-shadow: 0 30px 60px rgba(252, 213, 53, 0.2); }
    100% { transform: translateY(0); box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
}

.floating-container {
    animation: floatImage 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.floating-container:hover {
    animation-play-state: paused;
    transform: scale(1.02);
}
