/* ============================================
   MOBA LENS ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Deep Ocean Design System
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Deep Ocean Palette */
  --bg-primary: #0a0e17;
  --bg-secondary: #0d1b2a;
  --bg-card: #111827;
  --bg-card-hover: #152238;
  --accent-primary: #00d4ff;
  --accent-secondary: #0077b6;
  --accent-tertiary: #00b4d8;
  --accent-glow: rgba(0, 212, 255, 0.25);
  --accent-glow-strong: rgba(0, 212, 255, 0.45);
  --text-primary: #e8f4f8;
  --text-secondary: #7b9aad;
  --text-muted: #4a6577;
  --border-subtle: rgba(0, 212, 255, 0.1);
  --border-hover: rgba(0, 212, 255, 0.35);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1320px;
  --container-padding: 0 40px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-base: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-snap: 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

::selection {
  background: var(--accent-primary);
  color: var(--bg-primary);
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-secondary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}

/* --- Container --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* --- Section Base --- */
.section {
  padding: var(--section-padding);
  position: relative;
}

/* --- Section Titles --- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--accent-primary);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.section-title .highlight {
  color: var(--accent-primary);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  padding: 16px 40px;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
  z-index: 1001;
}

.navbar-logo span {
  color: var(--accent-primary);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width var(--transition-base);
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--text-primary);
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-social a {
  color: var(--text-secondary);
  transition:
    color var(--transition-fast),
    transform var(--transition-fast);
}

.navbar-social a:hover {
  color: var(--accent-primary);
  transform: scale(1.15);
}

.navbar-social a svg {
  width: 20px;
  height: 20px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-base);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 14, 23, 0.97);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  transition: all var(--transition-base);
  transform: translateY(30px);
  opacity: 0;
}

.mobile-menu.active a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.active a:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu.active a:nth-child(2) {
  transition-delay: 0.15s;
}
.mobile-menu.active a:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-menu.active a:nth-child(4) {
  transition-delay: 0.25s;
}
.mobile-menu.active a:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-menu a:hover {
  color: var(--accent-primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

/* Hero Background Image */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.7);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 23, 0.5) 0%,
    rgba(10, 14, 23, 0.3) 40%,
    rgba(10, 14, 23, 0.7) 70%,
    rgba(10, 14, 23, 1) 100%
  );
}

/* Ocean Gradient Overlay */
.hero-ocean-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 119, 182, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(0, 180, 216, 0.1) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

/* Particles Container */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-primary);
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1);
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-title-wrapper {
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line-inner {
  display: block;
  transform: translateY(110%);
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title .line:nth-child(2) .line-inner {
  animation-delay: 0.15s;
}

@keyframes heroReveal {
  to {
    transform: translateY(0);
  }
}

.hero-title .accent {
  color: var(--accent-primary);
  position: relative;
}

.hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--accent-primary);
  transform: scaleX(0);
  transform-origin: left;
  animation: lineGrow 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

@keyframes lineGrow {
  to {
    transform: scaleX(1);
  }
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-subtitle span {
  color: var(--accent-primary);
  margin: 0 4px;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.9s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--accent-primary);
  border: 2px solid var(--accent-primary);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  box-shadow:
    0 0 30px var(--accent-glow),
    0 0 60px rgba(0, 212, 255, 0.15);
  transform: translateY(-3px);
}

.btn-primary .arrow {
  transition: transform var(--transition-base);
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-primary);
  background: transparent;
  border: 2px solid var(--border-hover);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.btn-outline:hover {
  border-color: var(--accent-primary);
  background: rgba(0, 212, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
  transform: translateY(-3px);
}

/* Hero scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.2s forwards;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 50px;
  position: relative;
  overflow: hidden;
  background: var(--text-muted);
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-primary);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% {
    top: -100%;
  }
  50% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}

/* ============================================
   WORKS / PORTFOLIO SECTION
   ============================================ */
.works {
  background: var(--bg-primary);
}

.works-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
}

.works-header-text {
  max-width: 600px;
}

.works-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-top: 16px;
  line-height: 1.7;
}

/* Category Filters */
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  cursor: pointer;
  background: transparent;
}

