/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'Daydream';
  src: url('Daydream DEMO.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Determination';
  src: url('determination.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --blue-deep:   #f8f9fc;
  --blue-dark:   #f0f2f8;
  --blue-mid:    #e8ecf5;
  --blue-accent: #c7d2fe;
  --cyan:        #4f46e5;
  --cyan-light:  #818cf8;
  --cyan-glow:   #4f46e544;
  --aqua:        #6366f1;
  --white:       #1e1b4b;
  --white-dim:   #64748b;
  --card-bg:     #ffffffcc;
  --card-border: #4f46e544;
  --discord:     #5865f2;
  --discord-dk:  #4752c4;
  --font-main:   'Determination', sans-serif;
  --font-pixel:  'Daydream', sans-serif;
}

html { scroll-behavior: smooth; }

/* All inline SVG icons inherit currentColor from their container.
   Default icon color — overridden per-context below. */
svg { color: inherit; }

body {
  background: var(--blue-deep);
  color: var(--white);
  font-family: var(--font-main);
  overflow-x: hidden;
  min-height: 100vh;
}

/* =====================
   PARTICLES — hidden; background.png is used instead
   ===================== */
#particles-canvas {
  display: none;
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 2.5rem;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(18px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.shark-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--cyan);
}

.logo-text {
  font-family: var(--font-pixel);
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 1px;
}

/* sharkFloat removed — no longer used */

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--white-dim);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.93rem;
  letter-spacing: 0.4px;
  position: relative;
  transition: color 0.25s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--aqua));
  border-radius: 2px;
  transition: width 0.3s;
}

.nav-link:hover { color: var(--cyan); }
.nav-link:hover::after { width: 100%; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--cyan);
  border-radius: 3px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Nav social icons */
.nav-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: var(--white-dim);
  background: transparent;
  border: 1px solid transparent;
  text-decoration: none;
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.social-btn:hover {
  color: #4f46e5;
  background: #4f46e514;
  border-color: #4f46e5;
  box-shadow: 0 0 12px #4f46e533;
}

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7rem 6vw 4rem;
  overflow: hidden;
  gap: 3rem;
}

/* Real asset as bg */
.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('background.png') center center / cover no-repeat;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(238,242,255,0.82) 0%, rgba(238,242,255,0.55) 45%, rgba(238,242,255,0.15) 100%);
  z-index: 1;
}

/* Bubbles — disabled */
.bubbles-container { display: none; }

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  flex: 1;
}

.gura-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cyan), var(--aqua));
  color: var(--blue-deep);
  font-family: var(--font-pixel);
  font-size: 0.38rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.3rem;
  letter-spacing: 0.5px;
}

.badge-inner { font-family: var(--font-pixel); font-size: 0.38rem; }

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-bottom: 1.4rem;
}

.title-line1 {
  font-family: var(--font-pixel);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--cyan);
  line-height: 1.3;
}

.title-line2 {
  font-family: var(--font-pixel);
  font-size: clamp(0.7rem, 1.6vw, 1.1rem);
  font-weight: normal;
  color: var(--white-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.6rem;
  line-height: 1.5;
}

.hero-desc {
  color: var(--white-dim);
  font-size: 1.03rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.8rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.97rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: inherit;
}

.btn:hover::before { opacity: 1; }
.btn:hover  { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, #4f46e5, #4338ca);
  color: var(--blue-deep);
  box-shadow: 0 4px 24px #4f46e533;
}
.btn-primary:hover {
  box-shadow: 0 8px 40px #4f46e566, 0 0 60px #4f46e533;
}

.btn-secondary {
  background: transparent;
  color: var(--cyan);
  border-color: var(--cyan);
}
.btn-secondary:hover {
  background: #eef2ff;
  box-shadow: 0 4px 24px #4f46e533;
}

.btn-discord {
  background: var(--discord);
  color: #fff;
  box-shadow: 0 4px 24px #5865f255;
}
.btn-discord:hover {
  background: var(--discord-dk);
  box-shadow: 0 8px 40px #5865f288;
}

.btn-outline-yt {
  background: transparent;
  color: #ff4444;
  border-color: #ff4444;
}
.btn-outline-yt:hover {
  background: #ff444422;
  box-shadow: 0 4px 24px #ff444444;
}

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  backdrop-filter: blur(12px);
  width: fit-content;
  opacity: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.2rem;
}

