/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

:root {
  --bg-primary:   #09090f;
  --bg-secondary: #101019;
  --bg-card:      #14142a;
  --bg-card-hover:#1a1a34;

  --pink:     #e8a0bf;
  --teal:     #6dcac1;
  --purple:   #b899d4;
  --lavender: #c4b5f4;

  --text-primary: #ede8f5;
  --text-muted:   #7878a0;

  --border:       rgba(180, 160, 210, 0.14);
  --border-hover: rgba(180, 160, 210, 0.32);

  --nav-height: 4.5rem;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito', 'Segoe UI', sans-serif;
}

body {
  background-color: var(--bg-primary);
  background-image:
    radial-gradient(ellipse at 15% 40%, rgba(184, 153, 212, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(109, 202, 193, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 55% 85%, rgba(232, 160, 191, 0.05) 0%, transparent 55%);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

main,
.site-footer {
  position: relative;
  z-index: 1;
}

/* === CONTAINER === */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =====================
   HEADER / NAV
   ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 9, 15, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--nav-height);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-logo:hover .nav-logo-text,
.footer-logo:hover .nav-logo-text {
  transform: scale(1.08);
}

.nav-logo-text {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  transition: transform 0.3s ease;
  font-weight: 400;
  background: linear-gradient(135deg, var(--purple), var(--lavender), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGlow 4s ease-in-out infinite;
  display: inline-block;
  line-height: 1;
}

/* --- Hamburger Button --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: auto;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-toggle:hover { background: rgba(180, 160, 210, 0.1); }

.hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.nav-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--lavender);
}
.nav-toggle.active .hamburger-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--lavender);
}

/* --- Nav Links Wrapper --- */
.nav-links-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.15rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(180, 160, 210, 0.09);
}

.nav-link.active {
  color: var(--lavender);
  background: rgba(196, 181, 244, 0.1);
}

.nav-link--disabled {
  pointer-events: none;
  opacity: 0.45;
  cursor: default;
}

.nav-link--cta {
  color: var(--pink);
  border: 1.5px solid rgba(232, 160, 191, 0.3);
}
.nav-link--cta:hover {
  background: rgba(232, 160, 191, 0.1);
  border-color: rgba(232, 160, 191, 0.55);
  color: var(--pink);
}

.badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.15em 0.55em;
  border-radius: 50px;
  background: rgba(109, 202, 193, 0.12);
  color: var(--teal);
  border: 1px solid rgba(109, 202, 193, 0.28);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --- Animation Toggle Button --- */
.anim-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  width: 2rem;
  height: 1.75rem;
  line-height: 1;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.anim-toggle:hover { color: var(--text-primary); border-color: var(--border-hover); }

/* Pause all animations */
body.no-animations * {
  animation-play-state: paused !important;
}

/* --- Social Icons in Nav --- */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}

.social-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.social-icon:hover {
  color: var(--text-primary);
  background: rgba(180, 160, 210, 0.12);
}

.nav-socials .social-icon:nth-child(1) { animation: iconGlowPink   5s ease-in-out infinite; }
.nav-socials .social-icon:nth-child(2) { animation: iconGlowTeal   5s ease-in-out infinite; animation-delay: -1.25s; }
.nav-socials .social-icon:nth-child(3) { animation: iconGlowPurple 5s ease-in-out infinite; animation-delay: -2.5s; }
.nav-socials .social-icon:nth-child(4) { animation: iconGlowRed    5s ease-in-out infinite; animation-delay: -3.75s; }

@keyframes iconGlowPink {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(232, 160, 191, 0.4)); }
  50%       { filter: drop-shadow(0 0 8px rgba(232, 160, 191, 0.9)) drop-shadow(0 0 16px rgba(232, 160, 191, 0.5)); }
}
@keyframes iconGlowTeal {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(109, 202, 193, 0.4)); }
  50%       { filter: drop-shadow(0 0 8px rgba(109, 202, 193, 0.9)) drop-shadow(0 0 16px rgba(109, 202, 193, 0.5)); }
}
@keyframes iconGlowPurple {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(184, 153, 212, 0.4)); }
  50%       { filter: drop-shadow(0 0 8px rgba(184, 153, 212, 0.9)) drop-shadow(0 0 16px rgba(184, 153, 212, 0.5)); }
}
@keyframes iconGlowRed {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(255, 80, 80, 0.4)); }
  50%       { filter: drop-shadow(0 0 8px rgba(255, 80, 80, 0.9)) drop-shadow(0 0 16px rgba(255, 80, 80, 0.5)); }
}
@keyframes iconGlowLavender {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(196, 181, 244, 0.4)); }
  50%       { filter: drop-shadow(0 0 8px rgba(196, 181, 244, 0.9)) drop-shadow(0 0 16px rgba(196, 181, 244, 0.5)); }
}

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(184, 153, 212, 0.11) 0%, transparent 65%);
  pointer-events: none;
}

