/* Global Reset & Dark Mode Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: #f3f3f8;
  background: radial-gradient(circle at 18% 18%, rgba(255, 213, 122, 0.06), transparent 38%),
              radial-gradient(circle at 78% 12%, rgba(115, 205, 255, 0.08), transparent 35%),
              radial-gradient(circle at 30% 80%, rgba(255, 143, 177, 0.05), transparent 42%),
              #0c0f1a;
  scroll-behavior: smooth;
  min-height: 100vh;
}

/* Header & Navigation - Improved Design */
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10, 12, 20, 0.8);
  backdrop-filter: blur(14px);
  padding: 20px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand h1 {
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.brand-mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(120deg, #7b7bff, #8ee1ff, #ff8fb1);
  box-shadow: 0 0 12px rgba(132, 162, 255, 0.5);
}

header nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

header nav a {
  color: #dfe3f5;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

header nav a:hover,
header nav a:focus-visible {
  color: #0b0f19;
  background: #9ef5ff;
}

.cta-link {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(120deg, rgba(158, 245, 255, 0.2), rgba(255, 143, 177, 0.2));
}

/* Main Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 120px;
  position: relative;
  z-index: 1;
}

/* Section Styles */
section {
  margin-bottom: 80px;
}

.section-panel {
  position: relative;
  border-radius: 20px;
  padding: 38px 26px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.section-panel::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 16px;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.panel-aurora {
  background: radial-gradient(circle at 18% 18%, rgba(126, 222, 255, 0.16), transparent 35%),
              radial-gradient(circle at 82% 8%, rgba(255, 143, 177, 0.18), transparent 30%),
              linear-gradient(135deg, rgba(18, 25, 42, 0.9), rgba(12, 14, 24, 0.95));
}

.panel-candy {
  background: radial-gradient(circle at 12% 70%, rgba(255, 195, 113, 0.15), transparent 30%),
              radial-gradient(circle at 86% 24%, rgba(120, 193, 255, 0.16), transparent 32%),
              linear-gradient(135deg, rgba(20, 16, 32, 0.94), rgba(18, 14, 28, 0.9));
}

.panel-nebula {
  background: radial-gradient(circle at 20% 30%, rgba(117, 70, 255, 0.18), transparent 30%),
              radial-gradient(circle at 80% 70%, rgba(79, 201, 255, 0.12), transparent 35%),
              linear-gradient(130deg, rgba(12, 14, 24, 0.95), rgba(9, 11, 20, 0.92));
}

.panel-midnight {
  background: radial-gradient(circle at 20% 40%, rgba(255, 115, 170, 0.16), transparent 32%),
              radial-gradient(circle at 82% 12%, rgba(136, 255, 212, 0.12), transparent 34%),
              linear-gradient(145deg, rgba(12, 18, 34, 0.95), rgba(11, 12, 22, 0.9));
}

.panel-lilac {
  background: radial-gradient(circle at 70% 20%, rgba(158, 245, 255, 0.12), transparent 40%),
              radial-gradient(circle at 22% 60%, rgba(193, 160, 255, 0.16), transparent 42%),
              linear-gradient(140deg, rgba(16, 14, 32, 0.92), rgba(12, 16, 26, 0.92));
}

.panel-ember {
  background: radial-gradient(circle at 25% 30%, rgba(255, 179, 71, 0.16), transparent 32%),
              radial-gradient(circle at 78% 74%, rgba(255, 99, 146, 0.15), transparent 38%),
              linear-gradient(150deg, rgba(18, 16, 30, 0.94), rgba(14, 12, 24, 0.9));
}

h2 {
  text-align: left;
  margin-bottom: 16px;
  font-size: 2.2rem;
  letter-spacing: -0.5px;
}

p {
  max-width: 900px;
  margin: 0 0 20px;
  text-align: left;
  font-size: 1.05rem;
  color: #c7cbdf;
}

.section-panel > p,
.section-panel > .section-lead,
.section-header p {
  max-width: 780px;
}

.section-lead {
  margin-top: -4px;
  margin-bottom: 30px;
  color: #aeb4cd;
}

.photo-hero h2,
.photo-hero p,
.photo-hero .section-lead {
  text-align: left;
  margin-left: 0;
}

.photo-quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 14px;
}

.gallery-intro p {
  margin-left: 0;
  text-align: left;
  color: #dfe3f5;
}

.gallery-lead {
  max-width: 720px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hero-card {
  display: grid;
  gap: 14px;
}

.hero-title {
  font-size: 2.6rem;
  margin-bottom: 12px;
  text-align: left;
}

.hero-copy {
  text-align: left;
  color: #cfd5ee;
  margin-bottom: 20px;
}

.eyebrow {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(158, 245, 255, 0.12);
  color: #9ef5ff;
  border: 1px solid rgba(158, 245, 255, 0.3);
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 18px 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
  font-size: 0.95rem;
}

.button.primary {
  background: linear-gradient(120deg, #7b7bff, #9ef5ff);
  color: #0b0f19;
  box-shadow: 0 12px 30px rgba(140, 170, 255, 0.4);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #e8ecff;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.stat-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.stat-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
}

.stat-label {
  color: #aeb4cd;
  font-size: 0.9rem;
}

.hero-card {
  height: 100%;
  display: grid;
  gap: 14px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.hero-placeholder {
  position: relative;
  border-radius: 16px;
  min-height: 160px;
  padding: 18px;
  background: conic-gradient(from 120deg, rgba(158, 245, 255, 0.28), rgba(255, 143, 177, 0.35), rgba(123, 123, 255, 0.3), rgba(158, 245, 255, 0.28));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 16px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.hero-placeholder::before,
.hero-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 40%);
  mix-blend-mode: screen;
}

.hero-placeholder::after {
  background: radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.25), transparent 45%);
  mix-blend-mode: soft-light;
}

.placeholder-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(12, 15, 26, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #f7f8ff;
}

.accent-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8fb1, #9ef5ff);
  box-shadow: 0 0 10px rgba(255, 143, 177, 0.7);
}

.placeholder-copy {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  text-align: left;
  color: #f0f3ff;
  max-width: 420px;
}

.card-heading {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9ef5ff;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.glass-card ul {
  list-style: disc;
  padding-left: 18px;
  color: #c7cbdf;
  line-height: 1.8;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.section-header {
  text-align: left;
  margin-bottom: 32px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.about-layout p {
  text-align: left;
}

.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.link-chip {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #e8ecff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.link-chip:hover,
.link-chip:focus-visible {
  background: rgba(158, 245, 255, 0.15);
  color: #0b0f19;
}

.focus {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 32px 24px 12px;
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.35);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.focus-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.focus-card::before {
  content: "";
  position: absolute;
  inset: -40% 60% 55% -30%;
  background: radial-gradient(circle, rgba(158, 245, 255, 0.3), transparent 55%);
  opacity: 0.8;
}

.focus-label {
  font-size: 0.85rem;
  letter-spacing: 0.6px;
  color: #9ef5ff;
  margin-bottom: 6px;
}

.focus-card h3 {
  margin-bottom: 8px;
}

.focus-copy {
  text-align: left;
  color: #c7cbdf;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.game-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.game-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
  border-color: rgba(158, 245, 255, 0.5);
}

.game-item img {
  width: 100%;
  display: block;
  border-radius: 18px 18px 0 0;
}

.game-meta {
  padding: 16px;
}

.game-meta h3 {
  margin: 8px 0 6px;
}

.game-meta p {
  margin: 0;
  text-align: left;
  color: #c7cbdf;
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(158, 245, 255, 0.18);
  color: #9ef5ff;
  font-size: 0.85rem;
  border: 1px solid rgba(158, 245, 255, 0.4);
}

/* 3D Models Grid */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.model-item {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sketchfab-embed-wrapper {
  position: relative;
  width: 100%;
  padding-top: 150%; /* Maintains aspect ratio */
  overflow: hidden;
  border-radius: 10px;
}

.sketchfab-embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Photography */
.photography {
  position: relative;
  background: radial-gradient(circle at 68% 18%, rgba(158, 245, 255, 0.14), transparent 35%),
              radial-gradient(circle at 18% 45%, rgba(255, 143, 177, 0.15), transparent 42%),
              linear-gradient(145deg, rgba(20, 18, 34, 0.95), rgba(10, 12, 20, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 38px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.photography::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(79, 201, 255, 0.08), rgba(255, 143, 177, 0.08));
  mix-blend-mode: screen;
  pointer-events: none;
}

.photo-viewer {
  display: grid;
  gap: 18px;
}

.photo-stage {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: radial-gradient(circle at 18% 20%, rgba(158, 245, 255, 0.08), transparent 36%),
              radial-gradient(circle at 80% 70%, rgba(255, 143, 177, 0.08), transparent 44%),
              linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  padding: 12px;
  display: grid;
  gap: 10px;
}

.photo-frame {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 14px;
  background: radial-gradient(circle at 20% 20%, rgba(158,245,255,0.18), rgba(12,14,24,0.9));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 22px 40px rgba(0,0,0,0.35);
}

.photo-meta {
  width: 100%;
  padding: 6px 10px 12px;
  background: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.photo-caption {
  margin: 0;
  text-align: left;
  color: #f7f8ff;
}

.photo-award {
  font-size: 0.9rem;
  color: #9ef5ff;
  background: rgba(158, 245, 255, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(158, 245, 255, 0.3);
}

.photo-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 10px;
  overflow-x: auto;
}

.thumb {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  transition: border 0.2s ease, transform 0.2s ease;
}

.thumb-swatch {
  display: block;
  width: 100%;
  height: 80px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.thumb-swatch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.25) 100%);
}

.thumb:hover,
.thumb:focus-visible {
  border-color: rgba(158, 245, 255, 0.8);
  transform: translateY(-2px);
}

.thumb.active {
  border: 1px solid rgba(255, 143, 177, 0.8);
  box-shadow: 0 10px 30px rgba(255, 143, 177, 0.3);
}

.pill {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #e8ecff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pill:hover,
.pill:focus-visible {
  background: linear-gradient(120deg, #7b7bff, #9ef5ff);
  color: #0b0f19;
}

/* Plugins */
.plugins {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 38px 24px;
  background: linear-gradient(160deg, rgba(14, 17, 28, 0.9), rgba(14, 17, 28, 0.8)),
              radial-gradient(circle at 30% 0%, rgba(158, 245, 255, 0.14), transparent 35%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.plugin-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: stretch;
}

.plugin-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.plugin-meta h3 {
  margin: 8px 0;
}

.plugin-copy {
  text-align: left;
}

.plugin-video iframe {
  width: 100%;
  min-height: 260px;
  border-radius: 14px;
  border: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.plugin-links {
  display: grid;
  gap: 12px;
}

.link-card {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.link-card h4 {
  margin-bottom: 6px;
}

.mini {
  text-align: left;
  font-size: 0.95rem;
  color: #c7cbdf;
}

/* Contact */
.contact-card {
  background: linear-gradient(135deg, rgba(123, 123, 255, 0.2), rgba(255, 143, 177, 0.18));
  border-radius: 22px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.contact-card h2 {
  margin-bottom: 10px;
}

.contact-card p {
  color: #dfe3f5;
}

.contact-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  font-size: 0.9rem;
  color: #8f95ad;
}

/* Scroll To Top Button */
#scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #7b7bff, #9ef5ff);
  color: #0b0f19;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}

#scrollToTop.show {
  opacity: 1;
  visibility: visible;
}

/* Blob Cursor Effect */
:root {
  --blob-color: linear-gradient(to right, aquamarine, mediumpurple);
  --blob-size: 400px;
}

#blob {
  animation: rotate360 20s infinite;
  background: var(--blob-color);
  filter: blur(calc(var(--blob-size) / 2.15));
  width: var(--blob-size);
  height: var(--blob-size);
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1; /* Place behind content */
  transition: left 0.1s ease, top 0.1s ease;
  will-change: left, top;
}

@keyframes rotate360 {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  50% { transform: translate(-50%, -50%) scale(1, 1.15); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

#blob-blur {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -2; /* Even further back */
  backdrop-filter: blur(10px);
  pointer-events: none;
}

/* Timelapse Link Styling for New Model */
.model-timelapse {
  text-align: center;
  margin-top: 10px;
}

.model-timelapse a {
  text-decoration: none;
  color: #9ef5ff;
  font-weight: 600;
  font-size: 1.2rem;
  border: 2px solid rgba(158, 245, 255, 0.5);
  padding: 8px 16px;
  border-radius: 5px;
  transition: background 0.3s ease, color 0.3s ease;
}

.model-timelapse a:hover {
  background: rgba(158, 245, 255, 0.2);
  color: #0b0f19;
}
.gallery-grid {
  column-count: 3;
  column-gap: 18px;
  margin-top: 28px;
}

.gallery-item {
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.45);
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
  border-color: rgba(158, 245, 255, 0.4);
}

.gallery-item a {
  display: block;
}

.gallery-item img {
  width: 100%;
  display: block;
  height: auto;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 20%, rgba(158,245,255,0.15), rgba(12,14,24,0.8));
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 10px 10px 10px;
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(12, 15, 26, 0.25), rgba(12, 15, 26, 0.8));
  border-radius: 10px;
  color: #f3f7ff;
  font-size: 0.95rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-item[data-frame="portrait"] {
  border-color: rgba(158, 245, 255, 0.25);
  box-shadow: 0 10px 24px rgba(123, 123, 255, 0.25);
}

.gallery-item[data-frame="landscape"] {
  border-color: rgba(255, 143, 177, 0.25);
  box-shadow: 0 10px 24px rgba(255, 143, 177, 0.22);
}

.gallery-item[data-frame="square"] {
  border-color: rgba(158, 245, 255, 0.18);
}

@media (max-width: 1024px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    column-count: 1;
  }
}

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

  header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

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

  header nav {
    flex-wrap: wrap;
    gap: 10px;
  }

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

  .photo-controls {
    grid-template-columns: 1fr;
  }

  .photo-strip {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}
