:root {
  /* Dynamic & Vibrant Colors (Taken from Custom Logo) */
  --primary-color: #c6375d;
  /* Magenta/Redish */
  --secondary-color: #e19640;
  /* Orange/Yellow */
  --accent-color: #e8ad44;
  /* Light Orange/Yellow */

  --bg-color: #ffffff;
  --bg-light: #f4f6f9;
  --bg-dark: #101e39;
  /* Dark Navy Blue */

  --text-dark: #1e293b;
  --text-light: #f8fafc;
  --text-muted: #64748b;

  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.2);

  --gradient-main: linear-gradient(135deg, var(--primary-color), var(--secondary-color));

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 20px rgba(255, 51, 102, 0.3);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Outfit', 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Header & Main Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  font-size: 1.05rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -5px;
  left: 0;
  background: var(--gradient-main);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn-submit-nav {
  background: var(--gradient-main);
  color: white !important;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.btn-submit-nav::after {
  display: none !important;
}

.btn-submit-nav:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Hamburger & Hidden Nav */
.hamburger {
  display: block;
  margin-left: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.8rem;
  z-index: 1100;
  transition: var(--transition);
}

.hamburger:hover {
  color: var(--primary-color);
}

.hidden-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 350px;
  height: 100vh;
  background: var(--bg-dark);
  color: var(--text-light);
  z-index: 1050;
  padding: 6rem 2rem 2rem;
  transition: 0.4s ease-in-out;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.hidden-nav.open {
  right: 0;
}

.hidden-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: auto;
}

.hidden-nav-links a {
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hidden-nav-links a:hover {
  color: var(--secondary-color);
  padding-left: 10px;
}

.hidden-nav .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hidden-nav .social-links a {
  background: rgba(255, 255, 255, 0.1);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
}

.hidden-nav .social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Sections General */
section {
  padding: 5rem 5%;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  /* offset for header */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 51, 102, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: floatOrb1 12s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 55, 93, 0.07) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  animation: floatOrb2 15s ease-in-out infinite alternate;
}

@keyframes floatOrb1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-80px, 60px) scale(1.15);
  }
}

@keyframes floatOrb2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(60px, -80px) scale(1.1);
  }
}

/* bgMove removed */

.hero-content h1 {
  font-size: 4rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-content h1 span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.3rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* About Section */
.about {
  background: white;
  text-align: center;
  border-radius: 20px;
  margin: 2rem 5%;
  padding: 4rem 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.btn-primary {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4);
}

.btn-primary:hover {
  background: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(30, 41, 59, 0.3);
}

/* Content Showcase Sections */
.showcase-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 5rem;
}

.showcase-row:nth-child(even) {
  flex-direction: row-reverse;
}

.showcase-text {
  flex: 1;
}

.showcase-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.showcase-visual {
  flex: 1.5;
  height: 350px;
  border-radius: 20px;
  background: var(--gradient-main);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}

.showcase-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.showcase-visual:hover img {
  transform: scale(1.05);
}

/* Grid Layout (Gallery & Home Preview) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 1rem 0;
}

.work-card {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  background: white;
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.work-card-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: black;
  overflow: hidden;
}

.card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work-card:hover .card-img,
.work-card.active .card-img {
  transform: scale(1.08);
}

.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0.5) 70%, transparent);
  transform: translateY(101%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  color: white;
}

.work-card:hover .card-info,
.work-card.active .card-info {
  transform: translateY(0);
  opacity: 1;
}

.card-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  display: block;
}

.card-meta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.card-pigura {
  padding: 1.2rem 1.5rem;
  background: white;
  display: flex;
  flex-direction: column;
}

.pigura-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pigura-author {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.like-btn {
  background: none;
  border: none;
  color: #cbd5e1;
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.like-btn:hover {
  transform: scale(1.1);
}

.like-btn.liked {
  color: #ef4444;
  /* Red heart */
}

.like-count {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* Filter System */
.filter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: white;
  border: 1px solid var(--glass-border);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--text-dark);
  color: white;
  border-color: var(--text-dark);
}

/* Forms (Register & Submit) */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-family: inherit;
  transition: var(--transition);
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.1);
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: var(--transition);
}

.radio-label:hover {
  border-color: var(--secondary-color);
}

.radio-label input[type="radio"] {
  accent-color: var(--primary-color);
}

/* Custom Multi-Select Dropdown */
.custom-select-wrapper {
  position: relative;
  user-select: none;
}

.custom-select-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  background: white;
  cursor: pointer;
  transition: var(--transition);
}

.custom-select-box:hover {
  border-color: var(--secondary-color);
}