.stat-num {
  font-family: var(--font-pixel);
  font-size: 0.95rem;
  color: var(--cyan);
  line-height: 1.4;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--white-dim);
  margin-top: 0.25rem;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--card-border);
}

/* Hero art — uses picture_3.jpg */
.hero-art {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art-glow {
  display: none;
}

.hero-art-frame {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 3px solid #4f46e5;
  overflow: hidden;
  box-shadow: 0 0 32px #4f46e533;
  animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero-gura-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(1.2) brightness(1.05);
}

/* Orbiting fish — disabled */
.pixel-orbit { display: none; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-dim);
  font-size: 0.78rem;
  z-index: 2;
  animation: scrollHintFade 2s ease-in-out infinite alternate;
}

@keyframes scrollHintFade {
  from { opacity: 0.3; }
  to   { opacity: 0.75; }
}

.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid #4f46e5;
  border-bottom: 2px solid #4f46e5;
  transform: rotate(45deg);
  animation: scrollArrow 1.5s ease-in-out infinite;
}

@keyframes scrollArrow {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 1; }
  50%       { transform: rotate(45deg) translate(4px, 4px); opacity: 0.35; }
}

/* =====================
   SECTIONS COMMON
   ===================== */
.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--cyan-glow), #6366f133);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 0.3rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.section-title {
  font-family: var(--font-pixel);
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  font-weight: normal;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.section-subtitle {
  color: var(--white-dim);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Scroll Reveal base states — anime.js JS overrides these on trigger */
.reveal-block,
.reveal-left,
.reveal-right,
.reveal-card,
.reveal-event,
.reveal-gallery {
  opacity: 0;
}

/* Section top rule */
.about, .events, .gallery, .discord-section {
  padding: 7rem 0;
  position: relative;
}

.about::before,
.events::before,
.gallery::before,
.discord-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c7d2fe, transparent);
}

/* =====================
   ABOUT
   ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-art {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(1.15) brightness(0.95);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.about-art:hover .about-img {
  transform: scale(1.04);
  filter: saturate(1.3) brightness(1.05);
}

.about-img-glow {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: inset 0 0 40px #4f46e522, 0 0 32px #4f46e522;
  pointer-events: none;
}

/* About right column */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.about-lead {
  color: var(--white-dim);
  font-size: 0.97rem;
  line-height: 1.75;
  padding: 1rem 1.2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  border-left: 3px solid #4f46e5;
  backdrop-filter: blur(10px);
}

/* SVG scene overlay on about art */
.about-svg-scene {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.8rem;
  background: linear-gradient(to top, rgba(5,13,26,0.85) 0%, transparent 100%);
  border-radius: 0 0 24px 24px;
  pointer-events: none;
}

.about-svg-scene svg {
  width: 100%;
  height: auto;
  color: var(--cyan);
  opacity: 0.7;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  perspective: 800px;
}

/* =====================
   ART BANNER
   ===================== */
.art-banner {
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}

.art-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c7d2fe, transparent);
}

.art-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr;
  gap: 1.2rem;
  align-items: center;
}

.art-panel {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: default;
  padding: 1.2rem;
}

.art-panel:hover {
  border-color: #4f46e5;
  box-shadow: 0 8px 36px #4f46e522;
  transform: translateY(-4px);
}

.art-svg {
  width: 100%;
  height: auto;
  display: block;
  color: var(--cyan);
}

.art-label {
  display: block;
  text-align: center;
  margin-top: 0.7rem;
  font-size: 0.72rem;
  color: var(--cyan);
  font-family: var(--font-pixel);
  letter-spacing: 1px;
  opacity: 0.85;
}

