@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&display=swap');

:root{
  /* === SABRIN.PARTY-ish PALETTE === */
  --sky:#6fc7ff;
  --sky2:#58b6f3;

  --paper:#fff7fd;        /* card base */
  --paper2:#fff1fb;       /* slightly warmer */
  --ink:#1a0f1c;
  --muted:#3a2a3d;

  --pink:#ff4fb6;
  --pink2:#ff9ad7;
  --lime:#b8ff5a;
  --lime2:#7bff2e;
  --yellow:#ffe25a;
  --aqua:#6ff7ff;

  --dash: rgba(255,79,182,.55);
  --line: rgba(255,79,182,.28);

  --shadow: rgba(0,0,0,.20);
  --shadow2: rgba(0,0,0,.10);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family:"Comic Neue", system-ui, Arial, sans-serif;
  color:var(--ink);
}

/* ===== BACKGROUND: sky + clouds + sparkles ===== */
.bg{
  position:fixed;
  inset:0;
  background:
    radial-gradient(80px 50px at 12% 16%, rgba(255,255,255,.90), transparent 70%),
    radial-gradient(120px 70px at 18% 18%, rgba(255,255,255,.85), transparent 72%),
    radial-gradient(90px 55px at 26% 14%, rgba(255,255,255,.75), transparent 72%),

    radial-gradient(110px 65px at 78% 20%, rgba(255,255,255,.90), transparent 72%),
    radial-gradient(140px 80px at 84% 22%, rgba(255,255,255,.82), transparent 72%),
    radial-gradient(100px 60px at 90% 18%, rgba(255,255,255,.70), transparent 72%),

    radial-gradient(900px 500px at 55% 40%, rgba(255,255,255,.12), transparent 65%),

    linear-gradient(180deg, var(--sky), var(--sky2));
  z-index:-3;
}

/* subtle glitter + dotted “webcore” */
.bg::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 12% 30%, rgba(255,255,255,.55) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 12%, rgba(255,255,255,.50) 0 1px, transparent 2px),
    radial-gradient(circle at 22% 72%, rgba(255,255,255,.45) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 62%, rgba(255,255,255,.45) 0 1px, transparent 2px),
    radial-gradient(circle at 46% 22%, rgba(255,255,255,.35) 0 1px, transparent 2px),
    radial-gradient(circle at 54% 78%, rgba(255,255,255,.35) 0 1px, transparent 2px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px) 0 0/22px 22px,
    linear-gradient(0deg, rgba(255,255,255,.06) 1px, transparent 1px) 0 0/22px 22px;
  opacity:.55;
  pointer-events:none;
}

/* optional scanlines very light (feels 2000s but not annoying) */
.fx{
  position:fixed;
  inset:0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,.05) 0px,
    rgba(0,0,0,.05) 1px,
    transparent 3px,
    transparent 5px
  );
  opacity:.08;
  pointer-events:none;
  z-index:-2;
}

/* ===== LAYOUT ===== */
.shell{
  max-width:1180px;
  margin:18px auto 50px;
  padding:0 14px;
}

/* ===== BANNER ===== */
.banner{
  border-radius:18px;
  overflow:hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,.35));
  border: 3px solid rgba(255,255,255,.70);
  box-shadow: 0 18px 0 rgba(0,0,0,.12);
}

.bannerInner{
  padding:18px 16px;
  border-radius:18px;
  border: 2px dashed var(--dash);
  background:
    linear-gradient(90deg,
      rgba(255,255,255,.35),
      rgba(255,226,90,.25),
      rgba(255,154,215,.22),
      rgba(111,247,255,.20),
      rgba(184,255,90,.18)
    );
}

/* BIG bubbly title like sabrin.party */
.bannerTitle{
  font-size:40px;
  font-weight:700;
  letter-spacing:.6px;
  text-transform:lowercase;
}

/* sticker vibe: thick lime outline */
.stickerTitle{
  color: var(--lime2);
  -webkit-text-stroke: 10px rgba(30,120,10,.22); /* fake thick outline */
  paint-order: stroke fill;
  text-shadow:
    0 6px 0 rgba(0,0,0,.18),
    0 0 18px rgba(184,255,90,.28),
    0 0 22px rgba(255,79,182,.20);
}

/* smaller readable subtitle */
.bannerSub{
  margin-top:6px;
  color: rgba(26,15,28,.80);
  font-weight:700;
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
}