.sparkle {
  position: absolute;
  opacity: 0.7;
  pointer-events: none;
  user-select: none;
  animation: sparklePulse 3s ease-in-out infinite;
}

.sparkle-1  { top: 14%; left: 10%;    font-size: 0.85rem; color: var(--lavender); animation-delay: 0s; }
.sparkle-2  { top: 22%; right: 16%;   font-size: 1.2rem;  color: var(--pink);    animation-delay: 0.7s; }
.sparkle-3  { top: 60%; left: 7%;     font-size: 1.4rem;  color: var(--teal);    animation-delay: 1.5s; }
.sparkle-4  { bottom: 18%; right: 10%; font-size: 1rem;   color: var(--lavender); animation-delay: 0.3s; }
.sparkle-5  { bottom: 32%; left: 22%; font-size: 0.75rem; color: var(--pink);    animation-delay: 1.1s; }
.sparkle-6  { top: 45%; right: 7%;    font-size: 0.65rem; color: var(--teal);    animation-delay: 1.9s; }
.sparkle-7  { top: 8%;  right: 28%;   font-size: 0.9rem;  color: var(--pink);    animation-delay: 0.5s; }
.sparkle-8  { top: 38%; left: 32%;    font-size: 0.7rem;  color: var(--teal);    animation-delay: 2.2s; }
.sparkle-9  { top: 75%; right: 20%;   font-size: 1.1rem;  color: var(--lavender); animation-delay: 0.9s; }
.sparkle-10 { bottom: 10%; left: 14%; font-size: 0.8rem;  color: var(--pink);    animation-delay: 1.7s; }
.sparkle-11 { top: 52%; left: 48%;    font-size: 0.6rem;  color: var(--lavender); animation-delay: 2.6s; }
.sparkle-12 { top: 30%; left: 55%;    font-size: 1.0rem;  color: var(--teal);    animation-delay: 0.2s; }

.site-moon {
  position: fixed;
  top: 12%;
  right: 25%;
  width: 90px;
  height: 90px;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  animation: moonGlow 5s ease-in-out infinite;
}

@keyframes moonGlow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(196, 181, 244, 0.9)) drop-shadow(0 0 30px rgba(196, 181, 244, 0.5)); }
  50%       { filter: drop-shadow(0 0 20px rgba(232, 160, 191, 0.85)) drop-shadow(0 0 50px rgba(196, 181, 244, 0.6)); }
}

@keyframes sparklePulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.35); }
}

/* =====================
   CLOUDS — fixed site-wide layer
   ===================== */