.filter-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
  background: rgba(0, 212, 255, 0.05);
}

.filter-btn.active {
  color: var(--bg-primary);
  background: var(--accent-primary);
  border-color: var(--accent-primary);
}

/* Album Headers */
.album-header {
  margin: 60px 0 32px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.album-header::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent-primary);
}

.album-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Portfolio Card */
.portfolio-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  transition: transform var(--transition-base);
}

.portfolio-card:hover {
  transform: translateY(-6px);
}

.portfolio-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 1px;
  background: linear-gradient(135deg, transparent, var(--accent-primary), transparent);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 2;
  pointer-events: none;
}

.portfolio-card:hover::before {
  opacity: 1;
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    filter var(--transition-base);
}

.portfolio-card:hover .card-image-wrapper img {
  transform: scale(1.08);
  filter: brightness(0.6);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(10, 14, 23, 0.95) 0%,
    rgba(10, 14, 23, 0.4) 40%,
    rgba(0, 212, 255, 0.05) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 1;
}

.portfolio-card:hover .card-overlay {
  opacity: 1;
}

.card-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 8px;
  transform: translateY(15px);
  transition: transform var(--transition-base);
}

.portfolio-card:hover .card-category {
  transform: translateY(0);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transform: translateY(15px);
  transition: transform var(--transition-base) 0.05s;
}

.portfolio-card:hover .card-title {
  transform: translateY(0);
}

.card-view-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--transition-base);
}

.portfolio-card:hover .card-view-icon {
  opacity: 1;
  transform: scale(1);
}

.card-view-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent-primary);
}

/* Special large card */
.portfolio-card.large {
  grid-column: span 2;
}

.portfolio-card.large .card-image-wrapper {
  aspect-ratio: 16 / 9;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 8, 14, 0.96);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 85vw;
  max-height: 85vh;
  transform: scale(0.9);
  transition: transform var(--transition-smooth);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2001;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: var(--accent-primary);
  transform: rotate(90deg);
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
  color: var(--text-primary);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2001;
}

.lightbox-nav:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: var(--accent-primary);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
  color: var(--text-primary);
}

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  z-index: 2001;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  pointer-events: none;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--accent-primary);
  border-radius: var(--radius-md);
  opacity: 0.3;
  z-index: -1;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.3;
  margin-top: 24px;
  margin-bottom: 24px;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.about-text p strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(0deg, rgba(0, 212, 255, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
}

.contact-method:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateX(8px);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent-primary);
}

