@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&family=Poppins:wght@700;800&display=swap');

:root {
  --bg: #16161e;
  --bg-2: #1c1c28;
  --bg-card: #22223a;
  --bg-raised: #2a2a44;
  --purple: #8b5cf6;
  --purple-dk: #7c3aed;
  --purple-lt: rgba(139,92,246,.14);
  --cyan: #06b6d4;
  --cyan-dk: #0891b2;
  --cyan-lt: rgba(6,182,212,.12);
  --rose: #f43f5e;
  --rose-lt: rgba(244,63,94,.1);
  --amber: #fbbf24;
  --amber-lt: rgba(251,191,36,.1);
  --txt: #e2e8f0;
  --txt-2: #94a3b8;
  --txt-3: #64748b;
  --border: #2e2e4a;
  --border-lt: #393958;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.4);
  --shadow-md: 0 8px 28px rgba(0,0,0,.5);
  --shadow-lg: 0 16px 52px rgba(0,0,0,.55);
  --max: 1240px;
  --r: 10px;
  --r-sm: 5px;
  --r-lg: 18px;
  --tr: .22s ease;
}

*, ::before, ::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Nunito', sans-serif; background: var(--bg); color: var(--txt); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--purple); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--cyan); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.ds-wrap { max-width: var(--max); margin-inline: auto; padding-inline: 22px; }

.ds-topbar { background: linear-gradient(90deg, var(--purple-dk), var(--cyan-dk)); padding: 9px 0; }
.ds-topbar__inner { max-width: var(--max); margin-inline: auto; padding-inline: 22px; display: flex; align-items: center; justify-content: center; gap: 14px; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.9); }
.ds-topbar__link { color: var(--white); text-decoration: underline; text-underline-offset: 2px; display: inline-flex; align-items: center; gap: 5px; transition: opacity var(--tr); }
.ds-topbar__link:hover { opacity: .8; color: var(--white); }

.ds-header { position: fixed; top: 36px; left: 0; right: 0; z-index: 800; background: rgba(22,22,30,.94); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); transition: all var(--tr); }
.ds-header.pinned { top: 0; box-shadow: var(--shadow-md); }
.ds-header__inner { max-width: var(--max); margin-inline: auto; padding-inline: 22px; height: 64px; display: flex; align-items: center; gap: 24px; }
.ds-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; margin-right: auto; }
.ds-logo__img { height: 34px; width: auto; }
.ds-logo__text { font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--white); letter-spacing: -.3px; }
.ds-logo__text span { color: var(--purple); }

.ds-nav { display: flex; align-items: center; gap: 2px; }
.ds-nav__link { padding: 7px 12px; border-radius: var(--r-sm); color: var(--txt-2); font-size: .875rem; font-weight: 600; text-decoration: none; transition: all var(--tr); white-space: nowrap; }
.ds-nav__link:hover, .ds-nav__link.on { color: var(--white); background: rgba(255,255,255,.07); }

.ds-header__cta { background: var(--purple); color: var(--white); padding: 9px 20px; border-radius: var(--r-sm); font-size: .875rem; font-weight: 700; text-decoration: none; transition: all var(--tr); flex-shrink: 0; margin-left: 8px; }
.ds-header__cta:hover { background: var(--purple-dk); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(139,92,246,.4); }

.ds-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.ds-burger__line { display: block; width: 22px; height: 2px; background: var(--txt); border-radius: 2px; transition: all .3s; }
.ds-burger.open .ds-burger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ds-burger.open .ds-burger__line:nth-child(2) { opacity: 0; }
.ds-burger.open .ds-burger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.ds-offcanvas { display: none; position: fixed; top: 100px; inset-inline: 0; bottom: 0; background: rgba(22,22,30,.98); overflow-y: auto; padding: 16px 22px 40px; z-index: 790; border-top: 1px solid var(--border); }
.ds-offcanvas.open { display: block; }
.ds-offcanvas__link { display: block; padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--txt); font-size: .9rem; font-weight: 600; text-decoration: none; transition: color var(--tr); }
.ds-offcanvas__link:hover { color: var(--purple); }
.ds-offcanvas__cta { display: block; background: var(--purple); color: var(--white); text-align: center; padding: 14px; border-radius: var(--r); font-weight: 700; margin-top: 22px; text-decoration: none; }