.site-clouds {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.cloud {
  position: absolute;
  will-change: transform;
  animation: cloudDrift linear infinite;
}

.cloud svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Cloud 1 — large, slow */
.cloud-1 {
  width: 380px; height: 130px;
  top: 5%;
  opacity: 0.55;
  animation-duration: 170s;
  animation-delay: -22s;
}

/* Cloud 2 — medium */
.cloud-2 {
  width: 260px; height: 100px;
  top: 22%;
  opacity: 0.48;
  animation-duration: 125s;
  animation-delay: -60s;
}

/* Cloud 3 — small */
.cloud-3 {
  width: 190px; height: 85px;
  top: 40%;
  opacity: 0.42;
  animation-duration: 88s;
  animation-delay: -12s;
}

/* Cloud 4 — large, very slow */
.cloud-4 {
  width: 430px; height: 148px;
  top: 56%;
  opacity: 0.46;
  animation-duration: 210s;
  animation-delay: -105s;
}

/* Cloud 5 — medium */
.cloud-5 {
  width: 300px; height: 115px;
  top: 70%;
  opacity: 0.4;
  animation-duration: 115s;
  animation-delay: -48s;
}

/* Cloud 6 — small */
.cloud-6 {
  width: 170px; height: 76px;
  top: 84%;
  opacity: 0.34;
  animation-duration: 76s;
  animation-delay: -35s;
}

@keyframes cloudDrift {
  from { transform: translateX(110vw); }
  to   { transform: translateX(calc(-100% - 40px)); }
}

@media (max-width: 600px) {
  .cloud-1, .cloud-4 { width: 260px; height: 90px; }
  .cloud-2, .cloud-5 { width: 190px; height: 73px; }
  .cloud-3, .cloud-6 { width: 145px; height: 65px; }
}

/* Reduce cloud motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .cloud   { animation: none; }
  .sparkle { animation: none; opacity: 0.3; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-pre {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--teal);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(3.5rem, 12vw, 7rem);
  font-weight: 400;
  background: linear-gradient(135deg, var(--purple), var(--lavender), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: logoFloat 6s ease-in-out infinite, textGlow 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}


@keyframes logoGlow {
  0%, 100% {
    filter:
      drop-shadow(0 0 18px rgba(232, 160, 191, 0.7))
      drop-shadow(0 0 40px rgba(196, 181, 244, 0.35));
  }
  50% {
    filter:
      drop-shadow(0 0 22px rgba(109, 202, 193, 0.7))
      drop-shadow(0 0 50px rgba(184, 153, 212, 0.4));
  }
}

.hero-tagline {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 0;
  letter-spacing: 0.015em;
}

.hero-tagline .font-cute {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  font-size: 1.4em;
}
.hero-tagline .font-scary {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  font-size: 1.55em;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2.1rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  transition: transform 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #0c0a14;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232, 160, 191, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(109, 202, 193, 0.15);
}

/* =====================
   SHARED SECTION STYLES
   ===================== */
section { padding: 6rem 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.accent-text {
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accent-text-teal {
  background: linear-gradient(135deg, var(--teal), var(--lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =====================
   ART STYLES SECTION
   ===================== */
.styles-section { background: rgba(0, 0, 0, 0.18); }

.styles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.style-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 0;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.style-card__img {
  width: 100%;
  display: block;
  border-radius: 1.5rem 1.5rem 0 0;
  animation: cardImgSway 14s ease-in-out infinite, cardImgGlow 14s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes cardImgSway {
  0%, 100% { transform: rotate(-7.5deg); }
  50%       { transform: rotate(7.5deg); }
}

@keyframes cardImgGlow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(196, 181, 244, 0.8)) drop-shadow(0 0 28px rgba(196, 181, 244, 0.4)); }
  50%       { filter: drop-shadow(0 0 14px rgba(232, 160, 191, 0.8)) drop-shadow(0 0 38px rgba(109, 202, 193, 0.4)); }
}

.style-card__body {
  padding: 2rem 2.25rem 2.25rem;
}

.style-card--light .style-card__img { animation-delay: -3s, -3s; }
.style-card--dark  .style-card__img { animation-delay: -9s, -9s; }

.style-card:hover { transform: translateY(-7px); }

.style-card--light {
  border: 3px solid var(--pink);
  animation: cardGlowPink 5s ease-in-out infinite;
}
.style-card--light:hover { border-color: var(--pink); }

.style-card--dark {
  border: 3px solid var(--purple);
  animation: cardGlowPurple 5s ease-in-out infinite;
  animation-delay: -2.5s;
}
.style-card--dark:hover { border-color: var(--purple); }

@keyframes cardGlowPink {
  0%, 100% { box-shadow: 0 0 10px rgba(232, 160, 191, 0.4), 0 0 28px rgba(232, 160, 191, 0.2); }
  50%       { box-shadow: 0 0 18px rgba(232, 160, 191, 0.7), 0 0 45px rgba(232, 160, 191, 0.35); }
}

@keyframes cardGlowPurple {
  0%, 100% { box-shadow: 0 0 10px rgba(196, 181, 244, 0.4), 0 0 28px rgba(196, 181, 244, 0.2); }
  50%       { box-shadow: 0 0 18px rgba(196, 181, 244, 0.7), 0 0 45px rgba(196, 181, 244, 0.35); }
}

.style-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.style-card h3 {
  font-size: 1.9rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  text-align: center;
}

.style-card--light h3 { font-family: 'Fredoka One', cursive; }
.style-card--dark  h3 { font-family: 'Creepster', cursive; }

.style-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* =====================
   SOCIALS SECTION
   ===================== */
.socials-groups {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.social-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.social-group__label {
  font-family: var(--font-cute);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.socials-grid {
  display: flex;
  gap: 1.5rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  min-width: 160px;
}

.social-card:hover {
  transform: translateY(-7px);
  border-color: var(--border-hover);
}

.social-group--media .social-card:nth-child(1)   { animation: socialGlowPink     5s ease-in-out infinite; }
.social-group--media .social-card:nth-child(2)   { animation: socialGlowTeal     5s ease-in-out infinite; animation-delay: -2.5s; }
.social-group--streams .social-card:nth-child(1) { animation: socialGlowPurple   5s ease-in-out infinite; animation-delay: -1s; }
.social-group--streams .social-card:nth-child(2) { animation: socialGlowRed      5s ease-in-out infinite; animation-delay: -3.5s; }
.social-group--code .social-card:nth-child(1)    { animation: socialGlowLavender 5s ease-in-out infinite; animation-delay: -4s; }

@keyframes socialGlowPink {
  0%, 100% { box-shadow: 0 0 8px rgba(232, 160, 191, 0.3), 0 0 22px rgba(232, 160, 191, 0.15); }
  50%       { box-shadow: 0 0 14px rgba(232, 160, 191, 0.6), 0 0 38px rgba(232, 160, 191, 0.3); }
}
@keyframes socialGlowTeal {
  0%, 100% { box-shadow: 0 0 8px rgba(109, 202, 193, 0.3), 0 0 22px rgba(109, 202, 193, 0.15); }
  50%       { box-shadow: 0 0 14px rgba(109, 202, 193, 0.6), 0 0 38px rgba(109, 202, 193, 0.3); }
}
@keyframes socialGlowPurple {
  0%, 100% { box-shadow: 0 0 8px rgba(184, 153, 212, 0.3), 0 0 22px rgba(184, 153, 212, 0.15); }
  50%       { box-shadow: 0 0 14px rgba(184, 153, 212, 0.6), 0 0 38px rgba(184, 153, 212, 0.3); }
}
@keyframes socialGlowRed {
  0%, 100% { box-shadow: 0 0 8px rgba(255, 80, 80, 0.3), 0 0 22px rgba(255, 80, 80, 0.15); }
  50%       { box-shadow: 0 0 14px rgba(255, 80, 80, 0.6), 0 0 38px rgba(255, 80, 80, 0.3); }
}
@keyframes socialGlowLavender {
  0%, 100% { box-shadow: 0 0 8px rgba(196, 181, 244, 0.3), 0 0 22px rgba(196, 181, 244, 0.15); }
  50%       { box-shadow: 0 0 14px rgba(196, 181, 244, 0.6), 0 0 38px rgba(196, 181, 244, 0.3); }
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(196, 181, 244, 0.3), 0 0 30px rgba(196, 181, 244, 0.15); }
  50%       { box-shadow: 0 0 18px rgba(232, 160, 191, 0.5), 0 0 50px rgba(196, 181, 244, 0.25); }
}

.social-card__icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.3s;
}

.social-card__icon svg { width: 1.9rem; height: 1.9rem; }

.social-group--media .social-card:nth-child(1):hover .social-card__icon   { color: var(--pink); }
.social-group--media .social-card:nth-child(2):hover .social-card__icon   { color: var(--teal); }
.social-group--streams .social-card:nth-child(1):hover .social-card__icon { color: var(--purple); }
.social-group--streams .social-card:nth-child(2):hover .social-card__icon { color: #ff5050; }
.social-group--code .social-card:nth-child(1):hover .social-card__icon    { color: var(--lavender); }

.social-group--media .social-card:nth-child(1) .social-card__icon   { animation: iconGlowPink     5s ease-in-out infinite; }
.social-group--media .social-card:nth-child(2) .social-card__icon   { animation: iconGlowTeal     5s ease-in-out infinite; animation-delay: -2.5s; }
.social-group--streams .social-card:nth-child(1) .social-card__icon { animation: iconGlowPurple   5s ease-in-out infinite; animation-delay: -1s; }
.social-group--streams .social-card:nth-child(2) .social-card__icon { animation: iconGlowRed      5s ease-in-out infinite; animation-delay: -3.5s; }
.social-group--code .social-card:nth-child(1) .social-card__icon    { animation: iconGlowLavender 5s ease-in-out infinite; animation-delay: -4s; }

.social-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
}

.social-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =====================
   COMMISSIONS CTA SECTION
   ===================== */
.cta-section { padding: 3rem 0 7rem; }

.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2rem;
  animation: ctaGlow 5s ease-in-out infinite;
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184, 153, 212, 0.09) 0%, transparent 60%);
  pointer-events: none;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--text-primary);
}

