
    /* ----- global reset / custom properties ----- */
    :root {
      --primary-dark: #0b1a33;
      --primary-accent: #1e3a6f;
      --gold-gradient: linear-gradient(145deg, #f9d976, #f39c12);
      --shadow-sm: 0 8px 20px rgba(0,0,0,0.04);
      --shadow-hover: 0 20px 40px rgba(0,20,40,0.12);
    }
    body {
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      background: #f8faff;
      color: #1d2b3e;
      scroll-behavior: smooth;
    }
    /* custom utility */
    .bg-primary-dark { background-color: var(--primary-dark) !important; }
    .text-gold { color: #f5b342; }
    .border-gold { border-color: #f5b342 !important; }

    /* ----- top bar (utility) ----- */
    .top-bar {
      background: #0e1e32;
      font-size: 0.85rem;
      letter-spacing: 0.3px;
      border-bottom: 1px solid rgba(255,215,100,0.15);
    }
    .top-bar a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: color 0.2s;
    }
    .top-bar a:hover { color: #f5b342; }
    .top-bar .social-icons i {
      font-size: 1rem;
      margin-left: 0.8rem;
      color: rgba(255,255,255,0.6);
      transition: 0.2s;
    }
    .top-bar .social-icons i:hover { color: #f5b342; transform: translateY(-1px); }

    /* ----- navbar brand & nav ----- */
    .navbar {
      background: rgba(255,255,255,0.92) !important;
      backdrop-filter: blur(8px);
      box-shadow: var(--shadow-sm);
      padding: 0.6rem 0;
      border-bottom: 1px solid rgba(0,0,0,0.02);
    }
    .navbar-brand {
      font-weight: 700;
      font-size: 1.8rem;
      letter-spacing: -0.5px;
      color: var(--primary-dark);
    }
    .navbar-brand i {
      color: #f5b342;
      margin-right: 6px;
    }
    .navbar-brand span {
      font-weight: 300;
      color: #1e3a6f;
    }
    .nav-link {
      font-weight: 500;
      color: #1d2b3e !important;
      margin: 0 0.4rem;
      border-radius: 40px;
      padding: 0.5rem 1rem !important;
      transition: 0.2s;
    }
    .nav-link:hover, .nav-link.active {
      background: rgba(245, 179, 66, 0.12);
      color: var(--primary-accent) !important;
    }
    .btn-outline-gold {
      border: 1.5px solid #f5b342;
      color: #1e3a6f;
      border-radius: 40px;
      padding: 0.4rem 1.4rem;
      font-weight: 600;
      transition: 0.2s;
    }
    .btn-outline-gold:hover {
      background: #f5b342;
      color: #0b1a33;
      border-color: #f5b342;
      box-shadow: 0 4px 12px rgba(245,179,66,0.3);
    }
    .btn-gold {
      background: var(--gold-gradient);
      border: none;
      color: #0b1a33;
      font-weight: 600;
      padding: 0.5rem 1.8rem;
      border-radius: 40px;
      transition: 0.25s;
    }
    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(243, 156, 18, 0.25);
      color: #0b1a33;
    }

    /* ----- hero section (trading focused) ----- */
    .hero-section {
      background: linear-gradient(135deg, #f0f6ff 0%, #ffffff 100%);
      padding: 4rem 0 3.5rem;
      border-bottom: 1px solid rgba(0,0,0,0.02);
    }
    .hero-title {
      font-size: 3.4rem;
      font-weight: 700;
      letter-spacing: -1.2px;
      line-height: 1.2;
    }
    .hero-title .highlight {
      background: var(--gold-gradient);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub {
      font-size: 1.2rem;
      color: #3c4a5e;
      max-width: 500px;
    }
    .hero-stats {
      background: white;
      border-radius: 60px;
      padding: 0.5rem 1.8rem 0.5rem 2.2rem;
      box-shadow: var(--shadow-sm);
      display: inline-flex;
      align-items: center;
      gap: 1.2rem;
      flex-wrap: wrap;
    }
    .hero-stats .stat-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: 500;
    }
    .hero-stats .stat-item i {
      color: #f5b342;
      font-size: 1.4rem;
    }

    /* ----- feature cards (market tools) ----- */
    .feature-card {
      background: white;
      border-radius: 28px;
      padding: 2rem 1.8rem;
      transition: 0.3s cubic-bezier(0.2, 0, 0, 1);
      border: 1px solid rgba(0,0,0,0.02);
      box-shadow: var(--shadow-sm);
      height: 100%;
    }
    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(245, 179, 66, 0.2);
    }
    .feature-icon {
      background: rgba(245, 179, 66, 0.10);
      width: 64px;
      height: 64px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: #e67e22;
      margin-bottom: 1.2rem;
    }
    .feature-card h5 {
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .feature-card p {
      color: #4b5a6e;
      font-size: 0.95rem;
    }

    /* ----- trading chart preview (mock) ----- */
    .chart-preview {
      background: #0b1a33;
      border-radius: 32px;
      padding: 1.8rem 2rem;
      color: white;
      box-shadow: 0 20px 40px rgba(11,26,51,0.2);
    }
    .chart-preview .mock-line {
      background: rgba(255,215,100,0.15);
      height: 6px;
      border-radius: 10px;
      width: 100%;
      margin: 0.6rem 0;
      position: relative;
    }
    .chart-preview .mock-line .fill {
      background: var(--gold-gradient);
      height: 6px;
      border-radius: 10px;
      width: 68%;
    }

    /* ----- footer (professional) ----- */
    .footer-dark {
      background: #0b1a33;
      color: rgba(255,255,255,0.75);
      padding-top: 3rem;
      border-top: 3px solid #f5b342;
    }
    .footer-dark h5 {
      color: white;
      font-weight: 600;
      letter-spacing: 0.3px;
    }
    .footer-dark a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: 0.2s;
      font-size: 0.95rem;
    }
    .footer-dark a:hover { color: #f5b342; }
    .footer-dark .social-circle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      margin-right: 10px;
      transition: 0.2s;
      color: rgba(255,255,255,0.7);
      font-size: 1.2rem;
      border: 1px solid rgba(255,255,255,0.03);
    }
    .footer-dark .social-circle:hover {
      background: #f5b342;
      color: #0b1a33;
      border-color: #f5b342;
      transform: translateY(-2px);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 1.2rem 0;
      font-size: 0.9rem;
    }

    /* misc */
    .section-title {
      font-weight: 700;
      letter-spacing: -0.4px;
      margin-bottom: 0.5rem;
    }
    .section-sub {
      color: #4b5a6e;
    }
    .bg-soft-gold { background: rgba(245, 179, 66, 0.04); }
    @media (max-width: 768px) {
      .hero-title { font-size: 2.4rem; }
      .hero-stats { border-radius: 40px; padding: 0.5rem 1.2rem; }
    }

    .ecommerce-hero-card {
    background: linear-gradient(145deg, #0a1628, #1a1f2e);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(245, 179, 66, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ecommerce-hero-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* Glow Effects */
.glow-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.glow-1 {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(245, 179, 66, 0.05), transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

.glow-2 {
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.05), transparent 70%);
    animation: glowPulse 5s ease-in-out infinite reverse;
}

/* Earnings Banner */
.earnings-banner {
    background: linear-gradient(135deg, rgba(245, 179, 66, 0.15), rgba(46, 204, 113, 0.10));
    border: 1px solid rgba(245, 179, 66, 0.2);
    border-radius: 12px;
    padding: 10px 16px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.earnings-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.earnings-icon {
    font-size: 18px;
}

.earnings-text strong {
    color: #f5b342;
}

.earnings-badge {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    animation: badgePulse 2s ease-in-out infinite;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.trust-item i {
    color: #f5b342;
    font-size: 14px;
}

.trust-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.06);
}

/* Product Display */
.product-display {
    margin-bottom: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.product-info {
    flex: 1;
}

.product-name {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: -0.3px;
}

.product-sku {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #f5b342;
    font-size: 14px;
    display: flex;
    gap: 2px;
}

.rating-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.product-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 8px;
}

.price-main {
    display: flex;
    align-items: center;
    gap: 12px;
}

.current-price {
    font-size: 32px;
    font-weight: 700;
    color: #2ecc71;
    font-family: 'Courier New', monospace;
}

.original-price {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
}

.discount-badge {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.commission-info {
    text-align: right;
}

.commission-label {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.commission-amount {
    font-size: 20px;
    font-weight: 700;
    color: #f5b342;
}

.commission-rate {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.product-timestamp {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
}

.timestamp-divider {
    opacity: 0.3;
}

/* Product Visualization */
.product-visualization {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.product-image-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-image-placeholder {
    font-size: 64px;
    color: #f5b342;
    position: relative;
    padding: 20px 0;
}

.product-tag {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #f5b342, #f39c12);
    color: #0a1628;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.live-sales-counter {
    margin-top: 12px;
    padding: 10px;
    background: rgba(46, 204, 113, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(46, 204, 113, 0.1);
}

.sales-pulse {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.pulse-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.sales-stats {
    display: flex;
    justify-content: space-around;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.sales-stats strong {
    color: white;
}

/* Price History Chart */
.price-history-chart {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.chart-header-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.chart-title {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chart-label {
    font-size: 11px;
    color: #2ecc71;
    font-weight: 600;
}

.mini-chart {
    height: 60px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    margin-bottom: 8px;
}

.mini-bar {
    flex: 1;
    min-width: 8px;
    border-radius: 2px 2px 0 0;
    background: linear-gradient(180deg, #f5b342, #f39c12);
    animation: barGrow 0.8s ease-out;
    transform-origin: bottom;
    transition: height 0.3s;
}

.chart-stats {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
}

.chart-stats strong {
    color: rgba(255, 255, 255, 0.7);
}

/* Product Details Grid */
.product-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 12px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.detail-item i {
    color: #f5b342;
    font-size: 16px;
}

/* Affiliate Actions */
.affiliate-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.btn-affiliate {
    flex: 1;
    padding: 10px 16px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-affiliate:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #f5b342, #f39c12);
    color: #0a1628;
    box-shadow: 0 4px 15px rgba(245, 179, 66, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(245, 179, 66, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-success:hover {
    box-shadow: 0 8px 30px rgba(46, 204, 113, 0.4);
}

.btn-watchlist {
    flex: 0.5;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-watchlist:hover {
    background: rgba(255, 255, 255, 0.1);
}

.action-shortcut {
    font-size: 9px;
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 400;
}

/* Performance Stats */
.performance-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    margin-bottom: 12px;
}

.stat-card {
    text-align: center;
    padding: 0 8px;
}

.stat-label {
    display: block;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.stat-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.stat-trend {
    font-size: 10px;
    font-weight: 600;
}

.stat-trend.up {
    color: #2ecc71;
}

.stat-divider-vertical {
    width: 1px;
    background: rgba(255, 255, 255, 0.04);
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}

.proof-item img {
    width: 20px;
    height: 20px;
}

.proof-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.06);
}

.text-success {
    color: #2ecc71 !important;
}
.lang-wrapper{
    display: none;
}

/* Animations */
@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes barGrow {
    0% { height: 0% !important; opacity: 0; transform: scaleY(0); }
    100% { opacity: 1; transform: scaleY(1); }
}

/* Responsive */
@media (max-width: 768px) {
    .ecommerce-hero-card {
        padding: 16px;
    }

    .product-visualization {
        grid-template-columns: 1fr;
    }

    .product-header {
        flex-direction: column;
        gap: 8px;
    }

    .product-price-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .commission-info {
        text-align: left;
        width: 100%;
    }

    .product-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .affiliate-actions {
        flex-direction: column;
    }

    .btn-watchlist {
        flex: 1;
    }

    .performance-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-divider-vertical {
        display: none;
    }

    .trust-indicators {
        flex-wrap: wrap;
        gap: 8px;
    }

    .trust-divider {
        display: none;
    }

    .social-proof {
        flex-wrap: wrap;
        gap: 8px;
    }

    .proof-divider {
        display: none;
    }

    .earnings-banner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

       .lang-wrapper {
        width: 99px;
        right: 70px;
        top: 16px;
        display: block;
    }
    .lang-list {
    width: 144%;
    }
}