/* ===== index.html ===== */
/* Base styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #0a0a0a;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo {
    font-size: 24px;
    font-weight: 700;
    color: #D4AF37;
    display: flex;
    align-items: center;
    gap: 10px;
}
.header__logo img {
    height: 40px;
}
.header__nav {
    display: flex;
    gap: 30px;
    align-items: center;
}
.header__nav a {
    color: #fff;
    font-size: 14px;
    transition: color 0.3s;
}
.header__nav a:hover {
    color: #D4AF37;
}
.header__actions {
    display: flex;
    gap: 15px;
}
.nav-actions {
    display: none;
}
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}
.btn--primary {
    background: #D4AF37;
    color: #000;
}
.btn--primary:hover {
    background: #FFD700;
    transform: translateY(-2px);
}
.btn--outline {
    border: 1px solid #D4AF37;
    color: #D4AF37;
}
.btn--outline:hover {
    background: #D4AF37;
    color: #000;
}
.header__actions {
    display: flex;
    gap: 15px;
    align-items: center;
}
.header__menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.header__menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #D4AF37;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.header__menu-toggle.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}
.header__menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.header__menu-toggle.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}
.lang-select {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}
.lang-select option {
    background: #1a1a1a;
    color: #fff;
    padding: 10px;
}

/* Hero */
.hero {
    padding: 120px 30px 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    z-index: -1;
}
.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

/* Stock Chart Background */
.hero__charts {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.15;
    overflow: hidden;
}
.chart-line {
    position: absolute;
    left: 0;
    width: 200%;
    height: 100px;
    animation: scrollChart 20s linear infinite;
}
.chart-line svg {
    width: 100%;
    height: 100%;
}
.chart-line--green svg path {
    stroke: #D4AF37;
    fill: none;
    stroke-width: 2;
}
.chart-line--red svg path {
    stroke: #F13232;
    fill: none;
    stroke-width: 2;
}
.chart-line--blue svg path {
    stroke: #4ECDC4;
    fill: none;
    stroke-width: 2;
}
.chart-line:nth-child(1) { top: 10%; animation-delay: 0s; }
.chart-line:nth-child(2) { top: 25%; animation-delay: -5s; }
.chart-line:nth-child(3) { top: 40%; animation-delay: -10s; }
.chart-line:nth-child(4) { top: 55%; animation-delay: -3s; }
.chart-line:nth-child(5) { top: 70%; animation-delay: -8s; }
.chart-line:nth-child(6) { top: 85%; animation-delay: -15s; }

