/* ==================================================
       ROOT VARIABLES (from your Diginix CSS)
    ================================================== */
    :root {
      --primary: #B22222;
      --primary-dark: #8B0000;
      --secondary: #E25822;
      --accent: #FF7F50;
      --gradient: linear-gradient(135deg, #8B0000, #E25822, #FF7F50);
      --shadow-sm: 0 5px 15px rgba(0,0,0,.06);
      --shadow-md: 0 10px 30px rgba(0,0,0,.08);
      --shadow-lg: 0 20px 40px rgba(0,0,0,.12);
      --radius: 18px;
      --transition: all .3s ease;
    }
 
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Outfit', sans-serif; background: #0a0a0a; }
 
    /* ==================================================
       MARQUEE SECTION
    ================================================== */
    .dgnx-section {
      font-family: 'Outfit', sans-serif;
      background: #0a0a0a;
      overflow: hidden;
      position: relative;
      padding: 0;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
 
    /* Background grid */
    .dgnx-bg-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(178,34,34,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(178,34,34,0.06) 1px, transparent 1px);
      background-size: 60px 60px;
      z-index: 0;
    }
 
    /* Glow blobs */
    .dgnx-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      z-index: 0;
      pointer-events: none;
    }
    .dgnx-glow-1 { width:400px; height:400px; background:rgba(178,34,34,0.18); top:-100px; left:-100px; }
    .dgnx-glow-2 { width:300px; height:300px; background:rgba(226,88,34,0.14); bottom:-80px; right:-80px; }
    .dgnx-glow-3 { width:200px; height:200px; background:rgba(255,127,80,0.10); top:40%; left:50%; transform:translate(-50%,-50%); }
 
    /* ==================================================
       MARQUEE ROWS
    ================================================== */
    .dgnx-marquee-row {
      display: flex;
      align-items: center;
      overflow: hidden;
      border-top: 1px solid rgba(178,34,34,0.18);
      border-bottom: 1px solid rgba(178,34,34,0.18);
      position: relative;
      z-index: 2;
    }
 
    .dgnx-marquee-row + .dgnx-marquee-row {
      border-top: none;
      margin-top: 6px;
    }
 
    .dgnx-track {
      display: flex;
      align-items: center;
      white-space: nowrap;
      will-change: transform;
    }
 
    .dgnx-track.ltr  { animation: marquee-ltr 18s linear infinite; }
    .dgnx-track.rtl  { animation: marquee-rtl 22s linear infinite; }
    .dgnx-track.ltr2 { animation: marquee-ltr 26s linear infinite; }
 
    @keyframes marquee-ltr {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    @keyframes marquee-rtl {
      from { transform: translateX(-50%); }
      to   { transform: translateX(0); }
    }
 
    /* ==================================================
       WORD STYLES
    ================================================== */
    .dgnx-word {
      font-size: clamp(52px, 9vw, 110px);
      font-weight: 900;
      letter-spacing: -2px;
      padding: 12px 32px;
      line-height: 1;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 24px;
    }
 
    .dgnx-word.outline {
      color: transparent;
      -webkit-text-stroke: 2px rgba(255,255,255,0.18);
    }
 
    .dgnx-word.filled {
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
 
    .dgnx-word.white  { color: rgba(255,255,255,0.92); }
    .dgnx-word.red    { color: var(--primary); }
 
    .dgnx-sep {
      display: inline-block;
      width: 10px; height: 10px;
      background: var(--gradient);
      border-radius: 2px;
      transform: rotate(45deg);
      flex-shrink: 0;
      margin: 0 4px;
    }
 
    .dgnx-badge {
      display: inline-block;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 18px;
      border-radius: 50px;
      border: 1.5px solid rgba(178,34,34,0.5);
      color: var(--accent);
      background: rgba(178,34,34,0.12);
      vertical-align: middle;
      line-height: 1;
      margin: 0 8px;
    }
 
    /* ==================================================
       CENTER INFO BLOCK
    ================================================== */
    .dgnx-center {
      position: relative;
      z-index: 5;
      text-align: center;
      padding: 42px 24px 36px;
    }
 
    .dgnx-tagline {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 14px;
    }
 
    .dgnx-headline {
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 800;
      color: #fff;
      line-height: 1.25;
      margin-bottom: 10px;
    }
 
    .dgnx-headline span {
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
 
    .dgnx-sub {
      font-size: 15px;
      color: rgba(255,255,255,0.52);
      max-width: 520px;
      margin: 0 auto 28px;
      line-height: 1.7;
    }
 
    .dgnx-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-bottom: 28px;
    }
 
    .dgnx-pill {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 8px 20px;
      border-radius: 50px;
      border: 1.5px solid rgba(178,34,34,0.38);
      color: rgba(255,255,255,0.75);
      background: rgba(178,34,34,0.10);
      transition: all .25s ease;
      cursor: default;
    }
 
    .dgnx-pill:hover {
      background: rgba(178,34,34,0.28);
      border-color: var(--accent);
      color: #fff;
      transform: translateY(-2px);
    }
 
    .dgnx-cta {
      display: inline-block;
      background: var(--gradient);
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      font-family: 'Outfit', sans-serif;
      padding: 14px 34px;
      border-radius: 50px;
      letter-spacing: 0.5px;
      transition: all .25s ease;
      box-shadow: 0 8px 32px rgba(178,34,34,0.35);
      cursor: pointer;
      border: none;
      text-decoration: none;
    }
 
    .dgnx-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 40px rgba(178,34,34,0.5);
      color: #fff;
    }
 
    /* Divider */
    .dgnx-rule {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 0 32px;
      position: relative;
      z-index: 2;
    }
    .dgnx-rule-line {
      flex: 1; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(178,34,34,0.35), transparent);
    }
    .dgnx-rule-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gradient);
      flex-shrink: 0;
    }
 
    /* Scroll hint */
    .dgnx-scroll-hint {
      position: relative;
      z-index: 5;
      text-align: center;
      padding-bottom: 28px;
      color: rgba(255,255,255,0.28);
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }
    .dgnx-arrow-down {
      width: 1px; height: 32px;
      background: linear-gradient(to bottom, rgba(178,34,34,0.6), transparent);
      margin: 0 auto;
      animation: pulse-down 1.8s ease-in-out infinite;
    }
    @keyframes pulse-down {
      0%,100% { opacity: 0.3; transform: scaleY(0.85); }
      50%      { opacity: 1;   transform: scaleY(1); }
    }
 
    /* ==================================================
       RESPONSIVE
    ================================================== */
    @media (max-width: 767px) {
      .dgnx-word { font-size: clamp(38px, 11vw, 70px); padding: 10px 18px; }
      .dgnx-center { padding: 30px 16px 24px; }
    }