/* ============================================================
 * Developer Gold – Landing Page Dark Theme (Full)
 * Matches the dashboard aesthetic (Binance/TradingView inspired)
 * ============================================================ */

/* ─── CSS Variables ───────────────────────────────────────── */
:root {
    --dg-bg-primary:    #0b0e11;
    --dg-bg-secondary:  #12161c;
    --dg-bg-tertiary:   #1a1f28;
    --dg-bg-elevated:   #1e2330;
    --dg-bg-hover:      #252b38;
    --dg-surface:       #161a22;
    --dg-border:        #2a2e38;
    --dg-border-light:  #353a45;
    --dg-text-primary:  #eaecef;
    --dg-text-secondary:#8a919e;
    --dg-text-muted:    #5e6673;
    --dg-gold:          #f0b90b;
    --dg-gold-dim:      #c9991a;
    --dg-gold-glow:     rgba(240, 185, 11, 0.12);
    --dg-silver:        #c0c0c0;
    --dg-green:         #0ecb81;
    --dg-green-bg:      rgba(14, 203, 129, 0.08);
    --dg-red:           #f6465d;
    --dg-red-bg:        rgba(246, 70, 93, 0.08);
    --dg-blue:          #3b82f6;
    --dg-blue-bg:       rgba(59, 130, 246, 0.08);
    --dg-purple:        #8b5cf6;
    --dg-purple-bg:     rgba(139, 92, 246, 0.08);
    --dg-teal:          #14b8a6;
    --dg-teal-bg:       rgba(20, 184, 166, 0.08);
    --dg-radius-sm:     6px;
    --dg-radius-md:     10px;
    --dg-radius-lg:     14px;
    --dg-radius-xl:     20px;
    --dg-font:          'Vazirmatn', 'IRANSans', 'Tahoma', sans-serif;
    --dg-font-mono:     'JetBrains Mono', 'Fira Code', monospace;
    --dg-transition:    0.25s ease;
}

/* ─── Reset ──────────────────────────────────────────────── */
.dg-landing,
.dg-landing *,
.dg-landing *::before,
.dg-landing *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.dg-landing {
    font-family: var(--dg-font);
    font-size: 15px;
    line-height: 1.6;
    color: var(--dg-text-primary);
    background: var(--dg-bg-primary);
    direction: rtl;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ─── Header ─────────────────────────────────────────────── */
.dg-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    height: 64px;
    background: rgba(11, 14, 17, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--dg-border);
    transition: background var(--dg-transition), box-shadow var(--dg-transition);
}

.dg-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dg-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.dg-header__logo-text {
    font-size: 17px;
    font-weight: 700;
    color: var(--dg-gold);
    letter-spacing: -0.3px;
}

.dg-header__nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-right: 32px;
}

.dg-header__nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--dg-text-secondary);
    text-decoration: none;
    transition: color var(--dg-transition);
}

.dg-header__nav-link:hover {
    color: var(--dg-text-primary);
}

.dg-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dg-header__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: var(--dg-radius-sm);
    font-family: var(--dg-font);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--dg-transition);
    white-space: nowrap;
}

.dg-header__btn--ghost {
    background: transparent;
    color: var(--dg-text-secondary);
    border: 1px solid var(--dg-border);
}

.dg-header__btn--ghost:hover {
    color: var(--dg-text-primary);
    border-color: var(--dg-border-light);
    background: var(--dg-bg-hover);
}

.dg-header__btn--primary {
    background: var(--dg-gold);
    color: #0b0e11;
}

.dg-header__btn--primary:hover {
    background: #d4a50a;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(240, 185, 11, 0.3);
}

.dg-header__menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--dg-text-secondary);
    cursor: pointer;
    padding: 4px;
}

.dg-header__mobile-menu {
    display: none;
}

.dg-header__mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--dg-bg-secondary);
    border-bottom: 1px solid var(--dg-border);
    padding: 8px 0;
}

.dg-header__mobile-link {
    display: block;
    padding: 12px 24px;
    color: var(--dg-text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--dg-transition);
}

.dg-header__mobile-link:hover {
    color: var(--dg-text-primary);
    background: var(--dg-bg-hover);
}

.dg-header__mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 24px;
    border-top: 1px solid var(--dg-border);
    margin-top: 4px;
}

/* ─── Hero ───────────────────────────────────────────────── */
.dg-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 120px;
    overflow: hidden;
}

.dg-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(240, 185, 11, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.dg-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.4;
}

.dg-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
}

