:root{
  --bg:#0b1020;
  --panel:#0f1733;
  --panel2:#111c3d;
  --text:#e9ecff;
  --muted:#aab0d6;
  --accent:#7c5cff;
  --accent2:#37d3ff;
  --good:#34d399;
  --warn:#fbbf24;
  --bad:#fb7185;

  --radius:18px;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --max: 1120px;
  --gap: 18px;
  --border: 1px solid rgba(255,255,255,.08);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  background:
    radial-gradient(1000px 600px at 20% 10%, rgba(124,92,255,.35), transparent 60%),
    radial-gradient(900px 520px at 80% 0%, rgba(55,211,255,.25), transparent 55%),
    radial-gradient(800px 600px at 60% 90%, rgba(52,211,153,.18), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.95}
img{max-width:100%; display:block}

.container{max-width:var(--max); margin:0 auto; padding:24px}
.grid{display:grid; gap:var(--gap)}
.row{display:flex; gap:var(--gap); align-items:center; flex-wrap:wrap}

.nav{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(11,16,32,.55);
  border-bottom: var(--border);
}
.nav-inner{max-width:var(--max); margin:0 auto; padding:14px 24px; display:flex; align-items:center; justify-content:space-between; gap:16px}
.brand{
  display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.2px
}
.logo{
  width:34px; height:34px; border-radius:12px;
  background: linear-gradient(135deg, #7c5cff, #37d3ff);
  box-shadow: 0 10px 30px rgba(124,92,255,.35);
}
.nav-links{display:flex; gap:14px; align-items:center; flex-wrap:wrap}
.nav-links a{
  padding:10px 12px;
  border-radius:12px;
  color:var(--muted);
  font-weight: 700;
}

.nav-links a.active{color:var(--text); background: rgba(255,255,255,.06)}
.nav-links a:hover{
  color: red;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: var(--border);
  background: rgba(255, 255, 255, 0.116);
  color: white;
  font-weight: 700;
  gap: 10px;
  transition: all 0.4s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn.primary {
  border: none;
  background: red;
  color: white;
  box-shadow: 0 2px 10px rgb(255, 255, 255);
}

.btn.primary:hover {
  background: white;
  color: red;
  box-shadow: 0 2px 12px rgb(255, 0, 0);
}


.btn.ghost{background: transparent}
.btn.small{padding:10px 12px; border-radius:12px; font-weight:700}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  border: var(--border);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card-inner{padding:18px}
.card-header{
  display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:8px
}
.card-title{font-size:18px; font-weight:900; letter-spacing:.2px}
.card-sub{color:var(--muted); font-size:14px}

.hero{
  padding:28px 0 10px;
}
.hero h1{
  font-size: clamp(28px, 4vw, 54px);
  line-height:1.05;
  margin: 10px 0 8px;
  letter-spacing:-.5px;
}
.hero p{max-width: 62ch; color: var(--muted); margin:0 0 18px}
.kpis{display:flex; gap:12px; flex-wrap:wrap; margin-top:10px}

.progress{
  background: rgba(255,255,255,.06);
  border: var(--border);
  border-radius: 999px;
  padding: 10px 12px;
  width: 100%;
}
.progress-top{display:flex; justify-content:space-between; gap:10px; font-size:13px; color:var(--muted); margin-bottom:8px}
.bar{
  height: 12px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.bar > div{
  height:100%;
  width:50%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius:999px;
}
.hr{height:1px; background: rgba(255,255,255,.09); margin:18px 0}

.two{
  grid-template-columns: 1.2fr .8fr;
}
.three{
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 940px){
  .two,.three{grid-template-columns:1fr}
  .nav-inner{padding:12px 16px}
  .container{padding:18px 16px}
}

.section-title{
  font-size:16px; color:var(--muted);
  text-transform: uppercase; letter-spacing:.14em;
  margin: 26px 0 12px;
}

.feature{
  display:flex; gap:16px; align-items:flex-start;
}
.icon{
  width:40px; height:40px; border-radius:14px;
  background: rgba(255,255,255,.06);
  border: var(--border);
  display:grid; place-items:center;
  flex:0 0 auto;
}
.icon svg{opacity:.95}

.input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border: var(--border);
  background: rgba(255, 255, 255, 0.055);
  color: red;
  outline:none;
}
textarea{min-height: 120px; resize:vertical; color: rgb(255, 0, 242)!important;}
label{font-size:13px; color: black !important;}
.form{display:grid; gap:12px; }
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:12px;}
@media(max-width:700px){.form-row{grid-template-columns:1fr}}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius: var(--radius);
  border: var(--border);
  background: rgba(255,255,255,.03);
}
.table th,.table td{padding:12px 12px; border-bottom:1px solid rgba(255,255,255,.08); text-align:left; font-size:14px}
.table th{color:var(--muted); font-weight:700}
.table tr:last-child td{border-bottom:none}

.tag{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border: var(--border);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  
}
.tag.good{color: #b7f7d7; border-color: rgba(52,211,153,.25); background: rgba(52,211,153,.09)}
.tag.lock{color:#ffe4b5; border-color: rgba(251,191,36,.25); background: rgba(251,191,36,.08)}
.tag.hot{color:#ffd2dd; border-color: rgba(251,113,133,.25); background: rgba(251,113,133,.08)}

.game-frame{
  width:100%;
  aspect-ratio: 16 / 9;
  border: var(--border);
  border-radius: var(--radius);
  background: rgba(0,0,0,.25);
}

.footer{
  margin-top:40px;
  border-top: var(--border);
  background: rgba(11,16,32,.55);
}
.footer-inner{
  max-width: var(--max);
  margin:0 auto;
  padding: 18px 24px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color: var(--muted);
  font-size:14px;
}
.footer a{color: var(--muted)}
.footer a:hover{color: var(--text)}

/* Hamburger toggle */
.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  padding:0;
}

.nav-toggle span{
  width:20px;
  height:2px;
  background:var(--text);
  border-radius:2px;
  transition:all .25s ease;
}

/* Animate into X when open */
.nav-links.open + .nav-toggle,
.nav-toggle[aria-expanded="true"] span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2){
  opacity:0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* Show toggle on mobile only */
@media (max-width:860px){
  .nav-toggle{display:flex;}
}




/* upgrade */
/* =========================
   RESPONSIVE UPGRADE PACK
   ========================= */

/* Better defaults for small screens */
.container { padding-inline: 16px; }
.hero { padding-top: 18px; }

/* Ensure long text doesn't overflow */
.card-title, .card-sub, p, a { overflow-wrap: anywhere; }

/* Make button rows stack nicely on small screens */
.row { align-items: stretch; }
.row .btn, .row .badge { flex: 0 0 auto; }
@media (max-width: 520px){
  .row { flex-direction: column; align-items: stretch; }
  .row .btn { width: 100%; }
  .row .badge { width: 100%; text-align: center; }
}

/* Nav: collapse into a toggle on mobile */
.nav-inner { position: relative; }
.nav-toggle { display: none; }

@media (max-width: 860px){
  .nav-toggle { display: inline-flex; }
  .nav-links[data-collapsible="true"]{
    display: none;
    position: absolute;
    right: 16px;
    top: 58px;
    width: min(360px, calc(100vw - 32px));
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(11,16,32,.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 22px 70px rgba(0,0,0,.55);
    flex-direction: column;
    gap: 8px;
    z-index: 50;
  }
  .nav-links[data-collapsible="true"].open{ display: flex; }
  .nav-links a { width: 100%; }
  .nav-links .btn { width: 100%; }
}

/* Grids: force 1-column on small screens (stronger than current) */
@media (max-width: 900px){
  .two, .three { grid-template-columns: 1fr !important; }
}

/* Cards inside shoutouts: keep spacing nice */
[data-ig-shoutouts] .card,
[data-yt-shoutouts] .card {
  width: 100%;
}

/* Reduce big headings slightly on very small devices */
@media (max-width: 420px){
  .hero h1 { font-size: 30px; }
}

/* Improve tap targets */
.nav-links a, .btn { min-height: 44px; }

.logo{
  width:40px;
  height:40px;
  border-radius:14px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:20px;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing:-1px;

  /* Colorful 3D background */
 
   display: inline-flex;
  align-items: center;
  justify-content: center;
  
 
  background: linear-gradient(135deg, #7c5cff, #37d3ff);
  box-shadow: 0 14px 45px rgb(125, 92, 255);
  text-decoration: none;
  transition: transform .2s ease;

  

  transform: translateZ(0);
  isolation:isolate;
}
.logo:hover{
  background: linear-gradient(135deg, #ffffff, #ff0000);
  box-shadow: 0 14px 45px rgb(125, 92, 255);
}
/* The 3D "D" */
.logo::after{
  content:"D";
  position:absolute;
  font-size:20px;
  font-weight:900;
  color:white;

  /* 3D metallic text effect */
  text-shadow:
    0 1px 0 rgb(94, 94, 94),
    0 2px 0 rgb(0, 0, 0),
    0 3px 6px rgba(0, 0, 0, 0.753),
    0 8px 18px rgba(0,0,0,.35);

  z-index:2000;
}

/* Gloss highlight */
.logo::before{
  content:"";
  position:absolute;
  inset:3px;
  border-radius:11px;
  background: linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,255,255,0) 60%);
  z-index:1;
  pointer-events:none;
}

/* Hover animation */
.brand:hover .logo{
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    0 22px 50px rgba(0,0,0,.55),
    0 16px 35px rgba(124,92,255,.4),
    0 14px 30px rgba(55,211,255,.25),
    inset 0 1px 0 rgba(255,255,255,.35),
    inset 0 -10px 18px rgba(0,0,0,.25);
  transition: all .25s ease;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding:.35rem .7rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.9);
  font-size:.85rem;
}

.btn.ghost{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}
.btn.ghost:hover{
  background:rgba(255,255,255,.09);
}

.manual-badge{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.25rem .55rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  font-size:.8rem;
  opacity:.9;
}

.stats-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}

.stat{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  border-radius:14px;
  padding:.8rem .9rem;
}

.stat-label{
  font-size:.8rem;
  opacity:.7;
}

.stat-value{
  margin-top:.25rem;
  font-size:1.2rem;
  font-weight:700;
  letter-spacing:.2px;
}

/* Mobile */
@media (max-width: 720px){
  .stats-grid{ grid-template-columns: 1fr; }
}

.nav-links a.active{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  border-radius:12px;
  padding:.45rem .75rem;
  
}
a:hover{
  color: red!important;
}
.play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c5cff, #37d3ff);
  box-shadow: 0 14px 45px rgb(125, 92, 255);
  text-decoration: none;
  transition: transform .2s ease;
}

.play-btn:hover {
  transform: scale(1.05);
}

.play-svg {
  width: 60%;
  height: 60%;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.stroke-dotted {
  opacity: 0;
  stroke-dasharray: 4, 5;
  stroke-width: 1px;
  transform-origin: 50% 50%;
  animation: spin 4s infinite linear;
  transition: opacity 0.6s ease, stroke-width 0.6s ease;
}

.stroke-solid {
  stroke-dashoffset: 0;
  stroke-dasharray: 300;
  stroke-width: 4px;
  transition: stroke-dashoffset 0.6s ease, opacity 0.6s ease;
}

.icon {
  transform-origin: 50% 50%;
  transition: transform 0.2s ease;
}

.play-btn:hover .stroke-dotted {
  stroke-width: 4px;
  opacity: 1;
}

.play-btn:hover .stroke-solid {
  opacity: 0;
  stroke-dashoffset: 300;
}

.play-btn:hover .icon {
  transform: scale(1.1);
}

.play-btn.locked {
  background: linear-gradient(135deg, #555, #888);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.8;
}

.play-btn.locked:hover {
  transform: none;
}

.play-btn.locked .stroke-dotted,
.play-btn.locked .stroke-solid {
  display: none;
}

.grid.two > .tiktok{
  grid-column: 1 / -1; /* span full width */
}

.grid.two > .facebook{
  grid-column: 1 / -1; /* span full width */
}

/* Platform cards */
.platforms .platform-card{
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

/* Inner layout */
.platforms .platform-inner{
  display: flex;
  gap: 14px;
  align-items: center;
}

/* little “app accent” mark */
.platforms .platform-mark{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  position: relative;
  flex: 0 0 44px;
  transform: translateZ(20px);
}

.platforms .platform-mark .ring{
  position: absolute;
  inset: 0;
  border-radius: 14px;
  opacity: .9;
  filter: saturate(1.2);
}

.platforms .platform-mark .dot{
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  right: 8px;
  top: 8px;
  opacity: .95;
}

/* CTA */
.platforms .platform-cta{
  margin-left: auto;
  font-weight: 600;
  opacity: .85;
  transform: translateZ(20px);
  transition: opacity 200ms ease, transform 200ms ease;
}

/* Glow overlay */
.platforms .platform-glow{
  position: absolute;
  inset: -60px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0,0,0);
  filter: blur(24px);
  transition: opacity 240ms ease;
}

/* Hover: premium lift */
.platforms .platform-card:hover{
  transform: translateY(-4px) scale(1.01);
  filter: saturate(1.05);
}

.platforms .platform-card:hover .platform-cta{
  opacity: 1;
  transform: translateZ(20px) translateX(2px);
}

.platforms .platform-card:hover .platform-glow{
  opacity: .9;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .platforms .platform-card,
  .platforms .platform-cta,
  .platforms .platform-glow{
    transition: none !important;
  }
}

/* ---------- Instagram accents ---------- */
.platforms .ig .platform-mark .ring{
  background: linear-gradient(135deg,
    #feda75 0%,
    #fa7e1e 25%,
    #d62976 50%,
    #962fbf 75%,
    #4f5bd5 100%
  );
}
.platforms .ig .platform-mark .dot{
  background: #ffffff;
}
.platforms .ig .platform-glow{
  background: radial-gradient(circle at 30% 30%,
    rgba(254,218,117,.55),
    rgba(214,41,118,.35),
    rgba(79,91,213,.25),
    transparent 60%
  );
}

/* ---------- TikTok accents ---------- */
.platforms .tt .platform-mark .ring{
  background: linear-gradient(135deg, #25F4EE, #111111 45%, #FE2C55);
}
.platforms .tt .platform-mark .dot{
  background: #25F4EE;
}
.platforms .tt .platform-glow{
  background: radial-gradient(circle at 30% 30%,
    rgba(37,244,238,.35),
    rgba(254,44,85,.30),
    transparent 60%
  );
}

/* ---------- Facebook accents ---------- */
.platforms .fb .platform-mark .ring{
  background: linear-gradient(135deg, #1877F2, #0B5ED7);
}
.platforms .fb .platform-mark .dot{
  background: #ffffff;
}
.platforms .fb .platform-glow{
  background: radial-gradient(circle at 30% 30%,
    rgba(24,119,242,.40),
    rgba(11,94,215,.20),
    transparent 60%
  );
}


/* Privacy modal */
.privacy-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.privacy-modal.open {
  display: block;
}

.privacy-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
}

.privacy-panel {
  position: relative;
  width: min(720px, calc(100% - 2rem));
  margin: 10vh auto;
  background: rgba(18, 18, 22, .98);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  box-shadow: 0 12px 45px rgba(0,0,0,.5);
  overflow: hidden;
}

.privacy-header,
.privacy-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.privacy-footer {
  border-bottom: none;
  border-top: 1px solid rgba(255,255,255,.10);
  justify-content: flex-end;
}

.privacy-body {
  padding: 1rem 1.1rem 1.2rem;
}

.privacy-text {
  white-space: pre-wrap;
  line-height: 1.55;
  opacity: .95;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: .95rem;
}

.privacy-x {
  background: transparent;
  border: none;
  color: inherit;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: .85;
}

.privacy-x:hover {
  opacity: 1;
}

header.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  
  backdrop-filter: blur(10px);
}

main.container { padding-top: 80px; }
html { scroll-padding-top: 80px; }

body.no-scroll,
html.no-scroll {
  overflow: hidden !important;
  height: 100% !important;
  touch-action: none;
}