/* ═══════════ BLOG POST PAGE CUSTOM (Kidney Beans Toast) ═══════════ */
.post-text {
  padding: 32px clamp(16px, 4vw, 48px);
  background: var(--dark-gray);
  border-radius: 12px;
  max-width: 800px;
  margin: 40px auto;
  box-shadow: 0 2px 16px rgba(10,10,10,0.08);
}
.post-text h2, .post-text h3 {
  margin-top: 24px;
  margin-bottom: 16px;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--pink-hot);
}
.post-text p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--white);
  margin-bottom: 18px;
  word-break: break-word;
}
.post-text figure {
  margin: 24px 0;
  text-align: center;
}
.post-text figcaption {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}
.post-text img {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 1px 8px rgba(255,63,160,0.08);
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.tag {
  background: transparent;
  border: 1px solid rgba(200,200,200,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.82rem;
  color: #c0c0c0;
}
:root {
  --black: #0a0a0a;
  --white: #f5f2ed;
  --pink: #ff69b4;
  --pink-hot: #ff3fa0;
  --pink-glow: #ff85c8;
  --dark-gray: #111111;
  --mid-gray: #1e1e1e;
  --text-muted: #8a8580;
  --section-pad: clamp(20px, 4vw, 40px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

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

/* ═══════════ LOADER ═══════════ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 28px;
  transition: opacity .6s ease, visibility .6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#loader img { width: 120px; opacity: .9; animation: pulse 1.2s ease-in-out infinite alternate; }
@keyframes pulse { from { opacity: .5; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
#loader .track { width: 160px; height: 3px; background: var(--mid-gray); border-radius: 2px; overflow: hidden; }
#loader .track span { display: block; height: 100%; width: 0; background: var(--pink-hot); animation: load 1.4s ease-in-out forwards; }
@keyframes load { to { width: 100%; } }

/* ═══════════ NAV ═══════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px clamp(24px, 5vw, 60px);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,10,10,.88); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,105,180,.06);
  transition: transform .4s ease;
}
nav.hide { transform: translateY(-100%); }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { height: 38px; width: auto; }
.logo-text {
  font-family: 'Bebas Neue', sans-serif; font-size: 14px;
  letter-spacing: 3px; color: var(--text-muted); line-height: 1.1;
}
.nav-links { display: flex; gap: clamp(16px, 3vw, 40px); align-items: center; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none; transition: color .3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--pink-hot); transition: width .3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--pink-hot) !important; color: var(--black) !important;
  padding: 10px 24px; font-weight: 700 !important;
  letter-spacing: 2px !important; transition: background .3s !important;
}
.nav-cta:hover { background: var(--pink-glow) !important; }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { width: 28px; height: 2px; background: var(--white); transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99; background: var(--black);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  opacity: 0; visibility: hidden; transition: all .4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif; font-size: 40px; letter-spacing: 4px;
  color: var(--white); text-decoration: none; transition: color .3s;
}
.mobile-menu a:hover { color: var(--pink-hot); }

/* ═══════════ HERO ═══════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 60px clamp(24px, 5vw, 60px) var(--section-pad);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 65% 35%, rgba(255,63,160,.1) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 15% 75%, rgba(255,63,160,.05) 0%, transparent 60%),
    url('../images/hero-image.png'),
    var(--black);
  background-size: cover, cover, cover, auto;
  background-position: center, center, center, center;
  background-repeat: no-repeat;
  opacity: 0.85;
}
.hero-lines {
  position: absolute; inset: 0; opacity: .03;
  background-image: repeating-linear-gradient(90deg, var(--pink) 0, var(--pink) 1px, transparent 1px, transparent 120px);
}
.hero-grid-dots {
  position: absolute; inset: 0; opacity: .025;
  background-image: radial-gradient(circle, var(--pink) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-image {
  display: none;
}
.hero-logo {
  width: clamp(180px, 30vw, 340px); margin-bottom: 24px;
  opacity: 0; animation: fadeUp .8s .3s forwards;
}
.hero-tag {
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px;
  font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
  opacity: 0; animation: fadeUp .8s .5s forwards;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(46px, 9vw, 124px); line-height: .9; letter-spacing: -1px;
  color: var(--white); 
  opacity: 0; animation: fadeUp .8s .65s forwards;
}
.hero h1 .stroke { color: var(--white); }
.hero h1 .accent { color: var(--white); -webkit-text-stroke: 2px var(--pink-hot); text-stroke: 2px var(--pink-hot); paint-order: stroke fill; }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px); font-weight: 500; color: var(--white);
  max-width: 500px; margin-top: 28px; line-height: 1.6;
  opacity: 0; animation: fadeUp .8s .8s forwards;
}
.hero-btns {
  display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s 1s forwards;
}
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif; font-size: 15px;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  padding: 16px 40px; background: var(--pink-hot); color: var(--black);
  border: none; cursor: pointer; text-decoration: none; transition: all .3s; display: inline-block;
}
.btn-primary:hover { background: var(--pink-glow); transform: translateY(-2px); }
.btn-outline {
  font-family: 'Barlow Condensed', sans-serif; font-size: 15px;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  padding: 16px 40px; background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,.15); cursor: pointer;
  text-decoration: none; transition: all .3s; display: inline-block;
}
.btn-outline:hover { border-color: var(--pink-hot); color: var(--pink-hot); }

.hero-stats {
  display: flex; gap: 48px; margin-top: 60px;
  opacity: 0; animation: fadeUp .8s 1.2s forwards;
}
.hero-stats .stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 42px; color: var(--pink-hot); }
.hero-stats .stat-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--black); }

/* Ticker */
.ticker-wrap {
  overflow: hidden; border-top: 1px solid rgba(255,105,180,.08);
  border-bottom: 1px solid rgba(255,105,180,.08); padding: 18px 0;
  margin-top: 0;
  position: relative;
  z-index: 10;
  background: var(--black);
}
.ticker { display: flex; gap: 60px; white-space: nowrap; animation: ticker 30s linear infinite; }
.ticker span { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 6px; color: var(--white); }
.ticker span.dot { color: var(--pink-hot); opacity: .3; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ═══════════ ABOUT SECTION ═══════════ */
.about-section {
  background: var(--dark-gray);
  padding: var(--section-pad) clamp(24px, 5vw, 60px);
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}
.about-video {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--dark-gray);
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-text {
  font-size: 17px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 12px;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin: 24px 0;
  flex-wrap: wrap;
}
.about-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stat-icon {
  font-size: 28px;
}
.stat-text {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
  line-height: 1.4;
}

/* ═══════════ SECTIONS ═══════════ */
section { padding: var(--section-pad) clamp(24px, 5vw, 60px); }
.section-tag {
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px;
  font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--pink-hot); margin-bottom: 12px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 72px); line-height: .95;
  letter-spacing: 1px; margin-bottom: 20px;
}
.section-desc {
  font-size: 17px; font-weight: 300; color: var(--white);
  max-width: 600px; line-height: 1.7; margin-bottom: 48px;
}

.divider-line {
  height: 1px; background: linear-gradient(90deg, transparent, rgba(255,63,160,.2), transparent);
}

/* ═══════════ LIVESTREAM ═══════════ */
#livestream { background: var(--dark-gray); position: relative; }
.stream-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }
.stream-card {
  background: var(--black); border: 1px solid rgba(255,255,255,.05);
  overflow: hidden; transition: transform .4s, border-color .4s;
}
.stream-card:hover { transform: translateY(-4px); border-color: var(--pink-hot); }
.stream-thumb { aspect-ratio: 16/9; background: var(--mid-gray); position: relative; overflow: hidden; cursor: pointer; }
.play-btn {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(0,0,0,.4); opacity: 0; transition: opacity .3s;
}
.stream-card:hover .play-btn { opacity: 1; }
.play-btn svg { width: 56px; height: 56px; filter: drop-shadow(0 2px 12px rgba(0,0,0,.5)); }
.stream-badge {
  position: absolute; top: 12px; left: 12px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; background: var(--white); color: var(--black);
}
.stream-badge.past { background: rgba(255,255,255,.12); color: var(--white); }
.stream-info { padding: 20px; }
.stream-info h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 18px;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px;
}
.stream-info p { font-size: 13px; color: var(--text-muted); }

/* ═══════════ SHOP ═══════════ */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.product-card {
  background: var(--dark-gray); border: 1px solid rgba(255,255,255,.04);
  overflow: hidden; transition: all .4s;
}
.product-card:hover { border-color: rgba(255,63,160,.3); transform: translateY(-4px); }
.product-img {
  aspect-ratio: 1; background: var(--mid-gray); position: relative;
  display: flex; align-items: center; justify-content: center;
}
.product-img .placeholder-icon { font-size: 60px; opacity: .12; }
.product-tag {
  position: absolute; top: 12px; right: 12px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; background: var(--pink-hot); color: var(--black);
}
.product-body { padding: 20px; }
.product-body h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 17px;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.product-body .price {
  font-family: 'Bebas Neue', sans-serif; font-size: 28px;
  color: var(--pink-hot); margin: 8px 0 16px;
}
.product-body .price .old { font-size: 18px; color: var(--text-muted); text-decoration: line-through; margin-left: 8px; }
.btn-cart {
  width: 100%; padding: 12px; font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.12);
  cursor: pointer; transition: all .3s;
}
.btn-cart:hover { background: var(--pink-hot); color: var(--black); border-color: var(--pink-hot); }