.custom-select-box.active {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.1);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px solid var(--primary-color);
  border-top: none;
  max-height: 250px;
  overflow-y: auto;
  display: none;
  flex-direction: column;
  z-index: 50;
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow-md);
}

.custom-select-options.show {
  display: flex;
}

.custom-select-options label {
  padding: 0.8rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid #f1f5f9;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0;
  transition: var(--transition);
}

.custom-select-options label:hover {
  background: var(--bg-light);
}

.custom-select-options input[type="checkbox"] {
  accent-color: var(--primary-color);
  width: 18px;
  height: 18px;
}

/* File Upload Style */
.file-upload-wrapper {
  position: relative;
  border: 2px dashed #cbd5e1;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  background: #f8fafc;
}

.file-upload-wrapper:hover {
  border-color: var(--secondary-color);
  background: #f1f5f9;
}

.file-upload-wrapper input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* Join Section */
.join-section {
  background: var(--gradient-main);
  color: white;
  text-align: center;
  border-radius: 20px;
  margin: 2rem 5%;
  padding: 4rem 2rem;
}

.join-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.join-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-light {
  background: white;
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
  background: var(--text-dark);
  color: white;
  transform: translateY(-3px);
}

/* News Section */
.news-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.news-card {
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 5px solid var(--secondary-color);
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

.news-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.news-card-thumb {
  width: 300px;
  flex-shrink: 0;
}

.news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: block;
}

@media (max-width: 768px) {
  .news-card {
    flex-direction: column;
    border-left: none;
    border-top: 5px solid var(--secondary-color);
  }

  .news-card:hover {
    transform: translateY(-5px);
  }

  .news-card-thumb {
    width: 100%;
    height: 200px;
  }
}

/* Loader */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: opacity 0.5s;
}

.loader-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--bg-light);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* Alerts */
.alert {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: none;
}

.alert.success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
  display: block;
}

.alert.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
  display: block;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1500;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  padding: 2rem;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-modal {
  display: flex;
  width: 100%;
  max-width: 1000px;
  max-height: 90vh;
  background: var(--bg-dark);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-visual {
  flex: 1.5;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.lightbox-content {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-info-panel {
  flex: 1;
  padding: 3rem 2rem;
  background: white;
  color: var(--bg-dark);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1600;
  transition: transform 0.2s;
}

.lightbox-close:hover {
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .lightbox-modal {
    flex-direction: column;
    overflow-y: auto;
  }

  .lightbox-visual {
    padding: 1rem;
    min-height: 40vh;
  }

  .lightbox-info-panel {
    padding: 2rem;
    overflow-y: visible;
  }

  .lightbox {
    padding: 1rem;
  }
}

/* Footer */
footer {
  background: white;
  /* Clean White to avoid clashing with logo */
  color: var(--bg-dark);
  padding: 3rem 5% 1rem;
  text-align: center;
  margin-top: 4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  /* Soft border for separation */
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  /* Removed gradient text clip to allow image to stand out nicely */
}

.footer-copy {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Responsive Variables */
@media (max-width: 900px) {

  .showcase-row,
  .showcase-row:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    /* Hide for mobile, show hamburger */
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .radio-group {
    grid-template-columns: 1fr;
  }
}

/* Home Carousel */
.home-carousel-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  position: relative;
  background: white;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-track .work-card {
  min-width: 100%;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  transform: none !important;
  /* Disable hover float */
}

.carousel-btn {
  background: white;
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: 50%;
  min-width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--primary-color);
  color: white;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dots .dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .home-carousel-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }
}

/* Advanced Gallery Filters */
.advanced-filter-controls {
  max-width: 1200px;
  margin: 0 auto 2rem;
  position: relative;
}

.filter-toggle-btn {
  background: var(--bg-dark);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  margin: 0 auto;
}

.filter-toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--primary-color);
}

.filter-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  margin-top: 1rem;
  display: flex;
  gap: 2rem;
  padding: 0;
  justify-content: center;
}

.filter-panel.open {
  max-height: 150px;
  opacity: 1;
  padding: 1.5rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 200px;
}

.filter-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.filter-select {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-color, #e2e8f0);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  background-color: var(--bg-light, #f8fafc);
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}

.filter-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(118, 75, 162, 0.1);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

@media (max-width: 768px) {
  .filter-panel {
    flex-direction: column;
    gap: 1rem;
  }

  .filter-panel.open {
    max-height: 300px;
  }
}

/* About Page Specific Styles */
.about-hero {
  background: var(--bg-light);
}

.movements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.movement-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.movement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-main);
  transform: scaleY(0);
  transition: transform 0.4s ease;
  transform-origin: bottom;
}

