﻿:root {
      --ink: #151123;
      --muted: #6f687b;
      --purple: #5d006b;
      --purple-2: #8f00ad;
      --gold: #ffd45a;
      --gold-2: #ffad18;
      --red: #e3263f;
      --line: #eee7f4;
      --soft: #f8f5fb;
      --shadow: 0 20px 42px rgba(35, 16, 55, .13);
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    body {
      margin: 0;
      color: var(--ink);
      font-family: Arial, Helvetica, sans-serif;
      background: #fff;
    }
    a { color: inherit; text-decoration: none; }
    .wrap { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; }

    .topbar {
      background: #151319;
      color: #fff;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .topbar .wrap {
      min-height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 950;
      letter-spacing: .2px;
    }
    .brand-mark {
      width: 54px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      color: #7d004c;
      background: linear-gradient(145deg, #fff4bd, #ffb31b);
      box-shadow: inset 0 -5px 0 rgba(108, 51, 0, .16);
      font-size: 20px;
    }
    .brand-text {
      font-size: 38px;
      line-height: 1;
    }
    .brand-text span { color: var(--gold); }
    .actions { display: flex; align-items: center; gap: 12px; }
    .btn {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 22px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 13px;
      font-weight: 950;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .btn-gold {
      color: #3a2100;
      background: linear-gradient(180deg, var(--gold), var(--gold-2));
      box-shadow: 0 12px 26px rgba(255, 173, 24, .28);
    }
    .btn-outline {
      color: #fff;
      border-color: rgba(255,255,255,.55);
      background: rgba(255,255,255,.05);
    }
    .nav {
      color: #fff;
      background: linear-gradient(180deg, #9700b7, #6d007d);
      box-shadow: 0 8px 24px rgba(109, 0, 125, .22);
    }
    .nav .wrap {
      min-height: 52px;
      display: flex;
      justify-content: center;
      gap: 2px;
      overflow-x: auto;
    }
    .nav a {
      display: flex;
      align-items: center;
      padding: 0 22px;
      font-size: 13px;
      font-weight: 950;
      text-transform: uppercase;
    }
    .nav a.active {
      color: #4b2400;
      background: linear-gradient(180deg, #ffe079, #ffb928);
      box-shadow: inset 0 -4px 0 rgba(116, 58, 0, .2);
    }

    .hero {
      min-height: 498px;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(18,7,31,.98) 0%, rgba(31,10,45,.86) 36%, rgba(54,7,77,.34) 66%, rgba(54,7,77,.08) 100%),
        linear-gradient(180deg, rgba(0,0,0,0) 68%, rgba(22,7,32,.94)),
        url("daga-hero.webp") center / cover no-repeat;
    }
    .hero .wrap {
      min-height: 498px;
      display: grid;
      grid-template-columns: minmax(0, 560px) 1fr;
      align-items: center;
      padding: 62px 0;
    }
    .hero h1 {
      margin: 0;
      font-size: 58px;
      line-height: .98;
      text-transform: uppercase;
      font-weight: 950;
      text-shadow: 0 6px 0 rgba(0,0,0,.3);
    }
    .hero h1 span { color: var(--gold); }
    .hero p {
      max-width: 550px;
      margin: 24px 0 30px;
      color: #f4ecff;
      font-size: 18px;
      line-height: 1.7;
      font-weight: 750;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
    .hero-link {
      margin-top: 24px;
      font-size: 15px;
      font-weight: 900;
      color: #fff4c4;
    }

    .notice {
      padding: 42px 0 18px;
      background: #fff;
    }
    .notice-card {
      display: grid;
      grid-template-columns: 78px 1fr auto;
      align-items: center;
      gap: 22px;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background:
        radial-gradient(circle at 92% 12%, rgba(255,212,90,.28), transparent 28%),
        #fff;
      box-shadow: var(--shadow);
    }
    .shield {
      width: 76px;
      height: 76px;
      display: grid;
      place-items: center;
      border-radius: 20px;
      color: #5b0070;
      background: #fff5cd;
      border: 1px solid #ffe08e;
      font-size: 34px;
      font-weight: 950;
    }
    .notice h2 {
      margin: 0 0 8px;
      color: var(--purple);
      font-size: 27px;
      line-height: 1.2;
      font-weight: 950;
    }
    .notice p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.6;
      font-weight: 700;
    }

    .article-intro {
      padding: 34px 0 28px;
      background: #fff;
    }
    .intro-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 390px;
      gap: 34px;
      align-items: start;
    }
    .copy h2,
    .section-title h2 {
      margin: 0;
      color: var(--ink);
      font-size: 34px;
      line-height: 1.18;
      font-weight: 950;
      text-transform: uppercase;
    }
    .copy h2 span,
    .section-title h2 span { color: var(--purple-2); }
    .copy p {
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.78;
      font-weight: 650;
    }
    .check-list {
      display: grid;
      gap: 11px;
      margin-top: 22px;
      padding: 0;
      list-style: none;
    }
    .check-list li {
      display: flex;
      gap: 10px;
      color: #2a2340;
      font-size: 15px;
      font-weight: 850;
      line-height: 1.45;
    }
    .check-list li::before {
      content: "";
      width: 10px;
      height: 10px;
      flex: 0 0 auto;
      margin-top: 5px;
      border-radius: 50%;
      background: var(--purple-2);
      box-shadow: 0 0 0 5px rgba(143,0,173,.11);
    }
    .side-promo {
      min-height: 252px;
      padding: 26px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      color: #fff;
      border-radius: 18px;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(26,7,40,.12), rgba(26,7,40,.94)),
        url("daga-card-sprite.png") 0% 0% / 300% 300% no-repeat;
      box-shadow: var(--shadow);
    }
    .side-promo h3 {
      max-width: 280px;
      margin: 0 0 14px;
      font-size: 24px;
      line-height: 1.18;
      font-weight: 950;
    }

    .game-section {
      padding: 26px 0 54px;
      background: #fff;
    }
    .section-title {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 22px;
    }
    .section-title a {
      color: var(--purple);
      font-size: 13px;
      font-weight: 950;
      text-transform: uppercase;
    }
    .game-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }
    .game-card {
      min-height: 245px;
      overflow: hidden;
      border-radius: 14px;
      background: #160d22;
      box-shadow: 0 18px 36px rgba(26, 9, 38, .16);
    }
    .game-img {
      height: 112px;
      background:
        linear-gradient(180deg, rgba(0,0,0,0), rgba(22,13,34,.38)),
        url("daga-card-sprite.png") var(--sprite, 0% 0%) / 300% 300% no-repeat;
    }
    .game-body {
      padding: 16px 14px 18px;
      color: #fff;
      text-align: center;
    }
    .game-body h3 {
      margin: 0;
      color: var(--gold);
      font-size: 18px;
      font-weight: 950;
      text-transform: uppercase;
    }
    .game-body p {
      min-height: 45px;
      margin: 9px 0 13px;
      color: #eadffc;
      font-size: 13px;
      line-height: 1.45;
      font-weight: 700;
    }
    .mini-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 30px;
      padding: 0 14px;
      border-radius: 999px;
      color: #3b2500;
      background: #fff;
      font-size: 12px;
      font-weight: 950;
    }

    .content-band {
      padding: 54px 0;
      background: linear-gradient(180deg, #faf6fd, #fff);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .story-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 1fr;
      gap: 26px;
      align-items: stretch;
    }
    .story-card,
    .info-table {
      overflow: hidden;
      border-radius: 16px;
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: var(--shadow);
    }
    .story-media {
      height: 226px;
      background:
        linear-gradient(180deg, rgba(0,0,0,0), rgba(18,7,31,.35)),
        url("daga-card-sprite.png") 50% 100% / 300% 300% no-repeat;
    }
    .story-body { padding: 26px; }
    .story-body h2 {
      margin: 0 0 14px;
      color: var(--ink);
      font-size: 28px;
      line-height: 1.2;
      font-weight: 950;
    }
    .story-body p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
      font-weight: 650;
    }
    .info-table table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
    }
    .info-table th,
    .info-table td {
      padding: 20px 22px;
      border-bottom: 1px solid var(--line);
      text-align: left;
      vertical-align: top;
      line-height: 1.55;
    }
    .info-table th {
      width: 135px;
      color: var(--purple);
      background: #fbf5ff;
      font-weight: 950;
    }
    .info-table td {
      color: var(--muted);
      font-weight: 700;
    }

    .news {
      padding: 58px 0 46px;
      background: #fff;
    }
    .news-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .news-card {
      overflow: hidden;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: 0 16px 32px rgba(35,16,55,.09);
    }
    .news-img {
      position: relative;
      display: block;
      height: 138px;
      background:
        linear-gradient(180deg, rgba(0,0,0,0), rgba(22,13,34,.44)),
        url("daga-card-sprite.png") var(--sprite, 0% 0%) / 300% 300% no-repeat;
    }
    .tag {
      position: absolute;
      left: 14px;
      top: 14px;
      padding: 8px 11px;
      border-radius: 8px;
      color: #fff;
      background: var(--purple-2);
      font-size: 11px;
      font-weight: 950;
      text-transform: uppercase;
    }
    .news-body { padding: 17px; }
    .news-grid .news-card:nth-child(9n+1) .news-img { --sprite: 100% 50%; }
    .news-grid .news-card:nth-child(9n+2) .news-img { --sprite: 50% 100%; }
    .news-grid .news-card:nth-child(9n+3) .news-img { --sprite: 0% 100%; }
    .news-grid .news-card:nth-child(9n+4) .news-img { --sprite: 100% 100%; }
    .news-grid .news-card:nth-child(9n+5) .news-img { --sprite: 0% 0%; }
    .news-grid .news-card:nth-child(9n+6) .news-img { --sprite: 50% 0%; }
    .news-grid .news-card:nth-child(9n+7) .news-img { --sprite: 100% 0%; }
    .news-grid .news-card:nth-child(9n+8) .news-img { --sprite: 0% 50%; }
    .news-grid .news-card:nth-child(9n+9) .news-img { --sprite: 50% 50%; }
    .date {
      color: #93879f;
      font-size: 12px;
      font-weight: 850;
    }
    .news-body h3 {
      min-height: 57px;
      margin: 8px 0 10px;
      color: #201432;
      font-size: 18px;
      line-height: 1.2;
      font-weight: 950;
    }
    .news-body p {
      min-height: 70px;
      margin: 0 0 12px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
      font-weight: 650;
    }
    .readmore {
      color: var(--purple-2);
      font-size: 13px;
      font-weight: 950;
    }

    .steps {
      padding: 56px 0;
      background: var(--soft);
    }
    .step-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 24px;
    }
    .step {
      min-height: 156px;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
      box-shadow: 0 14px 28px rgba(35,16,55,.08);
    }
    .num {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #3a2400;
      background: linear-gradient(180deg, var(--gold), var(--gold-2));
      font-size: 14px;
      font-weight: 950;
    }
    .step h3 {
      margin: 16px 0 8px;
      color: var(--ink);
      font-size: 17px;
      font-weight: 950;
    }
    .step p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
      font-weight: 650;
    }

    .footer {
      color: #fff;
      background: #5a0063;
    }
    .footer .wrap {
      display: grid;
      grid-template-columns: 1.5fr repeat(3, 1fr);
      gap: 40px;
      padding: 52px 0;
    }
    .footer-logo {
      margin-bottom: 16px;
      font-size: 38px;
      font-weight: 950;
    }
    .footer-logo span { color: var(--gold); }
    .footer p,
    .footer a {
      color: #f0d9f4;
      font-size: 14px;
      line-height: 1.7;
      font-weight: 650;
    }
    .footer h3 {
      margin: 0 0 16px;
      color: var(--gold);
      font-size: 15px;
      font-weight: 950;
      text-transform: uppercase;
    }
    .footer-links {
      display: grid;
      gap: 9px;
    }
    .copybar {
      padding: 17px 0;
      color: rgba(255,255,255,.72);
      background: #37003d;
      text-align: center;
      font-size: 12px;
      font-weight: 700;
    }

    .article-hero {
      color: #fff;
      background:
        linear-gradient(90deg, rgba(18,7,31,.98), rgba(40,8,56,.82)),
        url("daga-card-sprite.png") 50% 100% / 300% 300% no-repeat;
    }
    .article-hero .wrap {
      min-height: 330px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 58px 0 64px;
    }
    .article-hero h1 {
      max-width: 920px;
      margin: 0;
      font-size: 46px;
      line-height: 1.08;
      font-weight: 950;
      text-transform: uppercase;
      text-shadow: 0 5px 0 rgba(0,0,0,.28);
    }
    .article-hero p {
      max-width: 720px;
      margin: 18px 0 0;
      color: #f4ecff;
      font-size: 17px;
      line-height: 1.7;
      font-weight: 750;
    }
    .article-section {
      padding: 52px 0;
      background: linear-gradient(180deg, #fff, #faf6fd);
    }
    .article-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 310px;
      gap: 28px;
      align-items: start;
    }
    .article-card,
    .article-aside {
      border: 1px solid var(--line);
      border-radius: 16px;
      background: #fff;
      box-shadow: var(--shadow);
    }
    .article-card { padding: 34px; }
    .article-card h1 {
      margin: 0;
      color: var(--ink);
      font-size: 36px;
      line-height: 1.16;
      font-weight: 950;
    }
    .article-meta {
      margin: 16px 0 26px;
      color: #93879f;
      font-size: 14px;
      font-weight: 800;
    }
    .article-body {
      color: #312842;
      font-size: 17px;
      line-height: 1.78;
      font-weight: 550;
    }
    .article-body h2,
    .article-body h3 {
      margin: 30px 0 12px;
      color: var(--purple-2);
      line-height: 1.22;
      font-weight: 950;
    }
    .article-body p { margin: 0 0 16px; }
    .article-body a {
      color: var(--purple-2);
      font-weight: 900;
    }
    .article-aside {
      position: sticky;
      top: 20px;
      padding: 24px;
    }
    .article-aside h2 {
      margin: 0 0 16px;
      color: var(--ink);
      font-size: 22px;
      font-weight: 950;
    }
    .article-aside a {
      display: block;
      margin-top: 10px;
      padding: 14px 16px;
      border-radius: 10px;
      color: var(--ink);
      background: #fbf5ff;
      border: 1px solid var(--line);
      font-weight: 900;
    }
    .pagination {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
    }
    .pagination li,
    .pagination a,
    .pagination span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 36px;
      min-width: 36px;
      padding: 0 12px;
      border-radius: 10px;
      color: var(--ink);
      background: #fff;
      border: 1px solid var(--line);
      font-size: 13px;
      font-weight: 850;
    }

    @media (max-width: 860px) {
      .wrap { width: min(100% - 28px, var(--max)); }
      .topbar .wrap { flex-direction: column; padding: 16px 0; }
      .brand-text { font-size: 30px; }
      .nav .wrap { justify-content: flex-start; }
      .nav a { padding: 0 14px; }
      .hero .wrap {
        grid-template-columns: 1fr;
        min-height: 540px;
      }
      .hero h1 { font-size: 40px; }
      .hero p { font-size: 16px; }
      .notice-card,
      .intro-grid,
      .story-grid,
      .article-layout,
      .footer .wrap {
        grid-template-columns: 1fr;
      }
      .notice-card { text-align: left; }
      .notice-card .btn { justify-self: start; }
      .game-grid,
      .news-grid,
      .step-grid {
        grid-template-columns: 1fr;
      }
      .section-title {
        align-items: flex-start;
        flex-direction: column;
      }
      .copy h2,
      .section-title h2 { font-size: 28px; }
      .article-hero h1 { font-size: 36px; }
      .article-card { padding: 24px; }
      .side-promo { min-height: 220px; }
      .game-card { min-height: 218px; }
    }