.cta-box p {
  color: var(--text-muted);
  max-width: 460px;
  font-size: 0.98rem;
}

.cta-sparkle {
  font-size: 1.1rem;
  color: var(--lavender);
  opacity: 0.55;
  animation: sparklePulse 2.8s ease-in-out infinite;
  user-select: none;
}

/* =====================
   FOOTER
   ===================== */
.back-to-top-wrap {
  text-align: center;
  padding: 1.5rem 0 0;
}

.back-to-top {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}

.back-to-top:hover { color: var(--pink); }

.site-footer {
  background: rgba(0, 0, 0, 0.28);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-logo img {
  height: 44px;
  width: auto;
  display: block;
  opacity: 0.85;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 1.5rem;
  justify-content: center;
}

.footer-links a {
  font-size: 0.84rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-primary); }

.footer-socials {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-social-icon:hover { color: var(--text-primary); }
.footer-social-icon svg { width: 1.1rem; height: 1.1rem; }

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.5;
}

/* =====================
   ABOUT PAGE STYLES
   ===================== */
.page-hero {
  padding: 7rem 0 4rem;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(184, 153, 212, 0.09) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 400;
  background: linear-gradient(135deg, var(--purple), var(--lavender), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  animation: logoFloat 6s ease-in-out infinite, textGlow 4s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(232, 160, 191, 0.6)) drop-shadow(0 0 28px rgba(196, 181, 244, 0.3)); }
  50%       { filter: drop-shadow(0 0 16px rgba(109, 202, 193, 0.6)) drop-shadow(0 0 36px rgba(184, 153, 212, 0.4)); }
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  position: relative;
}