.movement-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.movement-card:hover::before {
  transform: scaleY(1);
}

.movement-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
  font-weight: 800;
}

.movement-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
}

.divider-wrapper {
  line-height: 0;
  position: relative;
  z-index: 10;
}

/* Scroll Animation Initial State */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- SEKARYA New Redesign Styles (Added for Redesign) --- */

/* Restrict Global Logo Sizes */
.logo-img {
  height: 40px;
  margin-right: 10px;
  vertical-align: middle;
}

.footer-logo-img {
  height: 50px;
  margin-right: 10px;
  vertical-align: middle;
}

/* Marquee Border */
.marquee-divider {
  width: 100%;
  overflow: hidden;
  background: #64748b;
  /* Abu-abu */
  color: white;
  /* Tulisan putih */
  padding: 1.2rem 0;
  white-space: nowrap;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
}

.marquee-divider.bottom {
  background: #64748b;
  color: white;
}

.marquee-content {
  display: flex;
  animation: scroll-marquee 30s linear infinite;
  min-width: 200%;
  /* Ensure content spans enough to scroll */
}

.marquee-content span {
  padding: 0 15px;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Recent Works Grid styles moved to end of file */

/* Dynamic Categories (Slide Reveal) */
.dynamic-categories {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--bg-dark);
}

.cat-row {
  position: relative;
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: background-size 5s linear;
}

.cat-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 30, 57, 0.85);
  /* Navy tint overlay */
  transition: all 0.5s ease;
}

.cat-row:hover .cat-overlay {
  background: rgba(198, 55, 93, 0.85);
  /* Magenta tint on hover */
}

/* Background Zoom Hover Effect */
.cat-row:hover {
  background-size: 110%;
  /* Slow zoom in effect */
}

.cat-content-split {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.cat-text-and-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: white;
  text-align: center;
  pointer-events: none;
  /* Let the row handle clicks */
}

.cat-text-and-btn h2 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: color 0.3s;
}

.cat-text-and-btn .btn-outline-light {
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.cat-icon-solo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(0.5);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: white;
  font-size: 5rem;
  pointer-events: none;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Active State (Click Setup) */
.cat-row.active .cat-overlay {
  background: rgba(16, 30, 57, 0.95);
}

.cat-row.active .cat-text-and-btn {
  transform: translateX(35%);
  align-items: flex-start;
  text-align: left;
  pointer-events: auto;
}

.cat-row.active .cat-text-and-btn h2 {
  color: var(--accent-color);
}

.cat-row.active .cat-text-and-btn .btn-outline-light {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cat-row.active .cat-icon-solo {
  transform: translateX(-150%) scale(1);
  opacity: 1;
  color: var(--secondary-color);
}

/* General Button style fix */
.btn-outline-light {
  color: white;
  border: 2px solid white;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-outline-light:hover {
  background: white;
  color: var(--bg-dark);
}

/* Footer Social Horizontal */
.social-footer-horizontal {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-bottom: 2rem;
}

.social-footer-horizontal a {
  font-size: 2.2rem;
  color: var(--text-muted);
  transition: transform 0.3s, color 0.3s;
}

.social-footer-horizontal a:hover {
  color: var(--primary-color);
  transform: translateY(-5px);
}

@media (max-width: 900px) {
  .cat-text-and-btn h2 {
    font-size: 2rem;
  }

  .cat-row.active .cat-text-and-btn {
    transform: translateX(10%);
  }

  .cat-row.active .cat-icon-solo {
    transform: translateX(-120%) scale(0.6);
  }

  .cat-icon-solo {
    font-size: 4rem;
  }

  .cat-row {
    height: 200px;
  }
}


/* ====================================
   Scroll Animate (Fade-in from bottom)
   ==================================== */
.scroll-animate {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================
   Recent Works — Carousel Image section
   ==================================== */
.recent-works-showcase {
  background: #f8fafc;
  padding-bottom: 1rem;
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  width: 100%;
  margin-top: 2rem;
}

.recent-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
  cursor: pointer;
}

.recent-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.recent-item:hover img {
  transform: scale(1.08);
}

.recent-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  color: white;
  transform: translateY(101%);
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.recent-item:hover .recent-item-caption,
.recent-item.active-slide .recent-item-caption {
  transform: translateY(0);
}

.recent-item-cat {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--secondary-color);
  letter-spacing: 1.5px;
}

.recent-item-caption strong {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
}

.recent-item.active-slide {
  box-shadow: 0 0 0 3px var(--primary-color) inset;
  z-index: 2;
}

/* ====================================
   Dot Indicators
   ==================================== */
.recent-dot {
  width: 10px;
  height: 10px;
  border-radius: 20px;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.4s;
}

.recent-dot.active {
  background: var(--primary-color);
  width: 28px;
}

/* ====================================
   Desktop-only utility class
   ==================================== */
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .recent-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    gap: 0;
    margin-top: 1.5rem;
  }

  .recent-grid::-webkit-scrollbar {
    display: none;
  }

  .recent-item {
    min-width: 100%;
    scroll-snap-align: center;
    aspect-ratio: 4 / 5;
    height: auto;
    border-right: 3px solid white;
  }
}

