:root {
  --rouge: #e40918;
  --jaune: #e4cf1a;
  --vert: #15e378;
  --bleu: #5ee1e6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background-color: #1a0a0a;
  color: #fff8e1;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* --- DIAPORAMA DE FOND D'ÉCRAN --- */
#background-slideshow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.background-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  animation: kenburns 40s infinite;
}

.background-slide.active {
  opacity: 1;
}

#background-slideshow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
  z-index: 1;
  pointer-events: none;
}

#background-slideshow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(10, 5, 5, 0.3) 0%,
    rgba(10, 5, 5, 0.7) 100%
  );
  z-index: 0;
}

@keyframes kenburns {
  0%,
  100% {
    transform: scale(1) translate(0, 0);
    animation-timing-function: ease-in;
  }
  50% {
    transform: scale(1.1) translate(-2%, 2%);
    animation-timing-function: ease-out;
  }
}

/* Configuration mobile */
@media (max-width: 768px) {
  body {
    background-position: initial !important;
    background-repeat: initial !important;
    background-size: initial !important;
    background-attachment: initial !important;
  }
}

/* Menu de navigation pour desktop */
.top-nav {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  display: flex;
  gap: 15px;
}

.top-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.top-nav a:hover {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Menu hamburger */
.hamburger-menu {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: none;
}

.hamburger-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.08); /* Plus subtil */
  border: 1px solid rgba(255, 255, 255, 0.1); /* Bordure plus fine */
  border-radius: 50%;
  backdrop-filter: blur(24px); /* Blur augmenté */
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.05); /* Highlight subtil */
}

.hamburger-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 1px;
  transition: all 0.3s ease;
}

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

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

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

/* Menu mobile overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu {
  transform: scale(1);
}

.mobile-menu a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 15px 30px;
  margin: 10px 0;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.back-button {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.08); /* Plus subtil */
  backdrop-filter: blur(24px); /* Blur augmenté */
  border: 1px solid rgba(255, 255, 255, 0.1); /* Bordure plus fine */
  border-radius: 20px;
  padding: 8px 15px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.05); /* Highlight subtil */
}

.back-button:hover {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Layout */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cactus-icon {
  width: 100px;
  height: 100px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.title {
  font-size: 4rem;
  font-weight: 700; /* Légèrement plus gras pour le dégradé */
  color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.04em; /* Plus serré */
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Ombre ajustée pour le clip */
  margin: 0;
}

.subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-top: 1rem;
}

/* Grille des services (Index) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background: rgba(255, 255, 255, 0.05); /* Plus translucide */
  backdrop-filter: blur(24px); /* Blur augmenté */
  border: 1px solid rgba(255, 255, 255, 0.1); /* Bordure plus fine */
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.15),
    inset 1px 1px 0 rgba(255, 255, 255, 0.05); /* Effet "vrai" verre sur le bord supérieur gauche */
  border-radius: 24px;
  padding: 2.5rem 1.5rem; /* Plus d'espace (breathing room) */
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  cursor: pointer;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.service-button {
  display: inline-block;
  padding: 0.8rem 2rem; /* Bouton plus large */
  background: rgba(255, 255, 255, 0.1); /* Fond semi-transparent */
  backdrop-filter: blur(10px);
  color: white;
  text-decoration: none;
  border-radius: 30px; /* Style pilule */
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.1),
    inset 1px 1px 0 rgba(255, 255, 255, 0.08); /* Highlight intérieur */
}

/* Suppression de l'ancien effet ::before pour un hover plus clean */
.service-button:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.2),
    0 0 15px rgba(255, 255, 255, 0.1), /* Léger glow externe */
    inset 1px 1px 0 rgba(255, 255, 255, 0.1);
}

/* Section Films Récents (Index) */
.recent-movies-section {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.recent-movies {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  margin-top: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.movie-item {
  text-align: center;
  width: 100%;
  max-width: 180px;
  flex: 1 1 calc(20% - 20px);
  background: transparent;
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: none;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
}

.movie-item:hover {
  transform: translateY(-8px);
  box-shadow: none;
  background: transparent;
}

.movie-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.movie-item span {
  display: block;
  margin-top: 15px;
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hvr-grow-shadow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: box-shadow, transform;
  cursor: pointer;
}

.hvr-grow-shadow:hover,
.hvr-grow-shadow:focus,
.hvr-grow-shadow:active {
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}

/* Coming Soon Section Specifics */
.coming-soon-item {
  position: relative;
}

.type-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.type-film {
  background: var(--rouge);
  color: white;
}

.type-serie {
  background: var(--bleu);
  color: #1a0a0a;
}

.progress-container {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-top: 10px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--vert);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.status-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
  text-align: center;
}

/* Calendrier Section */
.calendar-section {
  position: relative;
  z-index: 1;
}

.movies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.movie-card {
  background: rgba(255, 255, 255, 0.05); /* Plus translucide */
  backdrop-filter: blur(24px); /* Blur augmenté */
  border: 1px solid rgba(255, 255, 255, 0.1); /* Bordure plus fine */
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.15),
    inset 1px 1px 0 rgba(255, 255, 255, 0.05); /* Effet "vrai" verre */
  border-radius: 24px;
  padding: 0;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 650px;
}

