@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Permanent+Marker&family=Oswald:wght@400;500;600;700&family=Share+Tech+Mono&display=swap');

:root {
  --gold: #FFD700;
  --gold2: #FFA500;
  --red: #FF2D2D;
  --green: #00FF88;
  --bg: #0D0500;
  --card: #1A0A00;
  --white: #FFF8EE;
}

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  overflow-x: hidden;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ctext y='26' font-size='26'%3E%F0%9F%90%BB%3C/text%3E%3C/svg%3E"), auto;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0D0500; }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold), var(--gold2)); border-radius: 3px; }

/* ── FLOATING BEARS ── */
.floaty {
  position: fixed; pointer-events: none; z-index: 9000;
  font-size: 2rem; animation: floatUp linear infinite;
  opacity: 0.12;
}
@keyframes floatUp {
  0%   { transform: translateY(110vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.12; }
  90%  { opacity: 0.12; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 12px 32px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(13,5,0,0.95);
  border-bottom: 3px solid var(--gold);
  backdrop-filter: blur(8px);
  transition: background 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img {
  width: 48px; height: 48px; border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 20px rgba(255,215,0,0.6);
  animation: logoPulse 2s ease-in-out infinite;
}
@keyframes logoPulse {
  0%,100% { box-shadow: 0 0 20px rgba(255,215,0,0.5); }
  50%      { box-shadow: 0 0 40px rgba(255,215,0,1), 0 0 60px rgba(255,165,0,0.5); }
}
.nav-logo span {
  font-family: 'Bangers', cursive;
  font-size: 2rem; letter-spacing: 3px;
  color: var(--gold);
  text-shadow: 3px 3px 0 #000;
}
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--white);
  font-weight: 700; font-size: 0.9rem; letter-spacing: 1px;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-socials { display: flex; gap: 14px; align-items: center; }
.nav-socials a {
  color: var(--gold); opacity: 0.8;
  transition: opacity 0.2s, transform 0.2s; display: flex;
}
.nav-socials a:hover { opacity: 1; transform: scale(1.2) rotate(-5deg); }
.nav-socials svg { width: 22px; height: 22px; fill: currentColor; }

/* ── TICKER ── */
.ticker-bar {
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold));
  padding: 10px 0; overflow: hidden;
  border-bottom: 2px solid #000;
  position: relative; z-index: 100;
  margin-top: 75px;
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: tickerScroll 20s linear infinite;
}
.ticker-item {
  font-family: 'Bangers', cursive;
  font-size: 1.1rem; letter-spacing: 3px;
  color: #000; padding: 0 32px;
}
.ticker-item::after { content: ' 🐻 '; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HERO ── */
#hero {
  min-height: 95vh;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center;
  padding: 80px 24px 60px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(107,58,31,0.4) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(255,45,45,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0,255,136,0.08) 0%, transparent 60%);
}
.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,215,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,215,0,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; max-width: 900px; }

.hero-emoji {
  font-size: 5rem; margin-bottom: 8px; display: block;
  animation: heroEmoji 3s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(255,215,0,0.8));
}
@keyframes heroEmoji {
  0%,100% { transform: scale(1) rotate(-3deg); }
  50%      { transform: scale(1.15) rotate(3deg); }
}

.hero-logo-wrap { position: relative; display: inline-block; margin: 16px 0; }
.hero-logo {
  width: 180px; height: 180px; border-radius: 50%; object-fit: cover;
  border: 5px solid var(--gold);
  box-shadow: 0 0 50px rgba(255,215,0,0.7), 0 0 100px rgba(255,165,0,0.4);
  animation: heroBounce 2s ease-in-out infinite;
  position: relative; z-index: 2;
}
@keyframes heroBounce {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-12px) scale(1.03); }
}
.hero-ring {
  position: absolute; border-radius: 50%;
  border: 2px solid rgba(255,215,0,0.3);
  animation: ringPulse 2s ease-out infinite;
  pointer-events: none;
}
.hero-ring:nth-child(1) { inset: -20px; }
.hero-ring:nth-child(2) { inset: -45px; border-color: rgba(255,215,0,0.15); animation-delay: 0.5s; }
.hero-ring:nth-child(3) { inset: -75px; border-color: rgba(255,215,0,0.07); animation-delay: 1s; }
@keyframes ringPulse {
  0%   { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.1);  opacity: 0; }
}