/* ====================================
   Home Carousel - 3-visible / 5-total
   ==================================== */
.recent-works-showcase {
  background: var(--bg-dark);
  padding-bottom: 0;
  overflow: hidden;
}

.carousel-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
}

#homeRecentWorksGrid {
  display: flex;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
  flex: 0 0 calc(100% / 3);
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.carousel-slide:hover img {
  transform: scale(1.07);
}

.carousel-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  color: white;
  transform: translateY(101%);
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.carousel-slide:hover .carousel-slide-caption {
  transform: translateY(0);
}

.carousel-slide-caption strong {
  font-size: 1.1rem;
  font-weight: 800;
}

.carousel-slide-caption small {
  font-size: 0.8rem;
  opacity: 0.75;
}

/* Mobile: 1 slide visible */
@media (max-width: 768px) {
  #homeRecentWorksGrid {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  #homeRecentWorksGrid::-webkit-scrollbar {
    display: none;
  }

  .carousel-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
  }
}

/* ====================================
   Category Row - Fix Overlap
   ==================================== */
.cat-content-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  max-width: 900px;
  height: 100%;
  gap: 2rem;
  padding: 0 2rem;
}

.cat-icon-solo {
  position: relative;
  left: auto;
  transform: none;
  opacity: 1;
  font-size: 4rem;
  color: white;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s;
}

.cat-row:hover .cat-icon-solo {
  transform: scale(1.2) rotate(-5deg);
  color: var(--secondary-color);
}

.cat-text-and-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: white;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: left;
  pointer-events: none;
  flex: 1;
  gap: 1rem;
}

.cat-text-and-btn h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.cat-text-and-btn .btn-outline-light {
  margin-top: 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease 0.1s;
  pointer-events: none;
}

.cat-row:hover .cat-text-and-btn .btn-outline-light,
.cat-row.active .cat-text-and-btn .btn-outline-light {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.cat-row.active .cat-text-and-btn {
  pointer-events: auto;
}

/* Override old conflicting rules */
.cat-row.active .cat-text-and-btn {
  transform: none;
  align-items: flex-start;
}

.cat-row.active .cat-icon-solo {
  transform: scale(1.2);
  opacity: 1;
  color: var(--secondary-color);
}

/* ====================================
   Hamburger CTA pill style
   ==================================== */
.hamburger-cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white !important;
  font-weight: 900 !important;
  font-size: 1.2rem !important;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.hamburger-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 51, 102, 0.5);
}

/* ======================================
   ? SPLASH SCREEN
   ====================================== */