.ds-hero { padding-top: 100px; min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; }
.ds-hero__bg { position: absolute; inset: 0; background-image: url('../gorsel/hero-bg.jpg'); background-size: cover; background-position: center; z-index: 0; }
.ds-hero__mask { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(22,22,30,.97) 0%, rgba(22,22,30,.92) 45%, rgba(28,28,40,.75) 100%); z-index: 1; }
.ds-hero__band { position: absolute; top: 0; right: 0; width: 52%; height: 100%; background: linear-gradient(135deg, rgba(139,92,246,.12) 0%, rgba(6,182,212,.07) 100%); clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%); z-index: 1; pointer-events: none; }
.ds-hero__band::after { content: ''; position: absolute; top: -1px; left: -1px; bottom: -1px; right: -1px; background: linear-gradient(180deg, rgba(139,92,246,.18) 0%, transparent 40%, rgba(6,182,212,.12) 100%); }
.ds-hero__row { position: relative; z-index: 2; max-width: var(--max); margin-inline: auto; padding: 72px 22px 60px; display: grid; grid-template-columns: 1fr 380px; gap: 52px; align-items: center; width: 100%; }
.ds-hero__eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: .72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--cyan); margin-bottom: 22px; }
.ds-hero__eyebrow-line { width: 28px; height: 2px; background: var(--cyan); border-radius: 2px; flex-shrink: 0; }
.ds-hero__h1 { font-family: 'Poppins', sans-serif; font-size: clamp(2.4rem, 5.5vw, 4.8rem); font-weight: 800; line-height: 1.07; color: var(--white); margin-bottom: 22px; letter-spacing: -.5px; }
.ds-hero__h1 u { text-decoration: none; position: relative; color: var(--purple); }
.ds-hero__para { font-size: clamp(.95rem, 1.8vw, 1.1rem); color: var(--txt-2); line-height: 1.85; margin-bottom: 36px; max-width: 540px; }
.ds-hero__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }
.ds-hero__trust { display: flex; gap: 32px; padding-top: 36px; border-top: 1px solid var(--border); }
.ds-hero__trust-item-num { font-family: 'Poppins', sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--cyan); line-height: 1; }
.ds-hero__trust-item-lbl { font-size: .72rem; font-weight: 600; color: var(--txt-3); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 3px; }
.ds-hero__visual { position: relative; }
.ds-hero__visual-img { width: 100%; aspect-ratio: 9/10; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.ds-hero__float { position: absolute; bottom: -20px; left: -22px; background: var(--bg-card); border: 1px solid var(--border-lt); border-radius: var(--r); padding: 14px 18px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-md); }
.ds-hero__float-icon { width: 38px; height: 38px; background: var(--purple-lt); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--purple); font-size: .9rem; flex-shrink: 0; }
.ds-hero__float strong { display: block; font-size: .86rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.ds-hero__float span { font-size: .73rem; color: var(--txt-3); }

.ds-btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: var(--r-sm); font-size: .9rem; font-weight: 700; transition: all var(--tr); cursor: pointer; border: 2px solid transparent; text-decoration: none; line-height: 1; white-space: nowrap; }
.ds-btn--purple { background: var(--purple); color: var(--white); border-color: var(--purple); }
.ds-btn--purple:hover { background: var(--purple-dk); border-color: var(--purple-dk); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(139,92,246,.4); }
.ds-btn--cyan { background: var(--cyan); color: #0f172a; border-color: var(--cyan); }
.ds-btn--cyan:hover { background: var(--cyan-dk); border-color: var(--cyan-dk); color: #0f172a; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(6,182,212,.35); }
.ds-btn--ghost { background: transparent; color: var(--purple); border-color: var(--purple); }
.ds-btn--ghost:hover { background: var(--purple); color: var(--white); transform: translateY(-2px); }
.ds-btn--ghost-light { background: transparent; color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.3); }
.ds-btn--ghost-light:hover { background: rgba(255,255,255,.1); color: var(--white); border-color: var(--white); }
.ds-btn--sm { padding: 9px 18px; font-size: .82rem; }
.ds-btn--lg { padding: 16px 34px; font-size: 1rem; }

.ds-sec { padding-block: 86px; }
.ds-sec--alt { background: var(--bg-2); }
.ds-sec--dark { background: var(--bg); }
.ds-sec__head { margin-bottom: 52px; }
.ds-sec__head--c { text-align: center; }
.ds-sec__head--c .ds-sec__intro { margin-inline: auto; }
.ds-sec__eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--purple); margin-bottom: 14px; }
.ds-sec__eyebrow i { font-size: .75rem; }
.ds-sec__h2 { font-family: 'Poppins', sans-serif; font-size: clamp(1.7rem, 3.8vw, 2.7rem); font-weight: 800; color: var(--white); line-height: 1.12; margin-bottom: 16px; letter-spacing: -.3px; }
.ds-sec__h2 em { font-style: normal; color: var(--purple); }
.ds-sec__h2 span { color: var(--cyan); }
.ds-sec__intro { font-size: .98rem; color: var(--txt-2); line-height: 1.8; max-width: 560px; }