h1.hero-title {
  font-family: 'Bangers', cursive;
  font-size: clamp(5rem, 15vw, 12rem);
  letter-spacing: 8px; line-height: 0.9;
  color: var(--gold);
  text-shadow: 6px 6px 0 #000, 0 0 60px rgba(255,215,0,0.8);
  animation: titleWobble 4s ease-in-out infinite;
}
@keyframes titleWobble {
  0%,100% { letter-spacing: 8px; }
  50%      { letter-spacing: 12px; }
}
.hero-sub {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--gold2); margin: 8px 0 24px;
  text-shadow: 2px 2px 0 #000;
}
.hero-meme-text {
  background: rgba(255,215,0,0.08);
  border: 2px dashed var(--gold);
  border-radius: 16px; padding: 16px 32px;
  margin: 20px auto; max-width: 560px;
  font-family: 'Permanent Marker', cursive;
  font-size: 1.1rem; line-height: 1.9; color: var(--white);
}
.hero-meme-text em { color: var(--gold); font-style: normal; }

/* CA BOX */
.ca-section { margin: 28px auto; max-width: 520px; }
.ca-label {
  font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold2); margin-bottom: 8px; opacity: 0.8;
}
.ca-box {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,215,0,0.08);
  border: 2px solid var(--gold); border-radius: 10px; padding: 12px 16px;
}
.ca-address {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem; color: var(--gold2);
  flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ca-copy {
  background: var(--gold); color: #000; border: none;
  padding: 8px 16px; border-radius: 6px;
  font-family: 'Bangers', cursive; font-size: 1rem; letter-spacing: 1px;
  cursor: pointer; transition: transform 0.15s, background 0.15s; white-space: nowrap;
}
.ca-copy:hover { background: var(--gold2); transform: scale(1.05); }

/* HERO BUTTONS */
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.btn-buy {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000; text-decoration: none;
  font-family: 'Bangers', cursive; font-size: 1.6rem; letter-spacing: 2px;
  padding: 14px 40px; border-radius: 12px;
  box-shadow: 0 6px 30px rgba(255,215,0,0.5), 4px 4px 0 #000;
  transition: transform 0.15s; border: 3px solid #000;
  animation: btnPulse 2s ease-in-out infinite;
}
@keyframes btnPulse {
  0%,100% { box-shadow: 0 6px 30px rgba(255,215,0,0.4), 4px 4px 0 #000; }
  50%      { box-shadow: 0 6px 50px rgba(255,215,0,0.9), 4px 4px 0 #000; }
}
.btn-buy:hover { transform: translateY(-4px) scale(1.05); }
.btn-outline {
  border: 3px solid var(--gold); color: var(--gold);
  text-decoration: none; font-family: 'Bangers', cursive;
  font-size: 1.6rem; letter-spacing: 2px;
  padding: 14px 40px; border-radius: 12px;
  transition: all 0.2s; box-shadow: 4px 4px 0 var(--gold);
}
.btn-outline:hover { background: rgba(255,215,0,0.1); transform: translateY(-4px); }

/* ── MEME CARDS STRIP ── */
.meme-strip {
  background: rgba(255,215,0,0.04);
  border-top: 3px solid rgba(255,215,0,0.15);
  border-bottom: 3px solid rgba(255,215,0,0.15);
  padding: 40px 24px;
}
.meme-strip-inner {
  display: flex; gap: 16px; align-items: stretch;
  max-width: 1100px; margin: 0 auto; flex-wrap: wrap;
}
.meme-card {
  background: var(--card);
  border: 3px solid var(--gold); border-radius: 16px; padding: 24px;
  flex: 1; min-width: 180px; text-align: center;
  transition: transform 0.2s;
  box-shadow: 4px 4px 0 rgba(255,215,0,0.15);
}
.meme-card:hover { transform: translateY(-6px) rotate(1deg); }
.meme-card:nth-child(even):hover { transform: translateY(-6px) rotate(-1deg); }
.meme-card-emoji { font-size: 3rem; display: block; margin-bottom: 10px; }
.meme-card-title {
  font-family: 'Bangers', cursive; font-size: 1.5rem;
  letter-spacing: 2px; color: var(--gold); margin-bottom: 6px;
}
.meme-card-text { font-size: 0.9rem; color: rgba(255,248,238,0.65); line-height: 1.5; }

/* ── SHARED SECTION STYLES ── */
#about, #gallery, #socials { padding: 100px 24px; }
.section { max-width: 1100px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: var(--gold); color: #000;
  font-family: 'Bangers', cursive; font-size: 1rem; letter-spacing: 3px;
  padding: 4px 16px; border-radius: 4px; margin-bottom: 16px;
  transform: rotate(-1deg);
}
.section-title {
  font-family: 'Bangers', cursive;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 3px; line-height: 1;
  text-shadow: 4px 4px 0 rgba(0,0,0,0.5);
  margin-bottom: 48px;
}
.section-title span { color: var(--gold); }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-image-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: 8px 8px 0 rgba(255,215,0,0.3);
  transform: rotate(-2deg); transition: transform 0.3s;
}
.about-image-wrap:hover { transform: rotate(0deg) scale(1.02); }
.about-image-wrap img { width: 100%; display: block; }
.stamp {
  position: absolute; top: 16px; right: 16px;
  background: var(--red); color: #fff;
  font-family: 'Bangers', cursive; font-size: 1.2rem; letter-spacing: 2px;
  padding: 6px 12px; border-radius: 6px;
  transform: rotate(8deg); border: 2px solid #fff;
  box-shadow: 3px 3px 0 #000;
}
.about-text p { font-size: 1.05rem; line-height: 1.8; color: rgba(255,248,238,0.85); margin-bottom: 16px; }
.about-text strong { color: var(--gold); }

.traits { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.trait {
  background: rgba(255,215,0,0.07);
  border: 2px solid rgba(255,215,0,0.25);
  border-radius: 12px; padding: 16px; text-align: center;
  transition: transform 0.2s, background 0.2s;
}
.trait:hover { transform: translateY(-4px); background: rgba(255,215,0,0.12); }
.trait-icon { font-size: 2rem; margin-bottom: 6px; }
.trait-name { font-family: 'Bangers', cursive; font-size: 1.2rem; letter-spacing: 2px; color: var(--gold); }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: 14px; cursor: pointer;
  border: 3px solid rgba(255,215,0,0.2);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item:hover {
  transform: scale(1.03) rotate(-1deg);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(255,215,0,0.4), 5px 5px 0 rgba(255,215,0,0.2);
  z-index: 2;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: 'Bangers', cursive; font-size: 1.3rem;
  letter-spacing: 2px; color: var(--gold); text-shadow: 2px 2px 0 #000;
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.93);
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  background: var(--gold); color: #000;
  border: none; width: 44px; height: 44px;
  border-radius: 50%; font-size: 1.2rem; cursor: pointer;
  font-family: 'Bangers', cursive;
}
.lightbox img {
  max-width: 90vw; max-height: 90vh;
  border-radius: 12px; border: 4px solid var(--gold);
  box-shadow: 0 0 60px rgba(255,215,0,0.3);
}

/* ── SOCIALS ── */
.socials-cards {
  display: flex; gap: 20px; justify-content: center;
  flex-wrap: wrap; margin-top: 48px;
}
.social-card {
  background: var(--card);
  border: 3px solid rgba(255,215,0,0.3);
  border-radius: 20px; padding: 32px 28px;
  text-decoration: none; color: var(--white);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  min-width: 160px; transition: all 0.2s;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
}
.social-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px) rotate(2deg);
  box-shadow: 6px 10px 0 rgba(255,215,0,0.25);
}
.social-card:nth-child(even):hover { transform: translateY(-8px) rotate(-2deg); }
.social-icon-wrap {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,215,0,0.1);
  display: flex; align-items: center; justify-content: center;
}
.social-icon-wrap svg { width: 32px; height: 32px; }
.social-name { font-family: 'Bangers', cursive; font-size: 1.3rem; letter-spacing: 2px; color: var(--gold); }
.social-handle { font-size: 0.8rem; color: rgba(255,248,238,0.5); }

/* ── FOOTER ── */
footer {
  background: #050200;
  border-top: 4px solid var(--gold);
  padding: 48px 24px; text-align: center;
}
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 20px; }
.footer-logo img { width: 56px; height: 56px; border-radius: 50%; border: 3px solid var(--gold); }
.footer-logo span { font-family: 'Bangers', cursive; font-size: 2.5rem; color: var(--gold); letter-spacing: 4px; }
.footer-emoji { font-size: 2rem; margin-bottom: 12px; }
.footer-disclaimer { font-size: 0.8rem; color: rgba(255,248,238,0.35); max-width: 480px; margin: 0 auto 12px; line-height: 1.7; }
.footer-copy { font-size: 0.75rem; color: rgba(255,248,238,0.2); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── CLICK POP ── */
@keyframes popUp {
  0%   { transform: translateY(0) scale(1); opacity: 1; }
  100% { transform: translateY(-80px) scale(1.5); opacity: 0; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 220px; }
  nav { padding: 12px 16px; }
  .nav-links { gap: 14px; }
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .hero-logo { width: 130px; height: 130px; }
}