#splash-screen {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.splash-logo {
  width: 120px;
  animation: splashPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes splashPop {
  from {
    transform: scale(0.3) rotate(-10deg);
    opacity: 0;
  }

  to {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.splash-tagline {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.splash-word {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(20px);
  animation: wordIn 0.5s forwards;
}

.splash-word:nth-child(1) {
  animation-delay: 0.4s;
  color: var(--primary-color);
  -webkit-text-stroke: 0;
}

.splash-word:nth-child(2) {
  animation-delay: 0.65s;
  color: var(--secondary-color);
  -webkit-text-stroke: 0;
}

.splash-word:nth-child(3) {
  animation-delay: 0.9s;
  color: var(--accent-color);
  -webkit-text-stroke: 0;
}

@keyframes wordIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.splash-bar {
  width: 200px;
  height: 3px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.splash-fill {
  height: 100%;
  background: var(--gradient-main);
  border-radius: 10px;
  width: 0;
  animation: fillBar 1.8s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fillBar {
  to {
    width: 100%;
  }
}

/* ======================================
   ? CUSTOM CURSOR
   ====================================== */
#custom-cursor {
  position: fixed;
  width: 14px;
  height: 14px;
  background: var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s, width 0.3s, height 0.3s, opacity 0.3s;
  mix-blend-mode: difference;
}

#cursor-trail {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: left 0.12s ease, top 0.12s ease, opacity 0.3s;
  opacity: 0.5;
}

body:has(a:hover) #custom-cursor,
body:has(button:hover) #custom-cursor {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {

  #custom-cursor,
  #cursor-trail {
    display: none;
  }
}

/* ======================================
   ? HERO UPGRADED
   ====================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 30, 57, 0.92) 0%, rgba(16, 30, 57, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--secondary-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  animation: fadeSlideDown 0.8s 0.2s both;
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  animation: fadeSlideDown 0.8s 0.4s both;
}

.hero-sub {
  animation: fadeSlideDown 0.8s 0.6s both;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  line-height: 1.8;
}

.hero-sub strong {
  color: var(--secondary-color);
}

.hero-typewriter::after {
  content: '|';
  animation: blink 0.7s infinite;
  margin-left: 2px;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeSlideDown 0.8s 0.8s both;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--font-main);
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  text-decoration: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  transform: translateY(-3px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: fadeSlideDown 1s 1.2s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.3);
  }
}

/* ======================================
   HERO — Decorative Floating Shapes
   Latar putih bersih, efek mengambang
   ringan di sudut-sudut hero
   ====================================== */

/* Override hero upgraded block (jika ada duplikasi) */
.hero {
  background: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Base deco element */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Large soft pink orb — top right */
.hero-deco-1 {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -140px;
  background: radial-gradient(circle, rgba(255, 51, 102, 0.07) 0%, transparent 65%);
  animation: decoFloat1 14s ease-in-out infinite alternate;
}

/* Medium gold orb — bottom left */
.hero-deco-2 {
  width: 400px;
  height: 400px;
  bottom: -120px;
  left: -100px;
  background: radial-gradient(circle, rgba(198, 55, 93, 0.06) 0%, transparent 65%);
  animation: decoFloat2 18s ease-in-out infinite alternate;
}

/* Small accent circle — mid left */
.hero-deco-3 {
  width: 180px;
  height: 180px;
  top: 30%;
  left: 5%;
  background: rgba(255, 51, 102, 0.04);
  border: 2px solid rgba(255, 51, 102, 0.08);
  border-radius: 50%;
  animation: decoFloat3 10s ease-in-out infinite alternate;
}

/* Ring outline — top left */
.hero-deco-4 {
  width: 100px;
  height: 100px;
  top: 15%;
  left: 12%;
  border: 3px solid rgba(198, 55, 93, 0.12);
  border-radius: 50%;
  animation: decoFloat4 8s ease-in-out infinite alternate;
}

/* Small dot cluster — right middle */
.hero-deco-5 {
  width: 60px;
  height: 60px;
  top: 40%;
  right: 8%;
  background: rgba(255, 51, 102, 0.06);
  border-radius: 50%;
  box-shadow:
    20px 20px 0 rgba(255, 51, 102, 0.04),
    -20px 20px 0 rgba(255, 51, 102, 0.03),
    20px -20px 0 rgba(198, 55, 93, 0.04);
  animation: decoFloat5 11s ease-in-out infinite alternate;
}

@keyframes decoFloat1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-40px, 50px) scale(1.08);
  }
}

@keyframes decoFloat2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(50px, -40px) scale(1.06);
  }
}

@keyframes decoFloat3 {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-30px) rotate(15deg);
  }
}

@keyframes decoFloat4 {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(20px) scale(1.3);
    opacity: 0.5;
  }
}

@keyframes decoFloat5 {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-25px) rotate(20deg);
  }
}

/* Ensure hero-content sits above shapes */
.hero-content {
  position: relative;
  z-index: 2;
}

/* ======================================
   SUBMIT PAGE — File Upload States
   ====================================== */

/* Drop zone idle state */
.file-upload-wrapper {
  position: relative;
  border: 2px dashed #cbd5e1;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
  cursor: pointer;
  background: #f8fafc;
  overflow: hidden;
}

.file-upload-wrapper:hover {
  border-color: var(--primary-color);
  background: rgba(255, 51, 102, 0.03);
}

.file-upload-wrapper.drag-over {
  border-color: var(--primary-color);
  background: rgba(255, 51, 102, 0.06);
  transform: scale(1.01);
}

.file-upload-wrapper input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.file-upload-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
  transition: transform 0.3s;
}

.file-upload-wrapper:hover .file-upload-icon {
  transform: translateY(-5px) scale(1.05);
}