/* ═══════════ BLOG ═══════════ */
#blog { background: var(--dark-gray); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.blog-card { border: 1px solid rgba(255,255,255,.04); overflow: hidden; transition: all .4s; background: var(--black); }
.blog-card:hover { border-color: rgba(255,63,160,.3); transform: translateY(-4px); }
.blog-img {
  height: 220px; background: var(--mid-gray); position: relative;
  display: flex; align-items: center; justify-content: center;
}
.blog-img .placeholder-icon { font-size: 48px; opacity: .1; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-cat {
  position: absolute; bottom: 12px; left: 12px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; background: var(--pink-hot); color: var(--black);
}
.blog-body { padding: 24px; }
.blog-body .date { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.blog-body h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 22px;
  font-weight: 700; text-transform: uppercase; line-height: 1.2;
  margin-bottom: 12px; transition: color .3s;
}
.blog-card:hover .blog-body h3 { color: var(--pink-hot); }
.blog-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.blog-body .read-more {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--pink-hot); text-decoration: none; transition: gap .3s;
}
.blog-body .read-more:hover { gap: 14px; }

/* ═══════════ SOCIAL ═══════════ */
.social-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.social-card {
  padding: 32px; border: 1px solid rgba(255,255,255,.05); background: var(--dark-gray);
  transition: all .4s; text-decoration: none; color: var(--white); display: block;
}
.social-card:hover { transform: translateY(-4px); }
.social-card .icon {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  font-size: 22px; margin-bottom: 20px; transition: transform .3s;
}
.social-card:hover .icon { transform: scale(1.1); }
.social-card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 20px;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px;
}
.social-card .handle { font-size: 14px; color: var(--pink-hot); margin-bottom: 12px; }
.social-card .bio { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.social-card .stats-row {
  display: flex; gap: 20px; margin-top: 16px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.social-card .stats-row span { font-size: 12px; letter-spacing: 1px; color: var(--text-muted); }
.social-card .stats-row strong { color: var(--white); }

.social-yt .icon { background: rgba(255,0,0,.15); color: #ff0000; }
.social-yt:hover { border-color: #ff0000; }
.social-ig .icon { background: rgba(225,48,108,.15); color: #e1306c; }
.social-ig:hover { border-color: #e1306c; }
.social-tt .icon { background: rgba(0,242,234,.15); color: #00f2ea; }
.social-tt:hover { border-color: #00f2ea; }
.social-x .icon { background: rgba(255,255,255,.1); color: #fff; }
.social-x:hover { border-color: #fff; }
.social-fb .icon { background: rgba(24,119,242,.15); color: #1877f2; }
.social-fb:hover { border-color: #1877f2; }
.social-st .icon { background: rgba(252,82,0,.15); color: #fc5200; }
.social-st:hover { border-color: #fc5200; }

/* ═══════════ NEWSLETTER ═══════════ */
.newsletter {
  padding: var(--section-pad) clamp(24px, 5vw, 60px);
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(255,63,160,.06), transparent), var(--dark-gray);
  text-align: center;
}
.newsletter-support-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
.newsletter-box, .support-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.newsletter .section-title { margin: 0 0 12px; }
.newsletter .section-desc { margin: 0 0 16px; text-align: left; }
.newsletter-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.newsletter-benefits li {
  font-size: 15px;
  color: var(--white);
  line-height: 1.8;
  padding-left: 0;
  margin-bottom: 8px;
}
.newsletter-form { display: flex; gap: 0; max-width: 100%; margin: 0; }
.newsletter-form input {
  flex: 1; padding: 16px 20px; font-family: 'Barlow', sans-serif; font-size: 15px;
  background: var(--black); color: var(--white);
  border: 1px solid rgba(255,255,255,.08); border-right: none; outline: none; transition: border-color .3s;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { border-color: var(--pink-hot); }
.newsletter-form button {
  padding: 16px 32px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  background: var(--pink-hot); color: var(--black); border: none; cursor: pointer; transition: background .3s;
}
.newsletter-form button:hover { background: var(--pink-glow); }

.support-impact {
  font-size: 14px;
  color: var(--white);
  line-height: 1.6;
  margin: 12px 0 24px;
  padding: 16px;
  background: rgba(255,63,160,.08);
  border-left: 3px solid var(--pink-hot);
  border-radius: 4px;
}
.support-impact strong {
  color: var(--pink-hot);
  font-weight: 600;
}
.support-thanks {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  font-style: italic;
}
.support-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.btn-support, .btn-support-alt {
  display: block;
  padding: 16px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .3s;
}
.btn-support {
  background: var(--pink-hot);
  color: var(--black);
}
.btn-support:hover {
  background: var(--pink-glow);
}
.btn-support-alt {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
}
.btn-support-alt:hover {
  border-color: var(--pink-hot);
  color: var(--pink-hot);
}

/* ═══════════ FOOTER ═══════════ */
/* ═══════════ BLOG POST CUSTOM ═══════════ */
.post-text {
  padding: 32px clamp(16px, 4vw, 48px);
  background: var(--dark-gray);
  border-radius: 12px;
  max-width: 800px;
  margin: 40px auto;
  box-shadow: 0 2px 16px rgba(10,10,10,0.08);
}
.post-text h2, .post-text h3 {
  margin-top: 24px;
  margin-bottom: 16px;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--pink-hot);
}
.post-text p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--white);
  margin-bottom: 18px;
  word-break: break-word;
}
.post-text figure {
  margin: 24px 0;
  text-align: center;
}
.post-text figcaption {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}
.post-text img {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 1px 8px rgba(255,63,160,0.08);
}
footer {
  padding: 48px clamp(24px, 5vw, 60px);
  border-top: 1px solid rgba(255,105,180,.08);
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 24px;
}
.foot-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; cursor: pointer; transition: opacity .3s; }
.foot-brand:hover { opacity: .8; }
.foot-brand img { height: 28px; width: auto; opacity: .6; transition: opacity .3s; }
.foot-brand:hover img { opacity: 1; }
footer .foot-links { display: flex; gap: 28px; flex-wrap: wrap; }
footer .foot-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; letter-spacing: 1px; transition: color .3s; }
footer .foot-links a:hover { color: var(--pink-hot); }
footer .copy { font-size: 12px; color: var(--text-muted); }

/* ═══════════ ANIMATIONS ═══════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .about-container { grid-template-columns: 1fr; gap: 32px; }
  .stream-grid, .shop-grid, .blog-grid, .social-grid { grid-template-columns: 1fr; }
  .newsletter-support-container { grid-template-columns: 1fr; gap: 48px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid rgba(255,255,255,.08); }
  .logo-text { display: none; }
}