.about-content {
  padding: 3rem 0 7rem;
  background: rgba(9, 9, 15, 0.5);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 320px);
  gap: 4rem;
  align-items: start;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.3rem;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--text-primary); }

.about-text h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 2rem 0 1rem;
}
.about-text h2:first-child { margin-top: 0; }

.font-cute {
  font-family: 'Fredoka One', cursive;
  font-size: 1.05em;
  color: var(--pink);
  letter-spacing: 0.02em;
}

.font-scary {
  font-family: 'Creepster', cursive;
  font-size: 1.2em;
  color: var(--purple);
  letter-spacing: 0.05em;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.6rem 1.5rem;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lavender);
  margin-bottom: 0.8rem;
}

.info-card p,
.info-card li {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.info-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
.info-card li::before { content: '✦  '; color: var(--pink); font-size: 0.6rem; }

.info-card li ul {
  margin-top: 0.3rem;
  padding-left: 1.25rem;
}

.info-card li ul li::before { content: '–  '; color: var(--text-muted); font-size: 0.75rem; }

.info-card a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: rgba(109, 202, 193, 0.35);
  transition: text-decoration-color 0.2s;
}
.info-card a:hover { text-decoration-color: var(--teal); }

/* =====================
   CONTACT PAGE
   ===================== */