.file-upload-title {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.file-upload-hint {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* File ready state (after choosing file) */
.file-ready-zone {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 2px solid #22c55e;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  background: rgba(34, 197, 94, 0.05);
  animation: readyPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes readyPop {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.file-ready-icon {
  font-size: 2.5rem;
  color: #22c55e;
  flex-shrink: 0;
}

.file-ready-info {
  flex: 1;
  min-width: 0;
}

.file-ready-name {
  font-weight: 800;
  color: var(--text-dark);
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.2rem;
}

.file-ready-size {
  font-size: 0.82rem;
  color: #64748b;
}

.file-ready-change {
  background: none;
  border: 1.5px solid #94a3b8;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
  flex-shrink: 0;
}

.file-ready-change:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Submit Button */
.btn-submit-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 1.1rem 2rem;
  background: var(--gradient-main);
  color: white;
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 800;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 6px 20px rgba(255, 51, 102, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-submit-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-submit-main:hover::after {
  opacity: 1;
}

.btn-submit-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 51, 102, 0.4);
}

.btn-submit-main:active {
  transform: translateY(0);
}

.btn-submit-main:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Result Message Box */
.submit-result-box {
  margin-top: 1.5rem;
  padding: 1.2rem 1.8rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  animation: resultSlideUp 0.5s cubic-bezier(0.25, 1, 0.5, 1) both;
}

@keyframes resultSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.submit-result-box.success {
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid #22c55e;
  color: #166534;
}

.submit-result-box.error {
  background: rgba(239, 68, 68, 0.08);
  border: 2px solid #ef4444;
  color: #991b1b;
}

/* ======================================
   HOMEPAGE HERO — Clean white + cursor gradient canvas
   ====================================== */
#hero-gradient-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Override any old hero-bg floating shapes */
.hero-bg {
  display: none;
}

.hero-deco {
  display: none;
}

/* ======================================
   HEADER SCROLL EFFECT — Homepage only
   #page-home: dark at top, white on scroll
   ====================================== */

/* Default (all pages): white header */
header {
  background: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* Homepage: dark header initially */
#page-home header#main-header {
  background: var(--bg-dark);
  box-shadow: none;
}

/* Homepage dark state: nav links & hamburger ? white */
#page-home header#main-header .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

#page-home header#main-header .nav-links a:hover {
  color: white;
}

#page-home header#main-header .hamburger {
  color: white;
}

/* Show white logo, hide normal logo when header is dark */
.logo-white {
  display: none;
}

.logo-normal {
  display: block;
}

#page-home header#main-header .logo-white {
  display: block;
}

#page-home header#main-header .logo-normal {
  display: none;
}

/* Scrolled state ? white header */
#page-home header#main-header.scrolled {
  background: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

#page-home header#main-header.scrolled .nav-links a {
  color: var(--text-dark);
}

#page-home header#main-header.scrolled .nav-links a:hover {
  color: var(--primary-color);
}

#page-home header#main-header.scrolled .hamburger {
  color: var(--text-dark);
}

#page-home header#main-header.scrolled .logo-white {
  display: none;
}

#page-home header#main-header.scrolled .logo-normal {
  display: block;
}

/* Btn-submit-nav stays visible in both states */
#page-home header#main-header .btn-submit-nav {
  background: var(--primary-color);
  color: white !important;
}

/* ======================================
   SPLASH — Logo lebih besar + 5 kata
   ====================================== */
.splash-logo {
  width: 160px !important;
  /* override sebelumnya 120px */
}

/* 5 kata splash — ukuran sedikit lebih kecil agar muat */
.splash-tagline {
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  max-width: 600px;
  justify-content: center;
}

.splash-word {
  font-size: 1.35rem !important;
}

.splash-word:nth-child(4) {
  animation-delay: 1.15s;
  color: #6366f1;
  -webkit-text-stroke: 0;
}

.splash-word:nth-child(5) {
  animation-delay: 1.4s;
  color: #0ea5e9;
  -webkit-text-stroke: 0;
}

/* ======================================
   CUSTOM LOADING ANIMATION
   Titik-titik berwarna merah kuning hijau biru
   keluar lalu masuk secara berurutan
   ====================================== */
.sekarya-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem;
  grid-column: 1 / -1;
  width: 100%;
}

.sekarya-loader p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.loader-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.loader-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  animation: dotBounce 1.4s ease-in-out infinite both;
}

.loader-dot:nth-child(1) {
  background: #ef4444;
  /* merah */
  animation-delay: 0s;
}

.loader-dot:nth-child(2) {
  background: #f59e0b;
  /* kuning */
  animation-delay: 0.18s;
}

.loader-dot:nth-child(3) {
  background: #22c55e;
  /* hijau */
  animation-delay: 0.36s;
}

.loader-dot:nth-child(4) {
  background: #3b82f6;
  /* biru */
  animation-delay: 0.54s;
}

.loader-dot:nth-child(5) {
  background: #a855f7;
  /* ungu */
  animation-delay: 0.72s;
}