.dg-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    background: var(--dg-gold-glow);
    border: 1px solid rgba(240, 185, 11, 0.15);
    color: var(--dg-gold);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
}

.dg-hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dg-gold);
    animation: dg-pulse 2s ease-in-out infinite;
}

@keyframes dg-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.dg-hero__title {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dg-text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.dg-hero__title-gold {
    color: var(--dg-gold);
}

.dg-hero__subtitle {
    font-size: clamp(15px, 2.5vw, 18px);
    color: var(--dg-text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
}

.dg-hero__cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.dg-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--dg-radius-md);
    font-family: var(--dg-font);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--dg-transition);
}

.dg-hero__cta--primary {
    background: var(--dg-gold);
    color: #0b0e11;
    box-shadow: 0 4px 24px rgba(240, 185, 11, 0.25);
}

.dg-hero__cta--primary:hover {
    background: #d4a50a;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(240, 185, 11, 0.35);
}

.dg-hero__cta--secondary {
    background: var(--dg-bg-elevated);
    color: var(--dg-text-primary);
    border: 1px solid var(--dg-border);
}

.dg-hero__cta--secondary:hover {
    background: var(--dg-bg-hover);
    border-color: var(--dg-border-light);
    transform: translateY(-2px);
}


/* Grid pattern */
.grid-pattern {
  background-image: 
    linear-gradient(rgba(255, 215, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
}
/* Stats Row */
.dg-stats-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.dg-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--dg-bg-secondary);
    border: 1px solid var(--dg-border);
    border-radius: var(--dg-radius-md);
    padding: 14px 20px;
}

.dg-stat__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--dg-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dg-stat__icon--gold   { background: var(--dg-gold-glow); color: var(--dg-gold); }
.dg-stat__icon--silver { background: rgba(192,192,192,0.1); color: var(--dg-silver); }
.dg-stat__icon--coin   { background: var(--dg-gold-glow); color: var(--dg-gold); }

.dg-stat__value {
    font-size: 22px;
    font-weight: 800;
    color: var(--dg-gold);
    font-family: var(--dg-font-mono);
    direction: ltr;
    text-align: right;
}

.dg-stat__label {
    font-size: 12px;
    color: var(--dg-text-muted);
    margin-top: 2px;
}

/* ─── Sections ───────────────────────────────────────────── */
.dg-section {
    padding: 80px 24px;
}

.dg-section--alt {
    background: var(--dg-bg-secondary);
}

.dg-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.dg-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.dg-section__title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: var(--dg-text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.dg-section__desc {
    font-size: 16px;
    color: var(--dg-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ─── Prices Grid ────────────────────────────────────────── */
.dg-prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px;
}

.dg-price-card {
    background: var(--dg-bg-secondary);
    border: 1px solid var(--dg-border);
    border-radius: var(--dg-radius-lg);
    padding: 20px;
    transition: all var(--dg-transition);
}

.dg-price-card:hover {
    border-color: var(--dg-border-light);
    transform: translateY(-2px);
}

.dg-price-card--up  { border-color: rgba(14, 203, 129, 0.2); }
.dg-price-card--down { border-color: rgba(246, 70, 93, 0.2); }

.dg-price-card__head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.dg-price-card__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dg-price-card__dot--gold   { background: var(--dg-gold); box-shadow: 0 0 8px var(--dg-gold-glow); }
.dg-price-card__dot--silver { background: var(--dg-silver); }
.dg-price-card__dot--coin   { background: var(--dg-gold); opacity: 0.7; }

.dg-price-card__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dg-text-primary);
    flex: 1;
}

.dg-price-card__badge {
    font-family: var(--dg-font-mono);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    direction: ltr;
}

.dg-price-card--up .dg-price-card__badge   { background: var(--dg-green-bg); color: var(--dg-green); }
.dg-price-card--down .dg-price-card__badge { background: var(--dg-red-bg); color: var(--dg-red); }
.dg-price-card__badge { background: rgba(94,102,115,0.1); color: var(--dg-text-muted); }

.dg-price-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dg-price-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dg-price-card__row-label {
    font-size: 12px;
    color: var(--dg-text-muted);
}

.dg-price-card__row-value {
    font-family: var(--dg-font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--dg-text-primary);
    direction: ltr;
}

.dg-price-card__unit {
    font-size: 11px;
    color: var(--dg-text-muted);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--dg-border);
}

/* ─── Features Grid ──────────────────────────────────────── */
.dg-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
}