.movie-card:nth-child(even) {
  animation-delay: 0.2s;
}

.movie-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.movie-poster {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: contain;
  object-position: center center;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 20px 20px 0 0;
}

.movie-poster-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 3rem;
  border-radius: 20px 20px 0 0;
  position: relative;
}

.movie-card:hover .movie-poster {
  transform: scale(1.03);
}

.movie-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
}

.movie-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.6em;
}

.movie-overview {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
  max-height: 5.6em;
}

.movie-date {
  font-size: 1rem;
  color: var(--vert);
  font-weight: 500;
  background: rgba(21, 227, 120, 0.1);
  border: 1px solid rgba(21, 227, 120, 0.3);
  border-radius: 12px;
  padding: 0.5rem 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  margin-top: auto;
  flex-shrink: 0;
  align-self: stretch;
}

.loading {
  text-align: center;
  padding: 3rem;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.loading::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
  margin-left: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.error-message {
  background: rgba(228, 9, 24, 0.2);
  border: 1px solid rgba(228, 9, 24, 0.4);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  color: #ffffff;
  font-size: 1.1rem;
  margin-top: 2rem;
}

.empty-message {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  margin-top: 2rem;
}

/* Media Queries Responsive */
@media (max-width: 1200px) {
  .movie-item {
    flex: 1 1 calc(25% - 20px);
  }
}

@media (max-width: 900px) {
  .movie-item {
    flex: 1 1 calc(33.333% - 20px);
  }
}

@media (max-width: 768px) {
  .top-nav {
    display: none;
  }
  .hamburger-menu {
    display: block;
  }
  .container {
    padding: 2rem 1rem;
  }
  .title {
    font-size: 2.8rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-card {
    padding: 2.5rem 2rem;
  }
  .cactus-icon {
    width: 50px;
    height: 50px;
  }
  .service-icon {
    width: 70px;
    height: 70px;
  }
  .movie-item {
    flex: 1 1 calc(50% - 20px);
    max-width: 200px;
  }

  /* Calendrier specific mobile */
  .back-button {
    top: 15px;
    left: 15px;
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  .subtitle {
    font-size: 1rem;
  }
  .movies-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .movie-card {
    min-height: 600px;
  }
  .movie-poster,
  .movie-poster-placeholder {
    height: 350px;
  }
  .movie-info {
    padding: 1.2rem;
    min-height: 200px;
  }
  .movie-title {
    font-size: 1.2rem;
  }
  .movie-date {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .hamburger-menu {
    top: 15px;
    right: 15px;
  }
  .hamburger-btn {
    width: 45px;
    height: 45px;
  }
  .title {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .service-card {
    padding: 2rem 1.5rem;
  }
  .service-icon {
    width: 60px;
    height: 60px;
  }
  .movie-item {
    flex: 1 1 100%;
    max-width: 250px;
  }

  /* Calendrier specific small mobile */
  .movie-card {
    min-height: 550px;
  }
  .movie-poster,
  .movie-poster-placeholder {
    height: 300px;
  }
  .movie-info {
    padding: 1rem;
    min-height: 180px;
  }
  .movie-title {
    font-size: 1.1rem;
    -webkit-line-clamp: 3;
    min-height: 3.3em;
  }
  .movie-overview {
    -webkit-line-clamp: 3;
    max-height: 4.2em;
  }
  .movie-date {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
  }
}

@media (min-width: 1400px) {
  .movies-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  .movie-card {
    min-height: 700px;
  }
  .movie-info {
    min-height: 280px;
  }
}

/* --- FAQ & AIDES --- */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-card {
  background: rgba(255, 255, 255, 0.05); /* Plus translucide */
  backdrop-filter: blur(24px); /* Blur augmenté */
  border: 1px solid rgba(255, 255, 255, 0.1); /* Bordure plus fine */
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.15),
    inset 1px 1px 0 rgba(255, 255, 255, 0.05); /* Effet "vrai" verre */
  border-radius: 24px; /* Plus arrondi pour correspondre */
  padding: 2.5rem 2rem; /* Plus d'espace (breathing room) */
  transition: all 0.3s ease;
}

.faq-card:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.faq-question {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.faq-answer {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.faq-answer p {
  margin-bottom: 0.8rem;
}

.faq-answer ul {
  list-style-type: none;
  padding-left: 1rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
  position: relative;
}

.faq-answer li::before {
  content: "•";
  color: var(--vert);
  position: absolute;
  left: -1rem;
  font-weight: bold;
}

.faq-answer code {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-family: monospace;
  color: #5ee1e6;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