@keyframes dotBounce {

  0%,
  80%,
  100% {
    transform: scale(0.6) translateY(0);
    opacity: 0.4;
  }

  40% {
    transform: scale(1.3) translateY(-12px);
    opacity: 1;
  }
}

/* ======================================
   ERROR STATE — retry button
   ====================================== */
.fetch-error-box {
  grid-column: 1 / -1;
  width: 100%;
  text-align: center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.fetch-error-icon {
  font-size: 3rem;
  color: #ef4444;
  opacity: 0.7;
}

.fetch-error-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.fetch-error-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 380px;
  line-height: 1.6;
}

.btn-retry {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.8rem;
  background: var(--gradient-main);
  color: white;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 14px rgba(255, 51, 102, 0.3);
}

.btn-retry:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 51, 102, 0.4);
}

/* ======================================
   NEWS CARD — Efek hover premium
   ====================================== */
.news-card {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease,
    border-left-color 0.35s ease !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Shimmer strip on hover */
.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  bottom: 0;
  width: 60%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-15deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.news-card:hover::before {
  left: 140%;
}

.news-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

/* Thumbnail zoom on hover */
.news-card-thumb {
  overflow: hidden;
  flex-shrink: 0;
}

.news-card-thumb img {
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.news-card:hover .news-card-thumb img {
  transform: scale(1.08);
}

/* "Baca Selengkapnya" link — animate arrow on hover */
.news-card a[href*="news.html"] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease, color 0.3s;
}

.news-card:hover a[href*="news.html"] {
  gap: 12px;
}

/* ======================================
   NEWS DETAIL — Premium halaman berita
   ====================================== */
.news-detail-card {
  max-width: 820px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation: detailFadeIn 0.6s cubic-bezier(0.25, 1, 0.5, 1) both;
}

@keyframes detailFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Back button */
.news-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 1.5rem 2.5rem 0;
  transition: gap 0.3s;
}

.news-detail-back:hover {
  gap: 12px;
}

.news-detail-back i {
  transition: transform 0.3s;
}

.news-detail-back:hover i {
  transform: translateX(-3px);
}

/* Cover image — full bleed no padding */
.news-detail-cover {
  width: 100%;
  height: 340px;
  overflow: hidden;
  margin: 1.5rem 0 0;
}

.news-detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 7s ease;
}

.news-detail-cover:hover img {
  transform: scale(1.04);
}

/* Meta row (timestamp · event date chip) */
.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 2rem 2.5rem 0;
}

.news-detail-timestamp {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-detail-divider {
  color: #cbd5e1;
  font-size: 1.2rem;
}

.news-detail-event-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 51, 102, 0.08);
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 51, 102, 0.2);
}

/* Title */
.news-detail-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
  padding: 1rem 2.5rem 0;
  margin: 0;
}

/* Content body */
.news-detail-content {
  padding: 1.5rem 2.5rem 3rem;
  line-height: 1.9;
  color: #475569;
  font-size: 1.05rem;
  white-space: pre-wrap;
  border-top: 1px solid #f1f5f9;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .news-detail-card {
    border-radius: 0;
  }

  .news-detail-back {
    padding: 1rem 1.2rem 0;
  }

  .news-detail-meta {
    padding: 1.2rem 1.2rem 0;
  }

  .news-detail-title {
    font-size: 1.6rem;
    padding: 0.8rem 1.2rem 0;
  }

  .news-detail-content {
    padding: 1.2rem 1.2rem 2rem;
  }

  .news-detail-cover {
    height: 220px;
  }
}

/* ======================================
   TYPEWRITER EFFECT — Hero Section
   ====================================== */
.hero-typewriter {
  border-right: 3px solid var(--primary-color);
  padding-right: 5px;
  animation: blinkCursor 0.8s step-end infinite;
  white-space: nowrap;
}

@keyframes blinkCursor {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: var(--primary-color);
  }
}


/* ============================================================
   CONSOLIDATED MOBILE RESPONSIVENESS FIXES
   ============================================================ */

/* Carousel mobile: ensure full-width single slide with proper snap */
@media (max-width: 768px) {
  #homeRecentWorksGrid {
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
    transform: none !important;
    /* Disable transform slide on mobile */
  }

  #homeRecentWorksGrid::-webkit-scrollbar {
    display: none !important;
  }

  .carousel-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    scroll-snap-align: center !important;
  }
}