.dg-feature-card {
    background: var(--dg-bg-primary);
    border: 1px solid var(--dg-border);
    border-radius: var(--dg-radius-lg);
    padding: 28px 24px;
    transition: all var(--dg-transition);
}

.dg-feature-card:hover {
    border-color: var(--dg-border-light);
    transform: translateY(-2px);
}

.dg-feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--dg-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.dg-feature-card__icon--gold   { background: var(--dg-gold-glow);   color: var(--dg-gold); }
.dg-feature-card__icon--green  { background: var(--dg-green-bg);    color: var(--dg-green); }
.dg-feature-card__icon--blue   { background: var(--dg-blue-bg);     color: var(--dg-blue); }
.dg-feature-card__icon--purple { background: var(--dg-purple-bg);   color: var(--dg-purple); }
.dg-feature-card__icon--red    { background: var(--dg-red-bg);      color: var(--dg-red); }
.dg-feature-card__icon--teal   { background: var(--dg-teal-bg);     color: var(--dg-teal); }

.dg-feature-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dg-text-primary);
    margin-bottom: 8px;
}

.dg-feature-card__desc {
    font-size: 13px;
    color: var(--dg-text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.dg-feature-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dg-feature-card__list li {
    font-size: 12px;
    color: var(--dg-text-muted);
    padding-right: 16px;
    position: relative;
    line-height: 1.6;
}

.dg-feature-card__list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--dg-gold-dim);
}

/* ─── Gift Section ───────────────────────────────────────── */
.dg-gift-showcase {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

.dg-gift-showcase__title {
    font-size: 22px;
    font-weight: 800;
    color: var(--dg-text-primary);
    margin-bottom: 24px;
}

.dg-gift-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.dg-gift-step {
    display: flex;
    gap: 16px;
}

.dg-gift-step__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--dg-gold-glow);
    border: 1px solid rgba(240, 185, 11, 0.2);
    color: var(--dg-gold);
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.dg-gift-step h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dg-text-primary);
    margin-bottom: 4px;
}

.dg-gift-step p {
    font-size: 13px;
    color: var(--dg-text-secondary);
    line-height: 1.7;
}

.dg-gift-assets {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.dg-gift-asset {
    padding: 6px 14px;
    border-radius: 100px;
    background: var(--dg-gold-glow);
    border: 1px solid rgba(240, 185, 11, 0.15);
    color: var(--dg-gold);
    font-size: 12px;
    font-weight: 600;
}

/* Gift card preview */
.dg-gift-card-preview {
    background: var(--dg-bg-primary);
    border: 1px solid var(--dg-border);
    border-radius: var(--dg-radius-xl);
    overflow: hidden;
}

.dg-gift-card-preview__header {
    background: var(--dg-gold-glow);
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid rgba(240, 185, 11, 0.1);
}

.dg-gift-card-preview__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.dg-gift-card-preview__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dg-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dg-gift-card-preview__amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--dg-gold);
    font-family: var(--dg-font-mono);
}

.dg-gift-card-preview__to {
    font-size: 14px;
    color: var(--dg-text-secondary);
}

.dg-gift-card-preview__status {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 100px;
    background: var(--dg-green-bg);
    color: var(--dg-green);
    font-size: 13px;
    font-weight: 600;
    margin-top: 4px;
}

/* ─── Parsian Coin Section ───────────────────────────────── */
.dg-parsian-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.dg-parsian-info__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--dg-text-primary);
    margin-bottom: 12px;
}

.dg-parsian-info__desc {
    font-size: 14px;
    color: var(--dg-text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.dg-parsian-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dg-parsian-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.dg-parsian-feature svg {
    color: var(--dg-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.dg-parsian-feature strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--dg-text-primary);
    margin-bottom: 2px;
}

.dg-parsian-feature p {
    font-size: 13px;
    color: var(--dg-text-secondary);
    line-height: 1.6;
}

.dg-parsian-process {
    background: var(--dg-bg-secondary);
    border: 1px solid var(--dg-border);
    border-radius: var(--dg-radius-xl);
    padding: 28px 24px;
}

.dg-parsian-process__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--dg-text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--dg-border);
}

.dg-parsian-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.dg-parsian-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--dg-text-secondary);
    line-height: 1.7;
}

.dg-parsian-step__num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--dg-gold-glow);
    border: 1px solid rgba(240, 185, 11, 0.2);
    color: var(--dg-gold);
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dg-parsian-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 14px 16px;
    background: var(--dg-bg-elevated);
    border-radius: var(--dg-radius-md);
    border: 1px solid var(--dg-border);
    font-size: 12px;
    color: var(--dg-text-muted);
    line-height: 1.6;
}