.bannerLinks{
  margin-top:10px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.bannerLinks a{
  color: #0b35ff;
  font-weight:700;
  text-decoration: underline;
}
.bannerLinks span{ opacity:.55; }

/* ===== GRID ===== */
.desk{
  margin-top:14px;
  display:grid;
  grid-template-columns:260px 1fr 320px;
  grid-template-areas:
    "nav main side"
    "play play play";
  gap:12px;
}

/* ===== WINDOW (paper + dashed pink + hard shadow) ===== */
.win{
  border-radius:18px;
  overflow:hidden;

  background: linear-gradient(180deg, var(--paper), var(--paper2));
  border: 2px solid rgba(255,255,255,.85);
  box-shadow:
    0 18px 0 rgba(0,0,0,.12),
    0 0 0 2px rgba(255,79,182,.20) inset;
}

/* ===== TITLEBAR (pastel gradient + dotted edge) ===== */
.titlebar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:9px 10px;
  position:relative;

  background:
    linear-gradient(90deg,
      rgba(255,226,90,.35),
      rgba(255,154,215,.35),
      rgba(111,247,255,.35),
      rgba(184,255,90,.35)
    );
  border-bottom: 2px dotted rgba(255,79,182,.35);
}

.titlebar.neon{
  background:
    linear-gradient(90deg,
      rgba(111,247,255,.35),
      rgba(255,154,215,.35),
      rgba(184,255,90,.35)
    );
}

/* tiny “window dots” */
.dots{
  display:flex;
  gap:6px;
  align-items:center;
  min-width:56px;
}
.dots span{
  width:11px;height:11px;border-radius:999px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 2px 0 rgba(0,0,0,.12);
}

.title{
  font-weight:700;
  color: rgba(26,15,28,.80);
  letter-spacing:.3px;
  text-shadow: 0 1px 0 rgba(255,255,255,.45);
}

.controls{
  display:flex;
  gap:6px;
  align-items:center;
  min-width:56px;
  justify-content:flex-end;
}
.controls button{
  width:14px;height:14px;border-radius:4px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 2px 0 rgba(0,0,0,.10);
}

.content{ background: transparent; }
.pad{ padding: 12px; }

.navWin{ grid-area: nav; }
.mainWin{ grid-area: main; }
.sideWin{ grid-area: side; }
.playWin{ grid-area: play; }

/* ===== NAV BUTTONS (pill + dotted pink) ===== */
.pill{
  display:block;
  text-align:left;
  padding: 10px 12px;
  margin: 8px 0;
  border-radius: 999px;
  text-decoration:none;
  font-weight:700;

  color: #0b35ff;
  background: rgba(255,255,255,.75);
  border: 2px dotted rgba(255,79,182,.45);
  box-shadow: 0 10px 0 rgba(0,0,0,.10);
}

.pill:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.88);
  border-color: rgba(111,247,255,.55);
}

/* ===== MINI BOXES ===== */
.miniBox{
  margin-top: 10px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  border: 2px dashed rgba(255,79,182,.35);
}

.miniTitle{
  font-weight:700;
  color: #ff2aa6;
  text-decoration: underline;
  margin-bottom: 6px;
}
.miniBox p{ margin: 6px 0; color: rgba(26,15,28,.85); }

.stickerNote{
  margin-top: 10px;
  padding: 10px;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255,226,90,.28), rgba(255,154,215,.22), rgba(255,255,255,.65));
  border: 2px dashed rgba(111,247,255,.45);
}

.tag{
  display:inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.08);
  font-weight:700;
  margin-bottom: 6px;
  color: rgba(26,15,28,.85);
}