.ds-grid { display: grid; gap: 24px; }
.ds-grid--2 { grid-template-columns: repeat(2,1fr); }
.ds-grid--3 { grid-template-columns: repeat(3,1fr); }
.ds-grid--4 { grid-template-columns: repeat(4,1fr); }

.ds-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 28px; transition: all var(--tr); }
.ds-box:hover { border-color: var(--purple); box-shadow: 0 0 0 1px var(--purple), 0 8px 28px rgba(139,92,246,.18); }
.ds-box__icon { width: 50px; height: 50px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 18px; }
.ds-box__icon--purple { background: var(--purple-lt); color: var(--purple); }
.ds-box__icon--cyan { background: var(--cyan-lt); color: var(--cyan); }
.ds-box__icon--rose { background: var(--rose-lt); color: var(--rose); }
.ds-box__icon--amber { background: var(--amber-lt); color: var(--amber); }
.ds-box__h3 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.ds-box__p { font-size: .875rem; color: var(--txt-2); line-height: 1.75; }

.ds-tile { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: all var(--tr); display: flex; flex-direction: column; }
.ds-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-lt); }
.ds-tile__img { position: relative; overflow: hidden; aspect-ratio: 16/9; background: var(--bg-2); }
.ds-tile__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.ds-tile:hover .ds-tile__img img { transform: scale(1.06); }
.ds-tile__stamp { position: absolute; top: 10px; left: 10px; background: var(--purple); color: var(--white); font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 8px; border-radius: 4px; }
.ds-tile__stamp--cyan { background: var(--cyan); color: #0f172a; }
.ds-tile__stamp--rose { background: var(--rose); }
.ds-tile__body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.ds-tile__klass { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--cyan); margin-bottom: 10px; }
.ds-tile__h3 { font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 9px; flex: 1; }
.ds-tile__h3 a { color: inherit; text-decoration: none; transition: color var(--tr); }
.ds-tile__h3 a:hover { color: var(--purple); }
.ds-tile__excerpt { font-size: .85rem; color: var(--txt-2); line-height: 1.7; margin-bottom: 16px; }
.ds-tile__foot { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); font-size: .77rem; color: var(--txt-3); }
.ds-tile__read { font-size: .8rem; font-weight: 700; color: var(--purple); display: inline-flex; align-items: center; gap: 4px; text-decoration: none; }
.ds-tile__read:hover { color: var(--cyan); }