.about-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 1.6rem 1.3rem;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, #4f46e522, transparent 65%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.about-card:hover {
  border-color: #4f46e5;
  box-shadow: 0 12px 40px #4f46e522;
}

.about-card:hover::before { opacity: 1; }

/* card-icon: SVG icons */
.card-icon {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--cyan);
  line-height: 0;
}

.card-icon svg {
  width: 40px;
  height: 40px;
}

.about-card h3 {
  font-family: var(--font-pixel);
  font-size: 0.6rem;
  font-weight: normal;
  color: var(--white);
  margin-bottom: 0.7rem;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.about-card p {
  color: var(--white-dim);
  font-size: 0.87rem;
  line-height: 1.65;
}

/* =====================
   EVENTS
   ===================== */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.events-single {
  max-width: 760px;
  margin: 0 auto;
}

.events-single .event-card.featured {
  padding: 2.5rem;
}

.events-single .event-card.featured h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.events-single .event-card.featured p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.event-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.event-card:hover {
  border-color: #4f46e5;
  box-shadow: 0 8px 32px #4f46e522;
}

.event-card.featured {
  border-color: #4338ca;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  box-shadow: 0 4px 32px #4f46e540;
  color: #fff;
}

.event-card.featured h3,
.event-card.featured p,
.event-card.featured .tag,
.event-card.featured .event-day,
.event-card.featured .event-month {
  color: #fff;
}

.event-card.featured .tag {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}

.event-card.featured .event-cta {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

.event-card.featured:hover {
  box-shadow: 0 16px 48px #4f46e550;
}

.event-card-link:hover.featured .event-cta {
  background: #fff;
  color: #4f46e5;
}

/* Clickable event card */
.event-card-link {
  display: flex;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.event-card-link:hover {
  border-color: #4f46e5;
  box-shadow: 0 16px 48px #4f46e530;
  transform: translateY(-3px);
}

.event-card-link:hover .event-cta-arrow {
  transform: translate(3px, -3px);
}

/* CTA row inside card */
.event-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
  padding: 0.45rem 1.1rem;
  border: 1.5px solid var(--cyan);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s;
}

.event-card-link:hover .event-cta {
  background: var(--cyan);
  color: var(--blue-deep);
}

.event-cta-arrow {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

/* Badge */
.event-badge {
  position: absolute;
  top: 1rem; right: 1.5rem;
  background: linear-gradient(135deg, var(--cyan), var(--aqua));
  color: var(--blue-deep);
  font-size: 0.68rem;
  font-weight: 900;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.4px;
}

/* Live Now badge */
.event-badge-live {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #22c55e, #15803d);
  color: #fff;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  animation: livePulse 1.4s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.event-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 80% at 10% 50%, #4f46e518, transparent 70%);
  opacity: 0.28;
  pointer-events: none;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 54px;
  background: linear-gradient(135deg, var(--cyan), #3730a3);
  border-radius: 14px;
  padding: 0.6rem 0.5rem;
  flex-shrink: 0;
}

.event-day {
  font-family: var(--font-pixel);
  font-size: 0.85rem;
  color: var(--blue-deep);
  line-height: 1.4;
}

.event-month {
  font-size: 0.58rem;
  font-weight: 900;
  color: var(--blue-deep);
  letter-spacing: 1px;
  margin-top: 0.2rem;
}

.event-info h3 {
  font-family: var(--font-pixel);
  font-size: 0.65rem;
  font-weight: normal;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.event-info p {
  color: var(--white-dim);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag {
  background: #4f46e518;
  border: 1px solid #c7d2fe;
  color: #4f46e5;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* =====================
   GALLERY
   ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: saturate(1.1) brightness(0.9);
}

.gallery-item:hover img {
  transform: scale(1.07);
  filter: saturate(1.3) brightness(1.0);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.2rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.gallery-item:hover {
  border-color: #4f46e5;
  box-shadow: 0 8px 32px #4f46e522;
}

/* SVG panels in gallery */
.gallery-svg-item {
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.gallery-svg-item svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  color: var(--cyan);
}

/* =====================
   GURA LINKS
   ===================== */
.gura-links {
  padding: 5rem 0;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #eef2ff 0%, #f8f9fc 100%);
}

.gura-links::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c7d2fe, transparent);
}

.gura-links-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.gura-links-text {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
}

.gura-links-text .section-tag {
  margin-bottom: 0.6rem;
}

.gura-links-text .section-title {
  margin-bottom: 0.4rem;
}

.gura-links-desc {
  color: var(--white-dim);
  font-size: 0.92rem;
  line-height: 1.6;
}

.gura-links-cards {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 280px;
}

.gura-link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.4rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.gura-link-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, #4f46e518, transparent 65%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.gura-link-card:hover {
  border-color: #4f46e5;
  box-shadow: 0 8px 32px #4f46e522;
}

.gura-link-card:hover::before {
  opacity: 1;
}

.glc-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.glc-yt  { background: linear-gradient(135deg, #ff0000, #b30000); color: #fff; }
.glc-tw  { background: linear-gradient(135deg, #1d9bf0, #0a6eb0); color: #fff; }
.glc-dc  { background: linear-gradient(135deg, var(--discord), var(--discord-dk)); color: #fff; }

.glc-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.glc-info strong {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
}

.glc-info span {
  color: var(--white-dim);
  font-size: 0.78rem;
}

.glc-arrow {
  color: var(--white-dim);
  transition: color 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.gura-link-card:hover .glc-arrow {
  color: var(--cyan);
  transform: translateX(4px);
}

/* =====================
   DISCORD
   ===================== */
.discord-section {
  overflow: hidden;
}

.discord-bg-wave {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, #5865f218 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 50%, #4f46e50d 0%, transparent 70%);
  pointer-events: none;
}

.discord-content {
  display: flex;
  align-items: center;
  gap: 5rem;
}

/* Mock Discord card */
.discord-art { flex-shrink: 0; }

.discord-card-float {
  width: 275px;
  background: #2b2d31;
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  border: 1px solid #1e1f22;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-14px) rotate(1deg); }
}

.dc-card-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #ffffff10;
}

.dc-server-icon {
  width: 44px; height: 44px;
  background: #5865f2;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.dc-server-name {
  font-family: var(--font-pixel);
  font-weight: normal;
  font-size: 0.55rem;
  color: #f2f3f5;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

.dc-online {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  color: #949ba4;
}

.online-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #23d160;
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}

.online-dot.idle { background: #f5a623; }

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 #23d16044; }
  50%       { box-shadow: 0 0 0 4px #23d16018; }
}

.dc-channels { margin-bottom: 1rem; }

.dc-channel {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  font-size: 0.8rem;
  color: #949ba4;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.dc-channel span { font-size: 0.92rem; color: #ffffff44; }
.dc-channel:hover, .dc-channel.active { background: #35373c; color: #dbdee1; }

.dc-bell-icon { margin-left: auto; opacity: 0.7; }

.dc-members {
  border-top: 1px solid #3b3d43;
  padding-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.dc-member {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #b5bac1;
}

.dc-member span:last-child { margin-left: auto; }

.dc-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.78rem;
  color: #fff;
  flex-shrink: 0;
}

.av1 { background: linear-gradient(135deg, var(--cyan), #3730a3); }
.av2 { background: linear-gradient(135deg, #a855f7, #6366f1); }
.av3 { background: linear-gradient(135deg, #22d3ee, #0891b2); }

/* Discord text panel */
.discord-text { flex: 1; }

.discord-intro {
  color: var(--white-dim);
  font-size: 0.92rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.discord-features {
  list-style: none;
  margin: 1.2rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.discord-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white-dim);
  font-size: 0.95rem;
}

/* feat-icon: SVG */
.feat-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--cyan);
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: #f1f4fd;
  border-top: 1px solid var(--card-border);
  padding: 3rem 2rem 1.5rem;
  position: relative;
  z-index: 2;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Top row: logo + nav + socials */
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--card-border);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.footer-nav-link {
  color: var(--white-dim);
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 700;
  transition: color 0.2s;
}

.footer-nav-link:hover {
  color: var(--cyan);
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}

/* Bottom row: disclaimer + credit */
.footer-bottom {
  text-align: center;
}

.footer-desc {
  color: var(--white-dim);
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
}

.footer-credit { color: #94a3b8; font-size: 0.76rem; }

.footer-credit svg {
  vertical-align: middle;
  display: inline;
  color: var(--aqua);
}

/* =====================
   ACTIVE PAGE NAV
   ===================== */
.nav-link.active-page {
  color: var(--cyan);
}
.nav-link.active-page::after {
  width: 100%;
}

/* =====================
   QUICK NAV (home page)
   ===================== */
.quicknav-section {
  padding: 4rem 0 5rem;
}

.quicknav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.quicknav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 2rem 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  text-decoration: none;
  color: var(--white-dim);
  backdrop-filter: blur(12px);
  font-weight: 700;
  font-size: 1rem;
  transition: border-color 0.25s, box-shadow 0.25s, color 0.25s, transform 0.25s;
}

.quicknav-card svg {
  color: var(--cyan);
}

.quicknav-card:hover {
  border-color: #4f46e5;
  box-shadow: 0 8px 32px #4f46e522;
  color: var(--cyan);
  transform: translateY(-4px);
}

@media (max-width: 640px) {
  .quicknav-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =====================
   PAGE HERO (inner pages)
   ===================== */
.page-hero {
  padding: 7rem 0 3rem;
  text-align: center;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c7d2fe, transparent);
}

.page-hero-title {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin-top: 0.6rem;
}

.page-section-top {
  padding-top: 3rem;
}

.art-svg-padded {
  padding: 1rem;
}

@media (max-width: 960px) {
  .hero {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 6rem 5vw 4rem;
    gap: 3rem;
  }

  .hero-content { max-width: 100%; }
  .hero-buttons  { justify-content: center; }
  .hero-stats    { margin: 0 auto; }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-img { height: 320px; }

  .art-banner-inner {
    grid-template-columns: 1fr 1fr;
  }

  .art-banner-inner .art-panel:last-child {
    grid-column: 1 / -1;
    max-width: 340px;
    margin: 0 auto;
  }

  .gura-links-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .gura-links-text {
    text-align: center;
    align-items: center;
  }

  .discord-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 3rem;
  }

  .discord-text .section-tag {
    display: block;
    margin: 0 auto 1rem;
    width: fit-content;
  }

  .discord-features li { justify-content: center; text-align: left; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
  }

  .gallery-item.large {
    grid-column: 1 / -1;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(5,13,26,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 1px solid var(--card-border);
  }

  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }

  .nav-link {
    display: block;
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }

  .nav-link::after { display: none; }
  .nav-burger { display: flex; }

  .nav-social { display: none; }

  .event-card { flex-direction: column; }

  .event-date {
    flex-direction: row;
    gap: 0.5rem;
    width: auto;
    align-self: flex-start;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
  }

  .event-day   { font-size: 0.85rem; }
  .event-month { font-size: 0.56rem; margin-top: 0; }

  .hero-art-frame {
    width: 220px;
    height: 220px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item, .gallery-item.large {
    grid-column: auto;
    height: 220px;
  }
}

/* ── Events page full-page background ── */
.events-page-bg {
  min-height: calc(100vh - 64px);
  background:
    linear-gradient(to bottom,
      rgba(238,242,255,0.45) 0%,
      rgba(248,249,252,0.65) 60%,
      rgba(248,249,252,0.82) 100%),
    url('events_background.png') center top / cover no-repeat fixed;
  padding-top: 4rem;
}
.events-hero-title {
  font-family: 'Daydream', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #1e1b4b;
  margin: 0 0 0.5rem;
  letter-spacing: 1px;
  text-align: center;
}
.events-hero-sub {
  font-size: 1rem;
  color: #64748b;
  margin: 0 0 2.5rem;
  text-align: center;
}