.contact-section {
  padding: 3rem 0 7rem;
  background: rgba(9, 9, 15, 0.5);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}

/* --- Form wrap --- */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-input {
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: 0.75rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.7rem 1rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form-input::placeholder { color: var(--text-muted); opacity: 0.6; }

.form-input:focus { border-color: var(--teal); }

.form-textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.6;
}

/* --- Success state --- */
.form-success[hidden] { display: none; }

.form-success {
  text-align: center;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.form-success__icon {
  font-size: 2rem;
  color: var(--teal);
  animation: sparklePulse 2.5s ease-in-out infinite;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-success p { color: var(--text-muted); }

/* --- Error message --- */
.form-error[hidden] { display: none; }

.form-error {
  font-size: 0.85rem;
  color: var(--pink);
  margin-top: -0.5rem;
}

/* --- Sidebar --- */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
}

.contact-email {
  margin-top: 0.5rem;
}

.contact-email a {
  color: var(--teal);
  word-break: break-all;
  text-decoration: underline;
  text-decoration-color: rgba(109, 202, 193, 0.35);
  transition: text-decoration-color 0.2s;
}

.contact-email a:hover { text-decoration-color: var(--teal); }

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    position: static;
    order: -1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* =====================
   GALLERY
   ===================== */
.gallery-section {
  padding: 2rem 0 7rem;
  background: rgba(9, 9, 15, 0.5);
}

/* --- Filter bar --- */
.gallery-filters {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cat-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.cat-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
}

.cat-btn.active {
  background: rgba(196, 181, 244, 0.12);
  border-color: var(--lavender);
  color: var(--lavender);
}

/* --- Tag search --- */
.search-wrap {
  position: relative;
  margin-left: auto;
}

.search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.9rem;
  height: 0.9rem;
  color: var(--text-muted);
  pointer-events: none;
}

.tag-search {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.5rem 1rem 0.5rem 2.4rem;
  width: 220px;
  transition: border-color 0.2s, width 0.3s;
  outline: none;
}

.tag-search::placeholder { color: var(--text-muted); }

.tag-search:focus {
  border-color: var(--teal);
  width: 280px;
}

/* Hide the default clear button on search inputs */
.tag-search::-webkit-search-cancel-button { display: none; }

/* --- Count --- */
.gallery-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  min-height: 1.2em;
}

/* --- Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

/* --- Gallery item --- */
.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* --- Content warning overlay (gallery grid) --- */
.gallery-item--warned img {
  filter: blur(14px);
  transform: scale(1.08);
}

.gallery-warning {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1rem;
  text-align: center;
  background: rgba(12, 8, 22, 0.55);
  cursor: default;
}

.gallery-warning__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}

.gallery-warning__text {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.gallery-warning__btn {
  margin-top: 0.3rem;
  font-size: 0.7rem;
  color: var(--lavender);
  border: 1px solid rgba(196, 181, 244, 0.35);
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s;
}

.gallery-warning__btn:hover {
  background: rgba(196, 181, 244, 0.12);
}

/* --- Content warning overlay (lightbox) --- */
.lightbox__warning {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
  background: rgba(12, 8, 22, 0.65);
  border-radius: 1rem;
}

.lightbox__warning-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}

.lightbox__warning-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
}

.lightbox__warning-btn {
  font-size: 0.85rem;
  color: var(--lavender);
  border: 1px solid rgba(196, 181, 244, 0.4);
  border-radius: 999px;
  padding: 0.4rem 1.4rem;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox__warning-btn:hover {
  background: rgba(196, 181, 244, 0.12);
}


/* --- Hover overlay --- */
/* Video play button */
.gallery-item__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 20px rgba(0,0,0,0.8);
  z-index: 2;
  pointer-events: none;
  transition: transform 0.2s;
}
.gallery-item--video:hover .gallery-item__play { transform: scale(1.15); }

