/* Cursed Bulletin — cursedbulletin.com */
@font-face {
  font-family: 'Druk';
  src: url('fonts/DrukCond-Super-Cy-Gr-Web.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}

:root {
  --black: #0A0A0A;
  --panel: #161616;
  --lime: #B0FF00;
  --white: #FFFFFF;
  --gray: #969696;
  --line: #2A2A2A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--lime); color: var(--black); }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ---------- NAV ---------- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--white); }
.brand img { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--lime); object-fit: cover; }
.brand span {
  font-family: 'Druk', sans-serif; font-size: 26px; letter-spacing: .04em;
}
.brand span em { font-style: normal; color: var(--lime); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--gray); text-decoration: none; font-size: 15px; font-weight: 600; }
.nav-links a:hover { color: var(--lime); }
.btn {
  display: inline-block; text-decoration: none; font-weight: 600;
  padding: 13px 30px; border-radius: 999px; font-size: 16px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-lime { background: var(--lime); color: var(--black); }
.btn-lime:hover { box-shadow: 0 8px 30px rgba(176,255,0,.35); }
.btn-ghost { border: 2px solid var(--lime); color: var(--lime); background: transparent; }
.btn-sm { padding: 9px 22px; font-size: 14px; }

/* ---------- HERO ---------- */
.hero {
  padding: 150px 0 90px; text-align: center; position: relative;
}
.hero::before {
  content: ''; position: absolute; top: 60px; left: 50%;
  width: 560px; height: 560px; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(176,255,0,.12) 0%, transparent 65%);
  pointer-events: none;
}
.mascot-ring {
  width: 220px; height: 220px; margin: 0 auto 36px; position: relative;
}
.mascot-ring img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  border: 6px solid var(--lime);
  box-shadow: 0 0 60px rgba(176,255,0,.25);
}
.hero h1 {
  font-family: 'Druk', sans-serif; font-weight: 400;
  font-size: clamp(64px, 11vw, 150px); line-height: .95;
  letter-spacing: .02em; color: var(--lime);
}
.hero h1 .row2 { display: block; }
.hero p.tag {
  margin-top: 22px; font-size: 20px; color: var(--white);
}
.hero p.sub { margin-top: 10px; font-size: 16px; color: var(--gray); max-width: 520px; margin-left: auto; margin-right: auto; }
.hero-ctas { margin-top: 36px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- MARQUEE ---------- */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; white-space: nowrap; padding: 16px 0;
  background: var(--black);
}
.marquee-track { display: inline-block; animation: scroll 22s linear infinite; }
.marquee span {
  font-family: 'Druk', sans-serif; font-size: 30px; letter-spacing: .05em;
  color: var(--white); margin: 0 18px;
}
.marquee span.lime { color: var(--lime); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- SECTIONS ---------- */
section.block { padding: 90px 0; }
.kicker {
  font-family: 'Druk', sans-serif; font-size: 22px; letter-spacing: .14em;
  color: var(--lime); margin-bottom: 14px;
}
h2.head {
  font-family: 'Druk', sans-serif; font-weight: 400;
  font-size: clamp(44px, 7vw, 84px); line-height: .95; letter-spacing: .02em;
  margin-bottom: 18px;
}
.lead { color: var(--gray); font-size: 18px; max-width: 600px; line-height: 1.6; }

/* ---------- LATEST ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-top: 40px; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 20px;
  overflow: hidden; text-decoration: none; color: var(--white);
  transition: transform .15s ease, border-color .15s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--lime); }
.card-img {
  aspect-ratio: 4/5; background: #000; display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--lime); color: var(--black);
  font-family: 'Druk', sans-serif; font-size: 18px; letter-spacing: .08em;
  padding: 5px 14px; border-radius: 6px;
}
.card-body { padding: 20px 22px 24px; }
.card-body h3 { font-family: 'Druk', sans-serif; font-weight: 400; font-size: 30px; letter-spacing: .02em; line-height: 1; margin-bottom: 10px; }
.card-body p { color: var(--gray); font-size: 15px; line-height: 1.55; }
.card.soon .card-img { background: repeating-linear-gradient(45deg, #101010, #101010 18px, #141414 18px, #141414 36px); }
.card.soon .soon-mark {
  font-family: 'Druk', sans-serif; font-size: 40px; color: var(--line); letter-spacing: .06em;
}
.center { text-align: center; margin-top: 40px; }

/* ---------- TIP LINE ---------- */
.tipline { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
@media (max-width: 820px) { .tip-grid { grid-template-columns: 1fr; } }
.tip-mail {
  display: inline-block; margin-top: 22px; padding: 16px 28px;
  border: 2px solid var(--lime); border-radius: 14px;
  color: var(--lime); font-weight: 600; font-size: 18px; text-decoration: none;
}
form.tip-form { display: flex; flex-direction: column; gap: 14px; }
form.tip-form label { font-size: 14px; font-weight: 600; color: var(--gray); }
form.tip-form input, form.tip-form textarea {
  background: var(--black); border: 1px solid var(--line); border-radius: 12px;
  color: var(--white); font-family: 'Inter', sans-serif; font-size: 16px;
  padding: 14px 16px; width: 100%;
}
form.tip-form input:focus, form.tip-form textarea:focus { outline: none; border-color: var(--lime); }
form.tip-form textarea { min-height: 130px; resize: vertical; }
form.tip-form button {
  background: var(--lime); color: var(--black); border: none; cursor: pointer;
  font-weight: 600; font-size: 17px; padding: 15px; border-radius: 999px;
}
form.tip-form button:hover { box-shadow: 0 8px 30px rgba(176,255,0,.35); }
.form-note { font-size: 13px; color: var(--gray); }

/* ---------- ABOUT / FOOTER ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }
.about-grid img.mascot-big {
  width: 100%; max-width: 380px; border-radius: 24px; border: 3px solid var(--lime);
  justify-self: center;
}
footer {
  border-top: 1px solid var(--line); padding: 46px 0; text-align: center;
}
footer .f-brand { font-family: 'Druk', sans-serif; font-size: 34px; letter-spacing: .04em; margin-bottom: 10px; }
footer .f-brand em { font-style: normal; color: var(--lime); }
footer p { color: var(--gray); font-size: 14px; margin-top: 8px; }
footer a { color: var(--lime); text-decoration: none; }
footer .f-links { margin: 18px 0; display: flex; gap: 24px; justify-content: center; }

@media (max-width: 640px) {
  .nav-links a:not(.btn) { display: none; }
  section.block { padding: 64px 0; }
  .hero { padding: 120px 0 64px; }
}

/* ---------- LATEST DROPS CAROUSEL ---------- */
.drops-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; }
.drops-head .head { margin-bottom: 0; }
.drops-nav { display: flex; gap: 10px; flex-shrink: 0; }
.drops-nav button {
  width: 50px; height: 50px; border-radius: 50%;
  border: 2px solid var(--lime); background: transparent;
  color: var(--lime); font-size: 20px; cursor: pointer;
  transition: background .2s, color .2s;
}
.drops-nav button:hover { background: var(--lime); color: var(--black); }
.drops {
  display: flex; gap: 24px; overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 30px 4px 14px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.drops::-webkit-scrollbar { display: none; }
.drops-more { text-align: center; margin-top: 26px; }
.drops-more .btn { cursor: pointer; font-family: inherit; }
.drop-card {
  flex: 0 0 min(340px, 80vw); scroll-snap-align: start;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 20px; overflow: hidden;
}
.drop-img { display: block; aspect-ratio: 4 / 5; overflow: hidden; background: #000; }
.drop-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s; }
.drop-card:hover .drop-img img { transform: scale(1.03); }
.drop-body { padding: 20px 20px 22px; }
.drop-date {
  font-family: 'Druk', sans-serif; font-size: 15px;
  letter-spacing: .12em; color: var(--lime); margin-bottom: 10px;
}
.drop-cap {
  color: var(--gray); font-size: 15px; line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.drop-card.open .drop-cap { display: block; white-space: pre-line; }
.readmore {
  background: none; border: none; padding: 10px 0 0;
  color: var(--lime); font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600; cursor: pointer;
}
.readmore:hover { text-decoration: underline; }
.drop-link {
  display: inline-block; margin-top: 14px; color: var(--white);
  font-size: 14px; font-weight: 600; text-decoration: none;
  border-bottom: 2px solid var(--lime); padding-bottom: 2px;
}
.drop-link:hover { color: var(--lime); }

/* ---------- TIP LINE extras ---------- */
.tip-points { list-style: none; margin: 22px 0 30px; }
.tip-points li {
  color: var(--gray); font-size: 16px; line-height: 1.5;
  padding-left: 26px; position: relative; margin-bottom: 12px;
}
.tip-points li::before {
  content: '▸'; position: absolute; left: 0; color: var(--lime); font-weight: 700;
}
.contact-line { margin-top: 18px; color: var(--gray); font-size: 15px; }
.contact-line a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.contact-line a:hover { color: var(--lime); }

/* ---------- DISCLAIMER ---------- */
.fineprint { border-top: 1px solid var(--line); }
.fine-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 34px;
}
.fine-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 18px; padding: 28px 24px;
}
.fine-card h3 {
  font-family: 'Druk', sans-serif; font-size: 20px;
  letter-spacing: .08em; color: var(--lime); margin-bottom: 12px;
}
.fine-card p { color: var(--gray); font-size: 15px; line-height: 1.65; }
.fine-card a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.fine-card a:hover { color: var(--lime); }
@media (max-width: 820px) { .fine-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .drops-head { align-items: center; }
  .drops-nav button { width: 44px; height: 44px; }
}