@keyframes scrollChart {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Grid lines background */
.hero__grid {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    from { background-position: 0 0; }
    to { background-position: 50px 50px; }
}

/* Floating candlesticks */
.candlestick-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}
.candlestick-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 40px at 10% 20%, #D4AF37 0%, transparent 100%),
        radial-gradient(2px 30px at 15% 20%, #D4AF37 0%, transparent 100%),
        radial-gradient(2px 35px at 20% 25%, #F13232 0%, transparent 100%),
        radial-gradient(2px 45px at 25% 30%, #D4AF37 0%, transparent 100%),
        radial-gradient(2px 25px at 30% 35%, #F13232 0%, transparent 100%),
        radial-gradient(2px 50px at 35% 40%, #D4AF37 0%, transparent 100%),
        radial-gradient(2px 30px at 40% 20%, #D4AF37 0%, transparent 100%),
        radial-gradient(2px 40px at 45% 25%, #F13232 0%, transparent 100%),
        radial-gradient(2px 35px at 50% 30%, #D4AF37 0%, transparent 100%),
        radial-gradient(2px 45px at 55% 35%, #D4AF37 0%, transparent 100%),
        radial-gradient(2px 30px at 60% 40%, #F13232 0%, transparent 100%),
        radial-gradient(2px 40px at 65% 20%, #D4AF37 0%, transparent 100%),
        radial-gradient(2px 35px at 70% 25%, #D4AF37 0%, transparent 100%),
        radial-gradient(2px 50px at 75% 30%, #F13232 0%, transparent 100%),
        radial-gradient(2px 25px at 80% 35%, #D4AF37 0%, transparent 100%),
        radial-gradient(2px 45px at 85% 40%, #D4AF37 0%, transparent 100%),
        radial-gradient(2px 30px at 90% 20%, #F13232 0%, transparent 100%),
        radial-gradient(2px 40px at 95% 25%, #D4AF37 0%, transparent 100%);
    opacity: 0.15;
    animation: floatCandles 20s ease-in-out infinite;
}

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

.hero__title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}
.hero__title span {
    color: #D4AF37;
}
.hero__subtitle {
    font-size: 18px;
    color: #888;
    margin-bottom: 40px;
    max-width: 600px;
}
.hero__cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Stats Section */
.stats {
    padding: 80px 30px;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.05), transparent);
}
.stats__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}
.stats__item {
    padding: 30px;
}
.stats__number {
    font-size: 48px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 10px;
}
.stats__label {
    font-size: 16px;
    color: #888;
}

/* Features */
.features {
    padding: 100px 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.features__title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}
.features__title span {
    color: #D4AF37;
}
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.features__card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s;
}
.features__card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}
.features__card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37, #0a5a05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
}
.features__card-title {
    font-size: 20px;
    margin-bottom: 15px;
}
.features__card-text {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
}

/* Trust Section */
.trust {
    padding: 80px 30px;
    background: #0d0d0d;
    text-align: center;
}
.trust__title {
    font-size: 24px;
    margin-bottom: 40px;
}
.trust__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
    opacity: 0.7;
}

/* Footer */
.footer {
    padding: 60px 30px;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer__content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}
.footer__section h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
}
.footer__section a {
    display: block;
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}
.footer__section a:hover {
    color: #D4AF37;
}
.footer__bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Trading Cards Section */
.trading-section {
    padding: 80px 30px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(212, 175, 55, 0.03) 50%, rgba(0, 0, 0, 0) 100%);
}
.trading-section__container {
    max-width: 1400px;
    margin: 0 auto;
}
.trading-section__header {
    text-align: center;
    margin-bottom: 50px;
}
.trading-section__title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}
.trading-section__title span {
    color: #D4AF37;
}
.trading-section__subtitle {
    font-size: 18px;
    color: #888;
}

/* Trading Cards Animation */
.trading-cards {
    padding: 20px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.trading-cards::-webkit-scrollbar {
    display: none;
}
.trading-cards__track {
    display: flex;
    gap: 20px;
    animation: scroll 25s linear infinite;
    cursor: grab;
    user-select: none;
}
.trading-cards__track:active {
    cursor: grabbing;
}
.trading-cards:hover .trading-cards__track {
    animation-play-state: paused;
}
.trading-cards__track {
    display: flex;
    gap: 20px;
    animation: scroll 25s linear infinite;
    cursor: grab;
    user-select: none;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.trading-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    min-width: 300px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.trading-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
}
.trading-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.trading-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #D4AF37;
}
.trading-card__avatar-fallback {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #000;
    font-size: 16px;
    border: 2px solid #D4AF37;
}
.trading-card__name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}
.trading-card__body {
    font-size: 14px;
    color: #888;
}
.trading-card__row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.trading-card__row:last-child {
    border-bottom: none;
    margin-top: 10px;
    padding-top: 15px;
    font-weight: 600;
}
.trading-card__profit {
    color: #D4AF37;
    font-weight: 600;
}
.trading-card__loss {
    color: #F13232;
    font-weight: 600;
}

/* Pause animation on hover */
.trading-cards:hover .trading-cards__track {
    animation-play-state: paused;
}

/* Responsive - Tablet */
@media (max-width: 900px) {
    .header {
        padding: 15px 20px;
    }
    .header__nav {
        display: none;
    }
    .header__menu-toggle {
        display: flex;
    }
    .mobile-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        z-index: 999;
        overflow-y: auto;
    }
    .mobile-menu.active {
        display: block;
    }
    .mobile-nav {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }
    .mobile-nav a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
        color: #fff;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .mobile-nav a:hover {
        color: #D4AF37;
    }
    .mobile-nav-actions {
        display: flex;
        gap: 15px;
        padding: 20px 0;
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
    }
    .mobile-nav-actions .btn {
        text-align: center;
        width: 100%;
    }
}

/* Phone - smaller screens */
@media (max-width: 480px) {
    .header__actions .lang-select {
        display: none;
    }
    .header__actions {
        gap: 10px;
    }
    .header__actions .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    .hero__title {
        font-size: 28px;
    }
    .footer__container {
        grid-template-columns: 1fr;
    }
    .footer-right {
        text-align: left;
    }
    .footer-links {
        justify-content: flex-start;
    }
}
        padding: 100px 20px 40px;
    }
    .hero__title {
        font-size: 32px;
    }
    .hero__subtitle {
        font-size: 16px;
    }
    .stats__number {
        font-size: 36px;
    }
    .features {
        padding: 60px 20px;
    }
    .footer__content {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== about.html ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #0a0a0a; color: #fff; min-height: 100vh; line-height: 1.6; }
        a { color: inherit; text-decoration: none; }
        :root { --primary: #D4AF37; --primary-light: #FFD700; }
        .header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding: 15px 30px; display: flex; justify-content: space-between; align-items: center; }
        .header__logo { display: flex; align-items: center; gap: 10px; font-size: 24px; font-weight: 700; }
        .header__logo span { color: var(--primary); }
        .header__nav { display: flex; gap: 25px; align-items: center; }
        .header__nav a { color: #888; font-size: 14px; transition: color 0.3s; }
        .header__nav a:hover, .header__nav a.active { color: var(--primary); }
        .header__actions { display: flex; gap: 15px; align-items: center; }
        .lang-select { background: #1a1a1a; border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 8px 12px; border-radius: 6px; font-size: 14px; cursor: pointer; }
        .lang-select option { background: #1a1a1a; color: #fff; }
        .btn { padding: 10px 24px; background: var(--primary); color: #000; font-weight: 600; border-radius: 8px; transition: all 0.3s; }
        .btn:hover { background: var(--primary-light); transform: translateY(-2px); }
        
        .hero { padding: 150px 20px 80px; text-align: center; background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%); }
        .hero__title { font-size: 48px; font-weight: 700; margin-bottom: 20px; }
        .hero__title span { color: var(--primary); }
        .hero__subtitle { font-size: 18px; color: #888; max-width: 600px; margin: 0 auto; }
        .content { max-width: 900px; margin: 0 auto; padding: 40px 20px 80px; }
        .content h2 { font-size: 28px; margin-bottom: 20px; color: var(--primary); }
        .content p { color: #ccc; margin-bottom: 20px; font-size: 16px; line-height: 1.8; }
        .content ul { margin-bottom: 20px; padding-left: 20px; }
        .content li { color: #ccc; margin-bottom: 10px; font-size: 16px; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin: 40px 0; }
        .stat-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 30px; text-align: center; }
        .stat-card__number { font-size: 36px; font-weight: 700; color: var(--primary); }
        .stat-card__label { color: #888; font-size: 14px; margin-top: 8px; }
        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin: 40px 0; }
        .feature-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 30px; transition: all 0.3s; }
        .feature-card:hover { border-color: rgba(212, 175, 55, 0.3); transform: translateY(-5px); }
        .feature-card__icon { font-size: 40px; margin-bottom: 15px; }
        .feature-card__title { font-size: 20px; margin-bottom: 10px; }
        .feature-card__text { color: #888; font-size: 14px; line-height: 1.6; }
        .footer { background: #050505; border-top: 1px solid rgba(255,255,255,0.05); padding: 50px 20px 30px; }
        .footer__container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
        .footer-left h4 { color: #fff; margin-bottom: 20px; }
        .footer-left p { color: #888; font-size: 14px; margin-bottom: 8px; }
        .footer-right { text-align: right; }
        .footer-links { display: flex; gap: 25px; justify-content: flex-end; margin-bottom: 15px; }
        .footer-links a { color: #888; font-size: 14px; transition: color 0.3s; }
        .footer-links a:hover { color: var(--primary); }
        .copyright { color: #555; font-size: 13px; }
        
    .header__menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.header__menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #D4AF37;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.header__menu-toggle.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}
.header__menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.header__menu-toggle.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}
.mobile-menu {
    display: none;
}
@media (max-width: 900px) {
    .header {
        padding: 15px 20px;
    }
    .header__nav {
        display: none;
    }
    .header__menu-toggle {
        display: flex;
    }
    .mobile-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        z-index: 999;
        overflow-y: auto;
    }
    .mobile-menu.active {
        display: block;
    }
    .mobile-nav {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }
    .mobile-nav a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
        color: #fff;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .mobile-nav a:hover {
        color: #D4AF37;
    }
    .mobile-nav-actions {
        display: flex;
        gap: 15px;
        padding: 20px 0;
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
    }
    .mobile-nav-actions .btn {
        text-align: center;
        width: 100%;
    }
}
@media (max-width: 480px) {
    .header__actions .lang-select {
        display: none;
    }
}

/* ===== ai-trading.html ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #0a0a0a; color: #fff; min-height: 100vh; line-height: 1.6; }
        a { color: inherit; text-decoration: none; }
        :root { --primary: #D4AF37; --primary-light: #FFD700; }

        .header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding: 15px 30px; display: flex; justify-content: space-between; align-items: center; }
        .header__logo { display: flex; align-items: center; gap: 10px; font-size: 24px; font-weight: 700; }
        .header__logo span { color: var(--primary); }
        .header__nav { display: flex; gap: 25px; align-items: center; }
        .header__nav a { color: #888; font-size: 14px; transition: color 0.3s; }
        .header__nav a:hover, .header__nav a.active { color: var(--primary); }
        .header__actions { display: flex; gap: 15px; align-items: center; }
        .lang-select { background: #1a1a1a; border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 8px 12px; border-radius: 6px; font-size: 14px; cursor: pointer; }
        .lang-select option { background: #1a1a1a; color: #fff; }
        .btn { padding: 10px 24px; background: var(--primary); color: #000; font-weight: 600; border-radius: 8px; transition: all 0.3s; }
        .btn:hover { background: var(--primary-light); transform: translateY(-2px); }

        .hero { padding: 150px 20px 80px; text-align: center; background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%); }
        .hero__title { font-size: 48px; font-weight: 700; margin-bottom: 20px; }
        .hero__title span { color: var(--primary); }
        .hero__subtitle { font-size: 18px; color: #888; max-width: 600px; margin: 0 auto; }

        .content { max-width: 900px; margin: 0 auto; padding: 40px 20px 80px; }
        .content h2 { font-size: 28px; margin-bottom: 20px; color: var(--primary); }
        .content p { color: #ccc; margin-bottom: 20px; font-size: 16px; line-height: 1.8; }
        .content ul { margin-bottom: 20px; padding-left: 20px; }
        .content li { color: #ccc; margin-bottom: 10px; font-size: 16px; }

        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin: 40px 0; }
        .feature-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 30px; transition: all 0.3s; }
        .feature-card:hover { border-color: rgba(212, 175, 55, 0.3); transform: translateY(-5px); }
        .feature-card__icon { font-size: 40px; margin-bottom: 15px; }
        .feature-card__title { font-size: 20px; margin-bottom: 10px; }
        .feature-card__text { color: #888; font-size: 14px; line-height: 1.6; }

        .highlight-box { background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%); border: 1px solid rgba(212, 175, 55, 0.3); border-radius: 16px; padding: 40px; margin: 40px 0; text-align: center; }
        .highlight-box__number { font-size: 64px; font-weight: 700; color: var(--primary); }
        .highlight-box__label { font-size: 24px; color: #fff; margin-top: 10px; }
        .highlight-box__desc { color: #888; margin-top: 15px; font-size: 16px; }

        .cta-section { text-align: center; padding: 60px 20px; background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.05)); }
        .cta-section h2 { margin-bottom: 20px; }
        .cta-section p { color: #888; margin-bottom: 30px; }

        .footer { background: #050505; border-top: 1px solid rgba(255,255,255,0.05); padding: 50px 20px 30px; }
        .footer__container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
        .footer-left h4 { color: #fff; margin-bottom: 20px; }
        .footer-left p { color: #888; font-size: 14px; margin-bottom: 8px; }
        .footer-right { text-align: right; }
        .footer-links { display: flex; gap: 25px; justify-content: flex-end; margin-bottom: 15px; }
        .footer-links a { color: #888; font-size: 14px; transition: color 0.3s; }
        .footer-links a:hover { color: var(--primary); }
        .copyright { color: #555; font-size: 13px; }

        @media (max-width: 768px) { .header__nav { display: none; } .hero__title { font-size: 32px; } .footer__container { grid-template-columns: 1fr; } .footer-right { text-align: left; } .footer-links { justify-content: flex-start; } }
    
/* Mobile Menu */
.header__menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.header__menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #D4AF37;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.header__menu-toggle.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.header__menu-toggle.active span:nth-child(2) { opacity: 0; }
.header__menu-toggle.active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
.mobile-menu { display: none; }

@media (max-width: 900px) {
    .header { padding: 15px 20px; }
    .header__nav { display: none; }
    .header__menu-toggle { display: flex; }
    .mobile-menu {
        display: none;
        position: fixed;
        top: 70px; left: 0; right: 0; bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        z-index: 999;
        overflow-y: auto;
    }
    .mobile-menu.active { display: block; }
    .mobile-nav { display: flex; flex-direction: column; padding: 20px; }
    .mobile-nav a { display: block; padding: 15px 0; font-size: 16px; color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .mobile-nav a:hover { color: #D4AF37; }
    .mobile-nav-actions { display: flex; gap: 15px; padding: 20px 0; margin-top: 10px; border-top: 1px solid rgba(255,255,255,0.1); flex-direction: column; }
    .mobile-nav-actions .btn { text-align: center; width: 100%; }
}
@media (max-width: 480px) {
    .header__actions .lang-select { display: none; }
}

/* ===== manual-trading.html ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #0a0a0a; color: #fff; min-height: 100vh; line-height: 1.6; }
        a { color: inherit; text-decoration: none; }
        :root { --primary: #D4AF37; --primary-light: #FFD700; }
        .header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding: 15px 30px; display: flex; justify-content: space-between; align-items: center; }
        .header__logo { display: flex; align-items: center; gap: 10px; font-size: 24px; font-weight: 700; }
        .header__logo span { color: var(--primary); }
        .header__nav { display: flex; gap: 25px; align-items: center; }
        .header__nav a { color: #888; font-size: 14px; transition: color 0.3s; }
        .header__nav a:hover, .header__nav a.active { color: var(--primary); }
        .header__actions { display: flex; gap: 15px; align-items: center; }
        .lang-select { background: #1a1a1a; border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 8px 12px; border-radius: 6px; font-size: 14px; cursor: pointer; }
        .lang-select option { background: #1a1a1a; color: #fff; }
        .btn { padding: 10px 24px; background: var(--primary); color: #000; font-weight: 600; border-radius: 8px; transition: all 0.3s; }
        .btn:hover { background: var(--primary-light); transform: translateY(-2px); }

        .hero { padding: 150px 20px 80px; text-align: center; background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%); }
        .hero__title { font-size: 48px; font-weight: 700; margin-bottom: 20px; }
        .hero__title span { color: var(--primary); }
        .hero__subtitle { font-size: 18px; color: #888; max-width: 600px; margin: 0 auto; }

        .content { max-width: 900px; margin: 0 auto; padding: 40px 20px 80px; }
        .content h2 { font-size: 28px; margin-bottom: 20px; color: var(--primary); }
        .content p { color: #ccc; margin-bottom: 20px; font-size: 16px; line-height: 1.8; }
        .content ul { margin-bottom: 20px; padding-left: 20px; }
        .content li { color: #ccc; margin-bottom: 10px; font-size: 16px; }

        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin: 40px 0; }
        .feature-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 30px; transition: all 0.3s; }
        .feature-card:hover { border-color: rgba(212, 175, 55, 0.3); transform: translateY(-5px); }
        .feature-card__icon { font-size: 40px; margin-bottom: 15px; }
        .feature-card__title { font-size: 20px; margin-bottom: 10px; }
        .feature-card__text { color: #888; font-size: 14px; line-height: 1.6; }

        .cta-section { text-align: center; padding: 60px 20px; background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.05)); }
        .cta-section h2 { margin-bottom: 20px; }
        .cta-section p { color: #888; margin-bottom: 30px; }

        .footer { background: #050505; border-top: 1px solid rgba(255,255,255,0.05); padding: 50px 20px 30px; }
        .footer__container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
        .footer-left h4 { color: #fff; margin-bottom: 20px; }
        .footer-left p { color: #888; font-size: 14px; margin-bottom: 8px; }
        .footer-right { text-align: right; }
        .footer-links { display: flex; gap: 25px; justify-content: flex-end; margin-bottom: 15px; }
        .footer-links a { color: #888; font-size: 14px; transition: color 0.3s; }
        .footer-links a:hover { color: var(--primary); }
        .copyright { color: #555; font-size: 13px; }

        @media (max-width: 768px) { .header__nav { display: none; } .hero__title { font-size: 32px; } .footer__container { grid-template-columns: 1fr; } .footer-right { text-align: left; } .footer-links { justify-content: flex-start; } }
    
/* Mobile Menu */
.header__menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.header__menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #D4AF37;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.header__menu-toggle.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.header__menu-toggle.active span:nth-child(2) { opacity: 0; }
.header__menu-toggle.active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
.mobile-menu { display: none; }

@media (max-width: 900px) {
    .header { padding: 15px 20px; }
    .header__nav { display: none; }
    .header__menu-toggle { display: flex; }
    .mobile-menu {
        display: none;
        position: fixed;
        top: 70px; left: 0; right: 0; bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        z-index: 999;
        overflow-y: auto;
    }
    .mobile-menu.active { display: block; }
    .mobile-nav { display: flex; flex-direction: column; padding: 20px; }
    .mobile-nav a { display: block; padding: 15px 0; font-size: 16px; color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .mobile-nav a:hover { color: #D4AF37; }
    .mobile-nav-actions { display: flex; gap: 15px; padding: 20px 0; margin-top: 10px; border-top: 1px solid rgba(255,255,255,0.1); flex-direction: column; }
    .mobile-nav-actions .btn { text-align: center; width: 100%; }
}
@media (max-width: 480px) {
    .header__actions .lang-select { display: none; }
}

/* ===== affiliate.html ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #0a0a0a; color: #fff; min-height: 100vh; line-height: 1.6; }
        a { color: inherit; text-decoration: none; }
        :root { --primary: #D4AF37; --primary-light: #FFD700; }
        .header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding: 15px 30px; display: flex; justify-content: space-between; align-items: center; }
        .header__logo { display: flex; align-items: center; gap: 10px; font-size: 24px; font-weight: 700; }
        .header__logo span { color: var(--primary); }
        .header__nav { display: flex; gap: 25px; align-items: center; }
        .header__nav a { color: #888; font-size: 14px; transition: color 0.3s; }
        .header__nav a:hover, .header__nav a.active { color: var(--primary); }
        .header__actions { display: flex; gap: 15px; align-items: center; }
        .lang-select { background: #1a1a1a; border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 8px 12px; border-radius: 6px; font-size: 14px; cursor: pointer; }
        .lang-select option { background: #1a1a1a; color: #fff; }
        .btn { padding: 10px 24px; background: var(--primary); color: #000; font-weight: 600; border-radius: 8px; transition: all 0.3s; }
        .btn:hover { background: var(--primary-light); transform: translateY(-2px); }

        .hero { padding: 150px 20px 80px; text-align: center; background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%); }
        .hero__title { font-size: 48px; font-weight: 700; margin-bottom: 20px; }
        .hero__title span { color: var(--primary); }
        .hero__subtitle { font-size: 18px; color: #888; max-width: 600px; margin: 0 auto; }

        .content { max-width: 900px; margin: 0 auto; padding: 40px 20px 80px; }
        .content h2 { font-size: 28px; margin-bottom: 20px; color: var(--primary); }
        .content p { color: #ccc; margin-bottom: 20px; font-size: 16px; line-height: 1.8; }
        .content ul { margin-bottom: 20px; padding-left: 20px; }
        .content li { color: #ccc; margin-bottom: 10px; font-size: 16px; }

        .commission-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin: 40px 0; }
        @media (max-width: 768px) { .commission-grid { grid-template-columns: repeat(3, 1fr); } }
        @media (max-width: 480px) { .commission-grid { grid-template-columns: repeat(2, 1fr); } }
        .commission-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 25px 15px; text-align: center; transition: all 0.3s; }
        .commission-card:hover { border-color: rgba(212, 175, 55, 0.3); transform: translateY(-5px); }
        .commission-card__level { font-size: 14px; color: #888; margin-bottom: 10px; }
        .commission-card__rate { font-size: 36px; font-weight: 700; color: var(--primary); }
        .commission-card__label { font-size: 12px; color: #888; margin-top: 8px; }

        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin: 40px 0; }
        .feature-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 30px; transition: all 0.3s; }
        .feature-card:hover { border-color: rgba(212, 175, 55, 0.3); transform: translateY(-5px); }
        .feature-card__icon { font-size: 40px; margin-bottom: 15px; }
        .feature-card__title { font-size: 20px; margin-bottom: 10px; }
        .feature-card__text { color: #888; font-size: 14px; line-height: 1.6; }

        .cta-section { text-align: center; padding: 60px 20px; background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.05)); }
        .cta-section h2 { margin-bottom: 20px; }
        .cta-section p { color: #888; margin-bottom: 30px; }

        .footer { background: #050505; border-top: 1px solid rgba(255,255,255,0.05); padding: 50px 20px 30px; }
        .footer__container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
        .footer-left h4 { color: #fff; margin-bottom: 20px; }
        .footer-left p { color: #888; font-size: 14px; margin-bottom: 8px; }
        .footer-right { text-align: right; }
        .footer-links { display: flex; gap: 25px; justify-content: flex-end; margin-bottom: 15px; }
        .footer-links a { color: #888; font-size: 14px; transition: color 0.3s; }
        .footer-links a:hover { color: var(--primary); }
        .copyright { color: #555; font-size: 13px; }
        @media (max-width: 768px) { .header__nav { display: none; } .hero__title { font-size: 32px; } .footer__container { grid-template-columns: 1fr; } .footer-right { text-align: left; } .footer-links { justify-content: flex-start; } }
    
/* Mobile Menu */
.header__menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.header__menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #D4AF37;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.header__menu-toggle.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.header__menu-toggle.active span:nth-child(2) { opacity: 0; }
.header__menu-toggle.active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
.mobile-menu { display: none; }

@media (max-width: 900px) {
    .header { padding: 15px 20px; }
    .header__nav { display: none; }
    .header__menu-toggle { display: flex; }
    .mobile-menu {
        display: none;
        position: fixed;
        top: 70px; left: 0; right: 0; bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        z-index: 999;
        overflow-y: auto;
    }
    .mobile-menu.active { display: block; }
    .mobile-nav { display: flex; flex-direction: column; padding: 20px; }
    .mobile-nav a { display: block; padding: 15px 0; font-size: 16px; color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .mobile-nav a:hover { color: #D4AF37; }
    .mobile-nav-actions { display: flex; gap: 15px; padding: 20px 0; margin-top: 10px; border-top: 1px solid rgba(255,255,255,0.1); flex-direction: column; }
    .mobile-nav-actions .btn { text-align: center; width: 100%; }
}
@media (max-width: 480px) {
    .header__actions .lang-select { display: none; }
}

/* ===== faq.html ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #0a0a0a; color: #fff; min-height: 100vh; line-height: 1.6; }
        a { color: inherit; text-decoration: none; }
        :root { --primary: #D4AF37; --primary-light: #FFD700; }
        .header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding: 15px 30px; display: flex; justify-content: space-between; align-items: center; }
        .header__logo { display: flex; align-items: center; gap: 10px; font-size: 24px; font-weight: 700; }
        .header__logo span { color: var(--primary); }
        .header__nav { display: flex; gap: 25px; align-items: center; }
        .header__nav a { color: #888; font-size: 14px; transition: color 0.3s; }
        .header__nav a:hover, .header__nav a.active { color: var(--primary); }
        .header__actions { display: flex; gap: 15px; align-items: center; }
        .lang-select { background: #1a1a1a; border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 8px 12px; border-radius: 6px; font-size: 14px; cursor: pointer; }
        .lang-select option { background: #1a1a1a; color: #fff; }
        .btn { padding: 10px 24px; background: var(--primary); color: #000; font-weight: 600; border-radius: 8px; transition: all 0.3s; }
        .btn:hover { background: var(--primary-light); transform: translateY(-2px); }

        .hero { padding: 150px 20px 80px; text-align: center; background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%); }
        .hero__title { font-size: 48px; font-weight: 700; margin-bottom: 20px; }
        .hero__title span { color: var(--primary); }
        .hero__subtitle { font-size: 18px; color: #888; max-width: 600px; margin: 0 auto; }

        .content { max-width: 800px; margin: 0 auto; padding: 40px 20px 80px; }

        .faq-category { margin-bottom: 50px; }
        .faq-category__title { font-size: 24px; margin-bottom: 25px; color: var(--primary); padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1); }

        .faq-item { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; margin-bottom: 15px; overflow: hidden; }
        .faq-item__question { padding: 20px 25px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 500; font-size: 16px; transition: all 0.3s; }
        .faq-item__question:hover { background: rgba(255,255,255,0.02); }
        .faq-item__question::after { content: '+'; font-size: 24px; color: var(--primary); transition: transform 0.3s; }
        .faq-item.active .faq-item__question::after { transform: rotate(45deg); }
        .faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
        .faq-item.active .faq-item__answer { max-height: 500px; }
        .faq-item__answer-content { padding: 0 25px 20px; color: #888; font-size: 15px; line-height: 1.7; }

        .cta-section { text-align: center; padding: 60px 20px; background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.05)); }
        .cta-section h2 { margin-bottom: 20px; }
        .cta-section p { color: #888; margin-bottom: 30px; }

        .footer { background: #050505; border-top: 1px solid rgba(255,255,255,0.05); padding: 50px 20px 30px; }
        .footer__container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
        .footer-left h4 { color: #fff; margin-bottom: 20px; }
        .footer-left p { color: #888; font-size: 14px; margin-bottom: 8px; }
        .footer-right { text-align: right; }
        .footer-links { display: flex; gap: 25px; justify-content: flex-end; margin-bottom: 15px; }
        .footer-links a { color: #888; font-size: 14px; transition: color 0.3s; }
        .footer-links a:hover { color: var(--primary); }
        .copyright { color: #555; font-size: 13px; }
        @media (max-width: 768px) { .header__nav { display: none; } .hero__title { font-size: 32px; } .footer__container { grid-template-columns: 1fr; } .footer-right { text-align: left; } .footer-links { justify-content: flex-start; } }
    
/* Mobile Menu */
.header__menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.header__menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #D4AF37;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.header__menu-toggle.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.header__menu-toggle.active span:nth-child(2) { opacity: 0; }
.header__menu-toggle.active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
.mobile-menu { display: none; }

@media (max-width: 900px) {
    .header { padding: 15px 20px; }
    .header__nav { display: none; }
    .header__menu-toggle { display: flex; }
    .mobile-menu {
        display: none;
        position: fixed;
        top: 70px; left: 0; right: 0; bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        z-index: 999;
        overflow-y: auto;
    }
    .mobile-menu.active { display: block; }
    .mobile-nav { display: flex; flex-direction: column; padding: 20px; }
    .mobile-nav a { display: block; padding: 15px 0; font-size: 16px; color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .mobile-nav a:hover { color: #D4AF37; }
    .mobile-nav-actions { display: flex; gap: 15px; padding: 20px 0; margin-top: 10px; border-top: 1px solid rgba(255,255,255,0.1); flex-direction: column; }
    .mobile-nav-actions .btn { text-align: center; width: 100%; }
}
@media (max-width: 480px) {
    .header__actions .lang-select { display: none; }
}

/* ===== apply.html ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0a0a0a;
            color: #fff;
            min-height: 100vh;
            line-height: 1.6;
        }
        a { color: inherit; text-decoration: none; }
        :root {
            --primary: #D4AF37;
            --bg-card: rgba(255, 255, 255, 0.02);
            --text-sub: #888;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 15px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header__logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 700;
        }
        .header__logo span {
            color: var(--primary);
        }
        .header__nav {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        .header__nav a {
            color: #888;
            font-size: 14px;
            transition: color 0.3s;
        }
        .header__nav a:hover {
            color: #fff;
        }
        .header__cta {
            padding: 10px 24px;
            background: var(--primary);
            color: #000;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .header__cta:hover {
            background: #FFD700;
            transform: translateY(-2px);
        }
        .lang-select {
            background: #1a1a1a;
            border: 1px solid rgba(255,255,255,0.1);
            color: #fff;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 14px;
            cursor: pointer;
        }
        .lang-select option {
            background: #1a1a1a;
            color: #fff;
        }

        /* Hero Section */
        .hero {
            padding: 120px 20px 60px;
            text-align: center;
            background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
        }
        .hero__title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 30px;
        }
        .hero__title span {
            color: var(--primary);
        }
        .hero__brand {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            opacity: 0.8;
        }
        .hero__brand-logo {
            font-size: 20px;
            font-weight: 600;
        }
        .hero__brand-logo span {
            color: var(--primary);
        }
        .hero__partner {
            height: 50px;
            filter: brightness(0) invert(0.7);
        }

        /* Container */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .apply-page-container {
            padding-top: 120px;
        }

        /* Contact Split Layout */
        .contact-split {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            padding: 20px 20px 80px;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Left Side */
        .contact-left {
            display: none;
        }

        /* Right Side */
        .contact-right h2 {
            color: #fff;
            margin-bottom: 10px;
            font-size: 24px;
        }
        .contact-right > p {
            color: var(--text-sub);
            font-size: 16px;
            margin-bottom: 30px;
        }

        /* Form Card */
        .form-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        /* Form Styles */
        #inhtm-form-box {
            width: 100%;
        }
        #inhtm-form-box * {
            box-sizing: border-box;
        }
        #inhtm-form-box input[type="text"],
        #inhtm-form-box input[type="email"],
        #inhtm-form-box input[type="tel"],
        #inhtm-form-box input[type="password"],
        #inhtm-form-box input[type="number"],
        #inhtm-form-box textarea,
        #inhtm-form-box select {
            width: 100%;
            padding: 14px 16px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            font-size: 15px;
            color: #fff;
            margin-bottom: 16px;
            transition: all 0.3s;
            font-family: inherit;
            display: block;
        }
        #inhtm-form-box input:focus,
        #inhtm-form-box textarea:focus,
        #inhtm-form-box select:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        }
        #inhtm-form-box input::placeholder,
        #inhtm-form-box textarea::placeholder {
            color: #666;
        }
        #inhtm-form-box label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 6px;
            color: #fff;
        }
        #inhtm-form-box input[type="radio"],
        #inhtm-form-box input[type="checkbox"] {
            width: auto;
            margin-right: 8px;
            vertical-align: middle;
            margin-bottom: 0;
        }
        #inhtm-form-box button[type="submit"] {
            width: 100%;
            padding: 16px 24px;
            background: var(--primary);
            color: #000;
            font-size: 16px;
            font-weight: 700;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
        }
        #inhtm-form-box button[type="submit"]:hover {
            background: #FFD700;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }
        /* Handle injected form groups */
        #inhtm-form-box .form-group,
        #inhtm-form-box > div {
            margin-bottom: 16px;
            width: 100%;
        }
        #inhtm-form-box .form-group label,
        #inhtm-form-box > div > label {
            display: block;
            margin-bottom: 6px;
        }
        /* Handle radio/checkbox groups */
        #inhtm-form-box .radio-group,
        #inhtm-form-box .checkbox-group,
        #inhtm-form-box [class*="option"] {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 16px;
        }
        #inhtm-form-box .radio-group label,
        #inhtm-form-box .checkbox-group label,
        #inhtm-form-box [class*="option"] label {
            display: inline-flex;
            align-items: center;
            cursor: pointer;
        }
        /* Handle row layouts */
        #inhtm-form-box .row,
        #inhtm-form-box .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        @media (max-width: 600px) {
            #inhtm-form-box .row,
            #inhtm-form-box .form-row {
                grid-template-columns: 1fr;
            }
        }

        /* Footer */
        .footer {
            background: #050505;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 50px 20px 30px;
        }
        .footer__container {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        .footer-left h4 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 18px;
        }
        .footer-left p {
            color: #888;
            font-size: 14px;
            margin-bottom: 10px;
        }
        .footer-right {
            text-align: right;
        }
        .footer-partner {
            height: 40px;
            filter: brightness(0) invert(0.7);
            margin-bottom: 15px;
        }
        .footer-links {
            display: flex;
            gap: 25px;
            justify-content: flex-end;
            margin-bottom: 15px;
        }
        .footer-links a {
            color: #888;
            font-size: 14px;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--primary);
        }
        .copyright {
            color: #555;
            font-size: 13px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header__nav {
                display: none;
            }
            .contact-split {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .footer__container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .footer-right {
                text-align: left;
            }
            .footer-links {
                justify-content: flex-start;
            }
            .hero__title {
                font-size: 32px;
            }
        }

/* ===== Shared fixes ===== */
.hero__title span:empty { display:none; }
.faq-item.active .faq-item__answer { max-height: 500px; }
.faq-item__answer { overflow: hidden; }

/* apply page: force inline form only, no popup/prompt */
body[data-page="apply"] #popupOverlay,
body[data-page="apply"] #popupContainer {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