.ds-game { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: all var(--tr); }
.ds-game:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(139,92,246,.18); border-color: var(--purple); }
.ds-game__pic { position: relative; overflow: hidden; aspect-ratio: 3/2; background: var(--bg-2); }
.ds-game__pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.ds-game:hover .ds-game__pic img { transform: scale(1.08); }
.ds-game__tag { position: absolute; top: 10px; left: 10px; background: var(--purple); color: var(--white); font-size: .64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 8px; border-radius: 3px; z-index: 1; }
.ds-game__tag--cyan { background: var(--cyan); color: #0f172a; }
.ds-game__tag--rose { background: var(--rose); }
.ds-game__tag--amber { background: var(--amber); color: #0f172a; }
.ds-game__info { padding: 16px 18px 18px; }
.ds-game__name { font-family: 'Poppins', sans-serif; font-size: .98rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.ds-game__desc { font-size: .82rem; color: var(--txt-2); line-height: 1.6; margin-bottom: 12px; }
.ds-game__row { display: flex; align-items: center; justify-content: space-between; }
.ds-game__stars { color: var(--amber); font-size: .8rem; display: flex; align-items: center; gap: 3px; }
.ds-game__cat { font-size: .74rem; color: var(--txt-3); background: var(--bg-raised); padding: 3px 8px; border-radius: 3px; }

.ds-acc__item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-sm); margin-bottom: 8px; overflow: hidden; transition: border-color var(--tr); }
.ds-acc__item.on { border-color: var(--purple); }
.ds-acc__trg { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 22px; font-size: .93rem; font-weight: 600; color: var(--white); cursor: pointer; text-align: left; background: none; border: none; font-family: inherit; transition: color var(--tr); }
.ds-acc__trg:hover { color: var(--purple); }
.ds-acc__icon { width: 28px; height: 28px; background: var(--bg-raised); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--purple); font-size: .72rem; flex-shrink: 0; transition: all var(--tr); }
.ds-acc__item.on .ds-acc__icon { background: var(--purple); color: var(--white); transform: rotate(180deg); }
.ds-acc__body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.ds-acc__body.show { max-height: 480px; }
.ds-acc__text { padding: 0 22px 18px; font-size: .9rem; color: var(--txt-2); line-height: 1.82; }

.ds-steps { display: flex; flex-direction: column; }
.ds-step { display: flex; gap: 18px; padding-bottom: 28px; position: relative; }
.ds-step:not(:last-child)::after { content: ''; position: absolute; left: 17px; top: 38px; bottom: 0; width: 2px; background: var(--border); }
.ds-step:last-child { padding-bottom: 0; }
.ds-step__num { flex-shrink: 0; width: 36px; height: 36px; background: var(--purple); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 800; color: var(--white); z-index: 1; }
.ds-step__body h3 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.ds-step__body p { font-size: .875rem; color: var(--txt-2); line-height: 1.75; }

.ds-alert { background: var(--purple-lt); border: 1px solid rgba(139,92,246,.3); border-radius: var(--r-sm); padding: 14px 18px; display: flex; gap: 12px; align-items: flex-start; }
.ds-alert i { color: var(--purple); font-size: .95rem; flex-shrink: 0; margin-top: 2px; }
.ds-alert p { font-size: .875rem; color: var(--txt); line-height: 1.75; margin: 0; }
.ds-alert--cyan { background: var(--cyan-lt); border-color: rgba(6,182,212,.3); }
.ds-alert--cyan i { color: var(--cyan); }
.ds-alert--rose { background: var(--rose-lt); border-color: rgba(244,63,94,.3); }
.ds-alert--rose i { color: var(--rose); }

.ds-stat-row { display: grid; grid-template-columns: repeat(4,1fr); background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.ds-stat { padding: 30px 20px; text-align: center; border-right: 1px solid var(--border); }
.ds-stat:last-child { border-right: none; }
.ds-stat__num { font-family: 'Poppins', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--purple); line-height: 1; }
.ds-stat__lbl { font-size: .77rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--txt-3); margin-top: 6px; }