.dg-parsian-note svg {
    flex-shrink: 0;
    color: var(--dg-gold-dim);
    margin-top: 1px;
}

/* ─── CTA Section ────────────────────────────────────────── */
.dg-cta-section {
    padding: 80px 24px;
    background: var(--dg-bg-secondary);
    text-align: center;
    border-top: 1px solid var(--dg-border);
    border-bottom: 1px solid var(--dg-border);
}

.dg-cta-section__inner {
    max-width: 600px;
    margin: 0 auto;
}

.dg-cta-section__title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: var(--dg-text-primary);
    margin-bottom: 14px;
}

.dg-cta-section__desc {
    font-size: 16px;
    color: var(--dg-text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.dg-cta-section__buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ─── Footer ─────────────────────────────────────────────── */
.dg-footer {
    padding: 40px 24px 80px; /* extra bottom for ticker bar */
    border-top: 1px solid var(--dg-border);
}

.dg-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.dg-footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--dg-gold-dim);
    font-size: 15px;
}

.dg-footer__copy {
    font-size: 13px;
    color: var(--dg-text-muted);
}

.dg-footer__copy a {
    color: var(--dg-gold-dim);
    text-decoration: none;
}

.dg-footer__copy a:hover {
    color: var(--dg-gold);
}

.dg-footer__dev {
    font-size: 12px;
    color: var(--dg-text-muted);
    margin-top: 8px;
    opacity: 0.7;
}

.dg-footer__dev a {
    color: var(--dg-gold-dim);
    text-decoration: none;
    transition: color 0.2s;
}

.dg-footer__dev a:hover {
    color: var(--dg-gold);
}

/* ─── Ticker Bar ─────────────────────────────────────────── */
.dg-ticker-wrapper {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 999;
    height: 52px;
    background: var(--dg-bg-secondary);
    border-top: 1px solid var(--dg-border);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.dg-ticker-track {
    display: flex;
    align-items: center;
    animation: dg-ticker-scroll 35s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.dg-ticker-wrapper:hover .dg-ticker-track {
    animation-play-state: paused;
}

@keyframes dg-ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.dg-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 28px;
    border-left: 1px solid var(--dg-border);
    height: 52px;
    flex-shrink: 0;
}

.dg-ticker-item__name {
    font-size: 13px;
    font-weight: 600;
    color: var(--dg-text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.dg-ticker-item__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dg-ticker-item__dot--gold   { background: var(--dg-gold); box-shadow: 0 0 6px var(--dg-gold-glow); }
.dg-ticker-item__dot--silver { background: var(--dg-silver); }
.dg-ticker-item__dot--coin   { background: var(--dg-gold); opacity: 0.7; }

.dg-ticker-item__price {
    font-family: var(--dg-font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--dg-text-primary);
    direction: ltr;
}

.dg-ticker-item__change {
    font-family: var(--dg-font-mono);
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    direction: ltr;
}

.dg-ticker-item__change--up      { color: var(--dg-green); background: var(--dg-green-bg); }
.dg-ticker-item__change--down    { color: var(--dg-red); background: var(--dg-red-bg); }
.dg-ticker-item__change--neutral { color: var(--dg-text-muted); background: rgba(94,102,115,0.1); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .dg-gift-showcase {
        grid-template-columns: 1fr;
    }

    .dg-gift-showcase__visual {
        display: flex;
        justify-content: center;
    }

    .dg-gift-card-preview {
        max-width: 340px;
    }

    .dg-parsian-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dg-header__nav {
        display: none;
    }

    .dg-header__actions {
        display: none;
    }

    .dg-header__menu-toggle {
        display: block;
    }

    .dg-hero {
        padding: 90px 16px 100px;
        min-height: auto;
    }

    .dg-hero__cta-group {
        flex-direction: column;
    }

    .dg-hero__cta {
        width: 100%;
        justify-content: center;
    }

    .dg-stats-row {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .dg-section {
        padding: 60px 16px;
    }

    .dg-features-grid {
        grid-template-columns: 1fr;
    }

    .dg-cta-section__buttons {
        flex-direction: column;
    }

    .dg-cta-section__buttons .dg-hero__cta {
        width: 100%;
        justify-content: center;
    }

    .dg-footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .dg-ticker-track {
        animation-duration: 22s;
    }
}

@media (max-width: 480px) {
    .dg-header__logo-text {
        font-size: 14px;
    }

    .dg-stat__value {
        font-size: 18px;
    }
}