/* Lightbox video iframe */
.lightbox__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 0.5rem;
  max-height: 75vh;
}
.lightbox__video--portrait {
  aspect-ratio: 9 / 16;
  width: auto;
  height: 75vh;
  max-width: 100%;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 15, 0.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.gallery-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.tag-chip {
  display: inline-block;
  padding: 0.2em 0.65em;
  border-radius: 50px;
  background: rgba(196, 181, 244, 0.18);
  border: 1px solid rgba(196, 181, 244, 0.3);
  color: var(--lavender);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.tag-chip:hover {
  background: rgba(196, 181, 244, 0.32);
  border-color: var(--lavender);
}

/* --- Two-column layout --- */
.gallery-layout[hidden] { display: none; }
.gallery-layout {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 2rem;
  align-items: start;
}

.gallery-main {
  min-width: 0;
}

/* --- Tag cloud sidebar --- */
.tag-cloud-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.5rem;
}

.tag-cloud-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lavender);
  margin-bottom: 1rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag-cloud-chip {
  display: inline-block;
  padding: 0.2em 0.7em;
  border-radius: 50px;
  border: 1px solid rgba(196, 181, 244, 0.2);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
  line-height: 1.6;
}

.tag-cloud-chip:hover {
  color: var(--lavender);
  border-color: rgba(196, 181, 244, 0.45);
  background: rgba(196, 181, 244, 0.08);
}

.tag-cloud-chip.active {
  color: var(--lavender);
  border-color: var(--lavender);
  background: rgba(196, 181, 244, 0.12);
}

.tag-cloud-chip--clear {
  color: var(--pink);
  border-color: rgba(232, 160, 191, 0.4);
  font-size: 0.78rem;
}
.tag-cloud-chip--clear:hover {
  background: rgba(232, 160, 191, 0.1);
  border-color: var(--pink);
}

/* --- Empty state --- */
.gallery-empty {
  text-align: center;
  padding: 2rem 0;
  color: var(--text-muted);
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.gallery-empty[hidden] { display: none; }

.gallery-empty span {
  font-size: 2rem;
  color: var(--lavender);
  opacity: 0.4;
}

/* =====================
   LIGHTBOX
   ===================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(5, 5, 10, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: min(90vw, 900px);
  max-height: 90vh;
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.lightbox.open .lightbox__inner {
  transform: scale(1);
}

.lightbox__img-wrap {
  position: relative;
  display: inline-flex;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
}


.lightbox__img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  display: block;
}

.lightbox__meta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.lightbox__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
}

.lightbox__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
}

/* Close button */
.lightbox__close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(180, 160, 210, 0.12);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 201;
  line-height: 1;
}

.lightbox__close:hover {
  background: rgba(180, 160, 210, 0.25);
  color: var(--text-primary);
}

/* Prev / Next arrows */
.lightbox__prev,
.lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(180, 160, 210, 0.12);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 201;
}

.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(180, 160, 210, 0.25);
  color: var(--text-primary);
}

.lightbox__prev:disabled,
.lightbox__next:disabled {
  opacity: 0.2;
  cursor: default;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links-wrapper {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(9, 9, 15, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.5rem 1.5rem;
    z-index: 99;
  }

  .nav-links-wrapper.open { display: flex; }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .nav-link {
    padding: 0.8rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.95rem;
  }

  .nav-socials {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-top: 0.5rem;
    justify-content: center;
    gap: 1rem;
  }

  .nav-socials .social-icon { width: 2.5rem; height: 2.5rem; }
  .nav-socials .social-icon svg { width: 1.3rem; height: 1.3rem; }

  .hero { padding: 3.5rem 1.5rem; min-height: calc(85vh - var(--nav-height)); }

  .sparkle-3, .sparkle-5, .sparkle-6 { display: none; }

  section { padding: 4rem 0; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cta-box { padding: 3rem 1.5rem; }
}

@media (max-width: 780px) {
  .socials-groups { gap: 2rem; }
}

@media (max-width: 480px) {
  .styles-grid { grid-template-columns: 1fr; }
  .socials-groups { flex-direction: column; align-items: center; }

  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .tag-cloud-sidebar {
    position: static;
    order: -1;
  }

  .hero-cta { flex-direction: column; align-items: center; }

  .btn { width: 100%; max-width: 290px; }
}