.ds-cta { position: relative; padding: 92px 0; overflow: hidden; }
.ds-cta__bg { position: absolute; inset: 0; background: linear-gradient(135deg, #200d4a 0%, #0c2a40 50%, #200d4a 100%); }
.ds-cta__grid { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 36px 36px; opacity: .18; }
.ds-cta__glow { position: absolute; width: 480px; height: 480px; background: radial-gradient(circle, rgba(139,92,246,.22) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.ds-cta__inner { position: relative; z-index: 1; text-align: center; }
.ds-cta__h2 { font-family: 'Poppins', sans-serif; font-size: clamp(1.9rem, 4vw, 3.1rem); font-weight: 800; color: var(--white); margin-bottom: 16px; letter-spacing: -.3px; }
.ds-cta__h2 em { font-style: normal; color: var(--purple); }
.ds-cta__p { font-size: 1rem; color: rgba(255,255,255,.65); margin-bottom: 36px; max-width: 480px; margin-inline: auto; line-height: 1.8; }
.ds-cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.ds-pg-head { padding: 96px 0 56px; background: var(--bg-2); position: relative; overflow: hidden; }
.ds-pg-head::before { content: ''; position: absolute; top: -60px; right: -60px; width: 340px; height: 340px; background: radial-gradient(circle, rgba(139,92,246,.15) 0%, transparent 70%); pointer-events: none; }
.ds-pg-head__inner { position: relative; z-index: 1; }
.ds-pg-head__h1 { font-family: 'Poppins', sans-serif; font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 14px; letter-spacing: -.3px; }
.ds-pg-head__p { font-size: .98rem; color: var(--txt-2); max-width: 580px; line-height: 1.8; }

.ds-trail { padding: 12px 0; background: var(--bg-2); border-bottom: 1px solid var(--border); }
.ds-trail__list { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; font-size: .8rem; color: var(--txt-3); }
.ds-trail__list a { color: var(--txt-3); text-decoration: none; transition: color var(--tr); }
.ds-trail__list a:hover { color: var(--purple); }
.ds-trail__sep { color: var(--border-lt); font-size: .6rem; }
.ds-trail__cur { color: var(--txt); }

.ds-art-hdr { padding: 90px 0 60px; background: var(--bg-2); position: relative; overflow: hidden; }
.ds-art-hdr::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, rgba(139,92,246,.08) 100%); }
.ds-art-hdr__inner { position: relative; z-index: 1; }
.ds-art-type { display: inline-block; background: var(--purple-lt); color: var(--purple); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; padding: 5px 12px; border-radius: 50px; border: 1px solid rgba(139,92,246,.25); margin-bottom: 16px; }
.ds-art-h1 { font-family: 'Poppins', sans-serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: var(--white); line-height: 1.12; margin-bottom: 20px; max-width: 820px; letter-spacing: -.3px; }
.ds-art-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; font-size: .8rem; color: var(--txt-3); }
.ds-art-meta i { color: var(--purple); margin-right: 4px; }
.ds-art-feat { width: 100%; aspect-ratio: 21/8; object-fit: cover; border-radius: var(--r); margin-bottom: 44px; }
.ds-art-layout { display: grid; grid-template-columns: 1fr 284px; gap: 44px; align-items: start; }
.ds-art-body h2 { font-family: 'Poppins', sans-serif; font-size: 1.65rem; font-weight: 800; color: var(--white); margin: 40px 0 16px; }
.ds-art-body h3 { font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--cyan); margin: 28px 0 12px; }
.ds-art-body h4 { font-size: .98rem; font-weight: 700; color: var(--purple); margin: 22px 0 8px; }
.ds-art-body h5 { font-size: .9rem; font-weight: 700; color: var(--txt); margin: 18px 0 6px; }
.ds-art-body p { font-size: .96rem; color: var(--txt); line-height: 1.9; margin-bottom: 18px; }
.ds-art-body ul, .ds-art-body ol { margin: 0 0 18px 22px; color: var(--txt); }
.ds-art-body li { margin-bottom: 9px; font-size: .94rem; line-height: 1.7; }
.ds-art-body blockquote { border-left: 3px solid var(--cyan); padding: 16px 22px; margin: 28px 0; background: var(--cyan-lt); border-radius: 0 var(--r-sm) var(--r-sm) 0; color: var(--txt-2); font-style: italic; font-size: .95rem; }