/* Category rows: taller for breathing room on mobile */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.6rem !important;
    line-height: 1.2 !important;
  }

  .hero-content p {
    font-size: 1rem !important;
    padding: 0 10px !important;
  }

  .hero-typewriter {
    white-space: normal !important;
    display: inline-block !important;
  }

  /* Taller category rows so they dont look cramped */
  .cat-row {
    min-height: 120px !important;
    height: auto !important;
    padding: 1.4rem 1.5rem !important;
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
  }

  .cat-content-split {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    padding: 0 !important;
    gap: 1.1rem !important;
    text-align: left !important;
  }

  .cat-icon-solo {
    font-size: 2.2rem !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    color: white !important;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  }

  .cat-text-and-btn {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    flex: 1 !important;
    gap: 0.3rem !important;
    pointer-events: auto !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .cat-text-and-btn h2 {
    font-size: 1.25rem !important;
    margin: 0 !important;
    line-height: 1.1 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Button: hidden by default on mobile, shown on .active (tap) with slide animation */
  .cat-row .btn-outline-light {
    display: inline-flex !important;
    padding: 0.4rem 0.9rem !important;
    font-size: 0.75rem !important;
    margin-top: 0.3rem !important;
    border-radius: 4px !important;
    border-width: 1.5px !important;
    opacity: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
    transform: translateY(-8px) !important;
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), max-height 0.35s ease !important;
  }

  /* Show button when row is .active (tapped) */
  .cat-row.active .btn-outline-light {
    opacity: 1 !important;
    max-height: 50px !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  /* Icon bounces when row becomes active */
  .cat-row.active .cat-icon-solo {
    transform: scale(1.2) rotate(-5deg) !important;
    color: var(--secondary-color) !important;
  }

  .about-hero {
    padding: 4rem 1rem 2rem !important;
  }

  .about-hero h1 {
    font-size: 2.5rem !important;
  }

  .about-hero p {
    font-size: 1.2rem !important;
    line-height: 1.5 !important;
  }

  .movements-grid {
    gap: 2rem !important;
    padding: 0 1rem;
  }

  .movement-card h3 {
    font-size: 1.5rem !important;
  }

  .movement-card p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }
}

/* ============================================================
   DYNAMIC BACKGROUND (Gallery, News, Register, Submit)
   ============================================================ */

.dynamic-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  background-color: var(--bg-light);
  /* Fallback base color */
  pointer-events: none;
}

/* Subtle dot pattern overlay */
.dynamic-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(16, 30, 57, 0.05) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  z-index: 1;
  /* Above blobs, below actual content */
}

/* Base blob styling */
.dynamic-bg .blob {
  position: absolute;
  filter: blur(90px);
  border-radius: 50%;
  opacity: 0.15;
  /* Very subtle so it doesn't clash with content */
  animation: floatBlob 20s infinite alternate ease-in-out;
}

/* Magenta/Pinkish Red Blob (#c6375d) */
.dynamic-bg .blob-1 {
  width: 45vw;
  height: 45vw;
  background-color: #c6375d;
  top: -15vh;
  left: -15vw;
  animation-delay: 0s;
}

/* Orange/Gold Blob (#e19640) */
.dynamic-bg .blob-2 {
  width: 45vw;
  height: 45vw;
  background-color: #e19640;
  bottom: -15vh;
  right: -15vw;
  animation-duration: 25s;
  animation-delay: -5s;
}

/* Dark Blue Blob (#101e39) - Lower opacity for dark color */
.dynamic-bg .blob-3 {
  width: 50vw;
  height: 50vw;
  background-color: #101e39;
  bottom: -10vh;
  left: -15vw;
  opacity: 0.05;
  animation-duration: 28s;
  animation-delay: -10s;
}

/* Lighter Orange/Gold Blob (#e8ad44) */
.dynamic-bg .blob-4 {
  width: 40vw;
  height: 40vw;
  background-color: #e8ad44;
  top: -10vh;
  right: -15vw;
  animation-duration: 22s;
  animation-delay: -2s;
}

/* Make content containers slightly translucent to show the underlying pattern gently */
.form-container,
.news-detail-card,
.news-card {
  background: rgba(255, 255, 255, 0.96) !important;
  /* Semi-transparent white */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 40px rgba(16, 30, 57, 0.08);
  /* Dark blue subtle shadow */
}

@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  33% {
    transform: translate(2vw, -2vh) scale(1.05) rotate(3deg);
  }

  66% {
    transform: translate(-1.5vw, 1.5vh) scale(0.95) rotate(-2deg);
  }

  100% {
    transform: translate(1vw, 2vh) scale(1.02) rotate(1deg);
  }
}

/* ====================================
   Countdown Badge for News/Events
   ==================================== */
.news-card-thumb {
  position: relative;
}

.countdown-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: badgePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.countdown-badge i {
  font-size: 0.85rem;
}

@keyframes badgePop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}