.buttonsRow{
  margin-top:10px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.miniBtn{
  display:inline-block;
  padding: 7px 10px;
  border-radius: 999px;
  text-decoration:none;
  font-weight:700;
  color: rgba(26,15,28,.85);

  background: rgba(255,255,255,.70);
  border: 2px dotted rgba(255,79,182,.45);
  box-shadow: 0 10px 0 rgba(0,0,0,.10);
}
.miniBtn:hover{ transform: translateY(-1px); }

/* ===== HERO ===== */
.hero{ padding: 14px 14px 0; }

.hero h1{
  margin:0;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: rgba(26,15,28,.88);
  text-shadow: 0 1px 0 rgba(255,255,255,.55);
}

.hero p{
  margin: 8px 0 0;
  color: rgba(26,15,28,.78);
  font-weight: 700;
}
.small{
  display:block;
  margin-top:6px;
  font-weight:700;
  color: rgba(26,15,28,.55);
}

/* ===== MARQUEE (cute) ===== */
.marquee{
  margin-top: 10px;
  border-radius: 999px;
  overflow:hidden;
  background: rgba(255,255,255,.70);
  border: 2px dotted rgba(255,79,182,.35);
}

.marqueeInner{
  padding: 8px 0;
  white-space: nowrap;
  font-weight: 700;
  color: rgba(26,15,28,.85);
  animation: scroll 18s linear infinite;
}
@keyframes scroll{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* ===== PANELS ===== */
.split{
  padding: 12px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 12px;
}

.panel{
  border-radius: 16px;
  overflow:hidden;
  background: rgba(255,255,255,.72);
  border: 2px dashed rgba(255,79,182,.35);
  box-shadow: 0 14px 0 rgba(0,0,0,.10);
}

.panelHead{
  padding: 10px 10px;
  font-weight: 700;
  color: rgba(26,15,28,.85);
  background:
    linear-gradient(90deg, rgba(255,226,90,.35), rgba(255,154,215,.30), rgba(111,247,255,.28));
  border-bottom: 2px dotted rgba(255,79,182,.25);
}

.panelBody{ padding: 10px; }

.buyGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.buy{
  display:block;
  text-align:center;
  padding: 10px 10px;
  border-radius: 999px;
  text-decoration:none;
  font-weight:700;

  background: rgba(255,255,255,.78);
  border: 2px dotted rgba(255,79,182,.45);
  box-shadow: 0 10px 0 rgba(0,0,0,.10);
  color: #0b35ff;
}

.buy.mx{ border-color: rgba(184,255,90,.65); }
.buy.intl{ border-color: rgba(255,79,182,.55); }

.buy:hover{
  transform: translateY(-1px);
  border-color: rgba(111,247,255,.60);
}

/* products list */
.products{
  margin-top: 10px;
  display:grid;
  gap: 10px;
}

.prod{
  display:flex;
  gap:10px;
  align-items:center;
  border-radius: 16px;
  padding: 10px;
  background: rgba(255,255,255,.78);
  border: 2px dotted rgba(255,79,182,.25);
}

.thumb{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 700;
  color: rgba(26,15,28,.85);
  background: linear-gradient(180deg, rgba(184,255,90,.55), rgba(255,154,215,.35));
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 6px 0 rgba(0,0,0,.10);
}

.prodName{ font-weight:700; color: rgba(26,15,28,.88); }
.prodInfo{ font-size: 12px; color: rgba(26,15,28,.60); font-weight:700; }

.fineprint{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(26,15,28,.55);
  font-weight:700;
}

/* collage */
.collage .panelBody{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.placeholder{
  min-height: 180px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255,226,90,.25), rgba(255,154,215,.20), rgba(111,247,255,.22)),
    rgba(255,255,255,.75);
  border: 2px dashed rgba(255,79,182,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 14px;
  text-align:center;
  font-weight:700;
  color: rgba(26,15,28,.70);
}

.collageImg{
  width:100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  border: 2px dashed rgba(255,79,182,.28);
}

/* stickers chips */
.stickers{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}

.chip{
  padding: 6px 10px;
  border-radius: 999px;
  font-weight:700;
  background: rgba(255,255,255,.78);
  border: 2px dotted rgba(255,79,182,.28);
  color: rgba(26,15,28,.75);
}

.neonchip{
  border-color: rgba(111,247,255,.55);
}

/* stamps */
.stampRow{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}

.stamp{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 12px;
  font-weight:700;
  color: rgba(26,15,28,.78);
  background: rgba(255,255,255,.72);
  border: 2px dotted rgba(184,255,90,.55);
  box-shadow: 0 10px 0 rgba(0,0,0,.08);
}

/* updates */
.feed{ display:grid; gap: 10px; }

.entry{
  border-radius: 16px;
  padding: 10px;
  background: rgba(255,255,255,.75);
  border: 2px dashed rgba(255,79,182,.25);
  box-shadow: 0 12px 0 rgba(0,0,0,.08);
}

.date{
  font-weight:700;
  color: #ff2aa6;
  margin-bottom: 6px;
}
.txt{ color: rgba(26,15,28,.72); font-weight:700; }

.guest{
  display:grid;
  gap: 6px;
  font-weight:700;
  color: rgba(26,15,28,.72);
}
.gline{
  padding: 8px 8px;
  border-radius: 12px;
  background: rgba(255,255,255,.78);
  border: 2px dotted rgba(255,79,182,.20);
}

/* playlist */
.playlistTitle{
  font-weight:700;
  font-size:18px;
  letter-spacing:.3px;
  color: rgba(26,15,28,.82);
  text-transform:uppercase;
  margin-bottom:10px;
}

.playerGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.playerCard{
  border-radius: 16px;
  background: rgba(255,255,255,.75);
  border: 2px dashed rgba(255,79,182,.25);
  padding: 10px;
  box-shadow: 0 12px 0 rgba(0,0,0,.08);
}

.playerHead{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  margin-bottom: 8px;
}
.label{ font-weight:700; color: rgba(26,15,28,.82); }
.sub{ font-size: 12px; font-weight:700; color: rgba(26,15,28,.55); }
.note{ margin-top: 8px; font-size: 12px; font-weight:700; color: rgba(26,15,28,.55); }

.spotify, .youtube{ border:none; display:block; }

/* footer */
.footer{
  margin-top: 14px;
  display:flex;
  justify-content:center;
  gap: 10px;
  font-weight:700;
  color: rgba(255,255,255,.88);
  text-shadow: 0 2px 0 rgba(0,0,0,.18);
}
.sep{ opacity:.65; }

/* responsive */
@media (max-width: 1050px){
  .desk{
    grid-template-columns: 1fr;
    grid-template-areas:
      "nav"
      "main"
      "side"
      "play";
  }
  .split{ grid-template-columns: 1fr; }
  .playerGrid{ grid-template-columns: 1fr; }
  .bannerTitle{ font-size: 32px; }
}