.ds-sidebar .ds-widget { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 20px; margin-bottom: 20px; }
.ds-widget__title { font-family: 'Poppins', sans-serif; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--cyan); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.ds-widget__post { display: flex; gap: 11px; padding-bottom: 13px; margin-bottom: 13px; border-bottom: 1px solid var(--border); }
.ds-widget__post:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.ds-widget__post-thumb { flex-shrink: 0; width: 58px; height: 52px; border-radius: var(--r-sm); overflow: hidden; }
.ds-widget__post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ds-widget__post-title { font-size: .82rem; font-weight: 600; color: var(--txt); margin-bottom: 3px; line-height: 1.35; }
.ds-widget__post-title a { color: inherit; text-decoration: none; }
.ds-widget__post-title a:hover { color: var(--purple); }
.ds-widget__post-date { font-size: .72rem; color: var(--txt-3); }
.ds-widget__links { display: flex; flex-direction: column; gap: 8px; }
.ds-widget__link { font-size: .86rem; color: var(--txt-2); text-decoration: none; display: flex; align-items: center; gap: 8px; padding: 6px 0; border-bottom: 1px solid var(--border); transition: color var(--tr); }
.ds-widget__link i { color: var(--purple); width: 13px; font-size: .7rem; }
.ds-widget__link:hover { color: var(--purple); }

.ds-contact-row { display: flex; align-items: flex-start; gap: 14px; padding: 14px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-sm); margin-bottom: 10px; transition: border-color var(--tr); }
.ds-contact-row:hover { border-color: var(--border-lt); }
.ds-contact-ico { width: 40px; height: 40px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.ds-contact-ico--purple { background: var(--purple-lt); color: var(--purple); }
.ds-contact-ico--cyan { background: var(--cyan-lt); color: var(--cyan); }
.ds-contact-lbl { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--txt-3); margin-bottom: 3px; }
.ds-contact-val { font-size: .88rem; color: var(--txt); }
.ds-contact-val a { color: var(--txt); text-decoration: none; transition: color var(--tr); }
.ds-contact-val a:hover { color: var(--purple); }

.ds-map { border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); }
.ds-map iframe { display: block; width: 100%; height: 400px; border: none; }

.ds-social { display: flex; gap: 8px; flex-wrap: wrap; }
.ds-social__a { width: 38px; height: 38px; background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--txt-2); font-size: .85rem; text-decoration: none; transition: all var(--tr); }
.ds-social__a:hover { background: var(--purple); border-color: var(--purple); color: var(--white); transform: translateY(-2px); }