.contact-method-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-method-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-method-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: var(--bg-card-hover);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.btn-submit {
  align-self: flex-start;
  margin-top: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-primary);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-logo span {
  color: var(--accent-primary);
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: rgba(0, 212, 255, 0.08);
  transform: translateY(-3px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer-bottom span {
  color: var(--accent-primary);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for grid items */
.portfolio-card:nth-child(1) {
  transition-delay: 0s;
}
.portfolio-card:nth-child(2) {
  transition-delay: 0.1s;
}
.portfolio-card:nth-child(3) {
  transition-delay: 0.2s;
}
.portfolio-card:nth-child(4) {
  transition-delay: 0.3s;
}
.portfolio-card:nth-child(5) {
  transition-delay: 0.15s;
}
.portfolio-card:nth-child(6) {
  transition-delay: 0.25s;
}
.portfolio-card:nth-child(7) {
  transition-delay: 0.35s;
}

/* ============================================
   OCEAN WAVE DIVIDER
   ============================================ */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  margin-top: -1px;
}

.wave-divider svg {
  width: 100%;
  height: 80px;
  display: block;
}

.wave-divider .wave-fill {
  fill: var(--bg-secondary);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
    --container-padding: 0 30px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .portfolio-card.large {
    grid-column: span 2;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
    --container-padding: 0 20px;
  }

  .navbar {
    padding: 16px 20px;
  }

  .navbar.scrolled {
    padding: 12px 20px;
  }

  .navbar-links {
    display: none;
  }

  .navbar-social {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding-top: 80px;
    min-height: 100svh;
  }

  .hero-title {
    font-size: clamp(2.5rem, 14vw, 4.5rem);
  }

  .hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .portfolio-card.large {
    grid-column: span 1;
  }

  .portfolio-card.large .card-image-wrapper {
    aspect-ratio: 3 / 4;
  }

  .works-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .filters {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .section-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  /* Show overlay always on mobile */
  .card-overlay {
    opacity: 1;
    background: linear-gradient(
      0deg,
      rgba(10, 14, 23, 0.9) 0%,
      rgba(10, 14, 23, 0.1) 50%,
      transparent 100%
    );
  }

  .card-category,
  .card-title {
    transform: translateY(0);
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 14px 28px;
    font-size: 0.78rem;
  }
}

/* --- PORTADAS DE ÃƒÆ’Ã‚ÂLBUMES --- */
.portfolio-grid.album-covers-grid {
  grid-template-columns: repeat(2, 1fr);
}

.portfolio-grid.album-covers-grid .portfolio-card:last-child {
  grid-column: span 2;
}

/* --- PORTADAS DE ÃƒÂLBUMES (FLEXBOX CENTRADO) --- */
.works .container {
  max-width: 100%;
  padding: 0 40px;
}

.portfolio-grid.album-covers-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 16px !important;
}

.portfolio-grid.album-covers-grid .portfolio-card {
  width: calc(20% - 13px) !important;
}

.portfolio-card.album-cover .card-overlay {
  opacity: 1;
  background: linear-gradient(
    0deg,
    rgba(10, 14, 23, 0.95) 0%,
    rgba(10, 14, 23, 0.5) 40%,
    transparent 100%
  );
}

.portfolio-card.album-cover:active .card-title {
  color: var(--accent-primary);
  transition: color 0.1s ease;
}

@media (max-width: 1024px) {
  .portfolio-grid.album-covers-grid .portfolio-card {
    width: calc(50% - 8px) !important;
  }
}

@media (max-width: 768px) {
  .portfolio-grid.album-covers-grid .portfolio-card {
    width: 100% !important;
  }
}

/* --- SHARKS ANIMATION --- */
.shark {
  position: absolute;
  pointer-events: none;
  z-index: 1; /* Below content but above background */
  opacity: 0.15; /* Very subtle */
  animation: swim linear forwards;
}

@keyframes swim {
  from {
    transform: translateX(-150vw) rotateY(0deg);
  }
  to {
    transform: translateX(150vw) rotateY(0deg);
  }
}

@keyframes swim-reverse {
  from {
    transform: translateX(150vw) scaleX(-1);
  }
  to {
    transform: translateX(-150vw) scaleX(-1);
  }
}
.shark img {
  width: 100%;
  height: auto;
  filter: grayscale(1) contrast(500%) invert(1);
  mix-blend-mode: screen;
  transform: rotate(90deg);
}

/* --- PORTFOLIO CATEGORIES --- */
.portfolio-category {
  margin-bottom: 80px;
}
.portfolio-category:last-child {
  margin-bottom: 0;
}

.category-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-primary);
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent-primary);
}

.coming-soon {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 60px 20px;
  text-align: center;
}

.coming-soon p {
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin: 0;
}

/* --- VIDEO IN CARDS --- */
.card-image-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-card:hover .card-image-wrapper video {
  transform: scale(1.1);
}

/* --- LIGHTBOX VIDEO --- */
#lightboxVideo {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}

/* --- CUSTOM SECTION STYLING --- */
.section-disenos {
  background-color: rgba(30, 41, 59, 0.6); /* Lighter blue/slate, semi-transparent */
  padding: 40px;
  border-radius: 16px;
  margin-top: 40px;
}

.section-cm {
  background-color: rgba(11, 18, 33, 0.8); /* Darker blue */
  padding: 40px;
  border-radius: 16px;
  margin-top: 40px;
}

/* Smaller grids for Disenos and CM */
.portfolio-grid.grid-small {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
@media (max-width: 1024px) {
  .portfolio-grid.grid-small {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .portfolio-grid.grid-small {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .portfolio-grid.grid-small {
    grid-template-columns: 1fr;
  }
}

/* Diseno card specifics */
.card-diseno .card-image-wrapper {
  background-color: #ffffff;
  padding: 20px;
}
.card-diseno .card-image-wrapper img {
  object-fit: contain !important; /* ensure PNGs fit well */
}

/* Always show title for Diseno and CM */
.card-diseno .card-overlay,
.card-cm .card-overlay {
  opacity: 1;
  background: linear-gradient(
    0deg,
    rgba(10, 14, 23, 0.95) 0%,
    rgba(10, 14, 23, 0.5) 40%,
    transparent 100%
  );
}
.card-diseno .card-category,
.card-diseno .card-title,
.card-cm .card-category,
.card-cm .card-title {
  transform: translateY(0);
}

/* --- LIGHTBOX METRICS OVERLAY --- */
.lightbox-metrics {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(10, 14, 23, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2010;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.metrics-stats {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.metric {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
}

.metric-icon {
  font-size: 1.1rem;
}

.ig-link-btn {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.ig-link-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  color: white;
}

@media (max-width: 768px) {
  .lightbox-metrics {
    bottom: 20px;
    left: 20px;
    right: 20px;
    align-items: center;
  }
}

/* --- SPLIT LIGHTBOX REDESIGN --- */
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  transform: scale(0.9);
  transition: transform var(--transition-smooth);
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-media-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-height: 85vh;
}

.lightbox-media-container img,
.lightbox-media-container video {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-side-panel {
  position: relative;
  bottom: auto;
  right: auto;
  width: 380px;
  background: rgba(10, 14, 23, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
  z-index: 2010;
}

.panel-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
  margin: 0;
}

.panel-work-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.panel-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 10px 0;
}

.panel-metric {
  display: flex;
  align-items: center;
  gap: 12px;
}

.metric-icon {
  font-size: 1.4rem;
}

.metric-data {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.metric-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 992px) {
  .lightbox-content {
    flex-direction: column;
    max-height: 95vh;
    overflow-y: auto;
    gap: 20px;
    padding: 20px 0;
  }
  .lightbox-media-container img,
  .lightbox-media-container video {
    max-height: 50vh;
  }
  .lightbox-side-panel {
    width: 100%;
    padding: 20px;
  }
}

/* --- GRADIENT BACKGROUND FOR PORTFOLIO --- */
#mis-trabajos {
  background: linear-gradient(
    180deg,
    rgba(135, 206, 235, 0.1) 0%,
    /* Celeste clarito (SkyBlue) */ rgba(28, 116, 212, 0.4) 50%,
    /* Azul medio */ rgba(10, 25, 47, 1) 100% /* Azul muy oscuro y profundo */
  );
  padding: 80px 0;
}

.portfolio-category {
  background: transparent !important;
  margin-top: 0 !important;
  padding: 40px 0 !important;
  border-radius: 0 !important;
}

/* --- NEW ALBUM COVER DESIGN --- */
.portfolio-card.album-cover {
  display: flex !important;
  flex-direction: column;
  background: transparent;
  gap: 12px;
}

.portfolio-card.album-cover .card-overlay {
  display: none !important; /* Remove old overlay */
}

.album-card-header {
  text-align: left;
  padding-left: 5px;
}

.album-primary-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.portfolio-card.album-cover .card-image-wrapper {
  aspect-ratio: 3 / 4;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.album-card-footer {
  text-align: left;
  padding-left: 5px;
}

.album-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}

.album-secondary-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}

/* --- UPDATED ALBUM COVER DESIGN (INSIDE BUBBLE) --- */
.portfolio-card.album-cover {
  display: block !important;
  position: relative;
  background: transparent !important;
  border: none !important;
}

.portfolio-card.album-cover .card-image-wrapper {
  aspect-ratio: 3 / 4;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative; /* important for overlay */
}

.card-internal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0.8) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.card-internal-top .album-primary-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
}

.card-internal-bottom .album-label {
  display: block;
  color: var(--accent-primary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
  text-align: left;
}

.card-internal-bottom .album-secondary-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: left;
}

.section-disenos .portfolio-grid {
  width: 100% !important;
}

#trabajos {
  background: linear-gradient(
    180deg,
    rgba(135, 206, 235, 0.1) 0%,
    rgba(28, 116, 212, 0.3) 50%,
    rgba(10, 25, 47, 0.8) 100%
  ) !important;
}