.ds-pg-404 { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px 22px; padding-top: 120px; }
.ds-pg-404__code { font-family: 'Poppins', sans-serif; font-size: clamp(5rem, 16vw, 11rem); font-weight: 800; line-height: 1; color: var(--purple); text-shadow: 0 0 60px rgba(139,92,246,.4); margin-bottom: 2px; }
.ds-pg-404__h1 { font-family: 'Poppins', sans-serif; font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.ds-pg-404__p { font-size: 1rem; color: var(--txt-2); max-width: 440px; margin-inline: auto; margin-bottom: 36px; line-height: 1.8; }

.ds-foot { background: var(--bg-2); border-top: 1px solid var(--border); padding-top: 64px; }
.ds-foot__top { display: grid; grid-template-columns: 1.8fr 1fr; gap: 56px; margin-bottom: 52px; }
.ds-foot__brand-name { font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.ds-foot__brand-name span { color: var(--purple); }
.ds-foot__desc { font-size: .875rem; color: var(--txt-2); line-height: 1.85; margin-bottom: 22px; max-width: 340px; }
.ds-foot__col-title { font-family: 'Poppins', sans-serif; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--cyan); margin-bottom: 18px; }
.ds-foot__links { display: flex; flex-direction: column; gap: 9px; }
.ds-foot__link { font-size: .875rem; color: var(--txt-2); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color var(--tr); }
.ds-foot__link i { font-size: .6rem; color: var(--purple); }
.ds-foot__link:hover { color: var(--white); }
.ds-foot__contact-item { display: flex; align-items: flex-start; gap: 9px; font-size: .875rem; color: var(--txt-2); margin-bottom: 10px; line-height: 1.55; }
.ds-foot__contact-item i { color: var(--purple); width: 15px; flex-shrink: 0; margin-top: 2px; }
.ds-foot__contact-item a { color: var(--txt-2); text-decoration: none; transition: color var(--tr); }
.ds-foot__contact-item a:hover { color: var(--white); }
.ds-foot__bottom { border-top: 1px solid var(--border); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.ds-foot__copy { font-size: .8rem; color: var(--txt-3); }
.ds-foot__legal { display: flex; gap: 18px; flex-wrap: wrap; }
.ds-foot__legal a { font-size: .8rem; color: var(--txt-3); text-decoration: none; transition: color var(--tr); }
.ds-foot__legal a:hover { color: var(--white); }

.anim-in { opacity: 0; transform: translateY(18px) rotate(-0.4deg); transition: opacity .6s ease, transform .6s ease; }
.anim-in.ready { opacity: 1; transform: translateY(0) rotate(0); }
.dl1 { transition-delay: .1s; }
.dl2 { transition-delay: .2s; }
.dl3 { transition-delay: .3s; }
.dl4 { transition-delay: .4s; }

.u-c { text-align: center; }
.u-l { text-align: left; }
.u-mt0 { margin-top: 0 !important; }
.u-mt8 { margin-top: 8px; }
.u-mt16 { margin-top: 16px; }
.u-mt24 { margin-top: 24px; }
.u-mt32 { margin-top: 32px; }
.u-mt48 { margin-top: 48px; }
.u-mb8 { margin-bottom: 8px; }
.u-mb16 { margin-bottom: 16px; }
.u-mb24 { margin-bottom: 24px; }
.u-sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.u-body-lock { overflow: hidden; }

@media (max-width: 1100px) {
  .ds-foot__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ds-grid--4 { grid-template-columns: repeat(2,1fr); }
  .ds-stat-row { grid-template-columns: repeat(2,1fr); }
  .ds-stat:nth-child(2) { border-right: none; }
  .ds-stat:nth-child(1), .ds-stat:nth-child(2) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 960px) {
  .ds-topbar { display: none; }
  .ds-header { top: 0; }
  .ds-nav { display: none; }
  .ds-header__cta { display: none; }
  .ds-burger { display: flex; }
  .ds-hero__row { grid-template-columns: 1fr; }
  .ds-hero__visual { display: none; }
  .ds-grid--3 { grid-template-columns: repeat(2,1fr); }
  .ds-art-layout { grid-template-columns: 1fr; }
  .ds-sidebar { display: none; }
}

@media (max-width: 640px) {
  .ds-sec { padding-block: 60px; }
  .ds-grid--2 { grid-template-columns: 1fr; }
  .ds-grid--3 { grid-template-columns: 1fr; }
  .ds-grid--4 { grid-template-columns: repeat(2,1fr); }
  .ds-foot__top { grid-template-columns: 1fr; }
  .ds-foot__bottom { flex-direction: column; text-align: center; }
  .ds-cta__btns { flex-direction: column; align-items: center; }
  .ds-hero__btns { flex-direction: column; align-items: flex-start; }
  .ds-stat-row { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 400px) {
  .ds-grid--4 { grid-template-columns: 1fr; }
  .ds-stat-row { grid-template-columns: 1fr; }
  .ds-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .ds-stat:last-child { border-bottom: none; }
}
