/* ---------------------------------------------------------
- FONDATIONS ET LAYOUT GLOBAL
------------------------------------------------------------ */

* {
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: #ffffff;
  margin: 0;
  font-family: "Space Mono", monospace;
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  height: 100dvh;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
}

.app-scroll-area {
    height: calc(100% - 65px);
    overflow-y: auto;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

.app-scroll-area::-webkit-scrollbar {
    display: none;
}

body::-webkit-scrollbar {
  display: none;
}

/* - background glow effect - */
.glow-background {
  position: absolute;
  top: -670px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 900px;
  background-color: #ff1a1a;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.centred-component {
  display: block;
  width: auto;
  min-width: 100px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* -- Conteneur Principal des Cartes -- */
.case-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  max-width: 800px;
  padding: 15px 15px 25px 15px;
  min-width: 170px;
  box-sizing: border-box;
}

.overlay .case-container {
  max-width: 500px;
}

.main-container {
  display: none;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  min-width: 170px;
  margin: 0 auto;
  padding-bottom: 10px;
  opacity: 1;
  transition: opacity 0.15s ease;
}

.notif-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 800px;
  padding: 15px 15px 25px 15px;
  min-width: 170px;
  box-sizing: border-box;
}

/* --- Ajustements de flexibilité interne --- */
.case-container .title-header {
  flex: 0 0 100%;
}


/* ---------------------------------------------------------
- COMPOSANT : EN-TÊTES (HEADERS)
------------------------------------------------------------ */

.title-header {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
}

/* -- Décorations (Lignes latérales) -- */
.title-header::before,
.title-header::after {
  content: "";
  height: 2px;
  background-color: #ff1a1a;
}

.title-header::before {
  width: 15px;
}

.title-header::after {
  flex: 1;
}

/* -- Typographie du Titre -- */
.title-header .title {
  color: #ff1a1a;
  font-family: monospace;
  font-size: 18px;
  text-height: lighter;
}

/* ---------------------------------------------------------
- COMPOSANT : BOUTONS D'ACTION
------------------------------------------------------------ */

.btn {
  font-family: "Space Mono", monospace;
  font-size: 14px;
  padding: 10px 20px;
  cursor: pointer;
  transition: filter 0.3s ease;
  box-sizing: border-box;
  width: auto;
  text-align: center;
  flex: 1;
  min-width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* -- Variantes de Style -- */
.btn-primary {
  background-color: #ff1a1a;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
}

.btn-secondary {
  background-color: transparent;
  color: #ff1a1a;
  border: 1px solid #ff1a1a;
  border-radius: 15px;
}

/* -- Interactions et Icônes -- */
.btn-primary:hover,
.btn-secondary:hover {
  filter: brightness(0.75);
}

.icon {
  width: 35px;
  height: 35px;
  stroke: #000000;
  transition: stroke 0.3s;
}

/* ---------------------------------------------------------
- COMPOSANT : CARTES D'INFORMATION (CASES)
------------------------------------------------------------ */
.info-case {
  border: 1px solid #000000;
  padding: 10px 10px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  box-sizing: border-box;
  flex: 1;
  min-width: 160px;
  /* height: 130px; */
}

.disclosure-case {
  border: 1px solid #000000;
  padding: 10px 10px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition:
    border-color 0.3s,
    color 0.3s;
  color: #000000;
  flex: 1;
  min-width: 160px;
}

.disclosure-subtitle {
  font-size: 12px;
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  font-weight: lighter;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* -- Contenu textuel des cartes -- */
.case-title {
  font-size: 14px;
  margin: 0px 0px -10px 0;
  font-weight: lighter;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.case-subtitle {
  font-size: 12px;
  margin: 0;
  font-weight: lighter;
  color: rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* -- Spécificités Toggle-Case -- */

.toggle-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: auto;
}

/* ---------------------------------------------------------
- COMPOSANT : SYSTÈME DE SWITCH (TOGGLE)
------------------------------------------------------------ */

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 66px;
  height: 28px;
  cursor: pointer;
}

.toggle-input {
  display: none;
}

/* -- Structure interne du Switch -- */
.toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  border: 1px solid #000000;
  transition:
    background 0.3s,
    border-color 0.3s;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.indicator {
  position: absolute;
  left: 6px;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 1px solid #000000;
  border-radius: 50%;
  transition:
    transform 0.3s,
    background-color 0.3s,
    border-color 0.3s;
  z-index: 2;
}

/* --- Labels On/Off --- */
.label-on,
.label-off {
  position: absolute;
  font-size: 14px;
  font-weight: lighter;
  pointer-events: none;
}

.label-off {
  right: 8px;
  color: #000000;
}
.label-on {
  left: 10px;
  color: white;
  opacity: 0;
}

/* -- ÉTATS ACTIFS (Checked) -- */
/* --- Case --- */
.info-case:has(.toggle-input:checked) {
  border-color: #ff1a1a;
  color: #ff1a1a;
}

/* --- Switch --- */
.toggle-input:checked + .toggle-slider {
  background-color: #ff1a1a;
  border-color: #ff1a1a;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.toggle-input:checked + .toggle-slider .indicator {
  transform: translateX(34px);
  background-color: white;
  border-color: white;
}

.toggle-input:checked + .toggle-slider .label-off {
  opacity: 0;
}
.toggle-input:checked + .toggle-slider .label-on {
  opacity: 1;
}

/* ---------------------------------------------------------
- COMPOSANT : BARRE DE NAVIGATION (BOTTOM NAV)
------------------------------------------------------------ */

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 29px);
  max-width: 770px;
  background-color: #ffffff;
  border-top: 1px solid #000000;
  display: flex;
  justify-content: space-between;
  padding: 5px;
  box-sizing: border-box;
  z-index: 1000;
}

/* -- Éléments de Navigation -- */
.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-decoration: none;
  color: #000000;
  transition: opacity 0.2s;
}

/* --- Icônes et Labels --- */
.nav-icon {
  width: 26px;
  height: 26px;
  margin-bottom: 5px;
}

.nav-label {
  font-size: 12px;
  font-family: "Space Mono", monospace;
}

/* --- État Hover --- */
.nav-item:hover {
  opacity: 0.4;
}

/* -- État Actif pour la Navigation -- */
.nav-item.active .nav-label {
  color: #ff1a1a;
}

.nav-item.active .nav-icon {
  filter: invert(19%) sepia(73%) saturate(4819%) hue-rotate(352deg)
    brightness(105%) contrast(104%);
}

.nav-item.active {
  opacity: 1 !important;
}

/* =========================================
   SÉLECTEUR À CHOIX MULTIPLE
========================================= */

/* CONTENEUR GLOBAL */
.selector-container {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  width: fit-content;
}

/* VARIANTE VERTICALE */
.selector-container.is-vertical {
  flex-direction: column;
  width: 70% !important;
}

.selector-container input[type="radio"] {
  display: none;
}

.selector-item {
  background-color: #00000030;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition:
    background-color 0.2s ease-in-out,
    color 0.2s ease-in-out;
}

.selector-item.item-icon {
  padding: 10px;
  justify-content: center;
}

.selector-item.item-icon .icon {
  width: 35px;
  height: 35px;
  transition: filter 0.2s ease-in-out;
}

/* MODIFICATEUR : ÉLÉMENT AVEC TEXTE */
.selector-item.item-text {
  padding: 10px;
  justify-content: center;
  text-align: center;
  color: #000000;
  font-size: 14px;
}

input[type="radio"]:checked + .selector-item {
  background-color: #ff1a1a;
}

input[type="radio"]:checked + .selector-item.item-icon .icon {
  filter: brightness(0) invert(1);
}

input[type="radio"]:checked + .selector-item.item-text {
  color: #ffffff;
}

.selector-container.is-scrollable {
  overflow-x: auto;
  max-width: 100%;
  justify-content: flex-start;
}

.selector-container.is-scrollable::-webkit-scrollbar {
  display: none;
}

/* MODIFICATEUR : ÉLÉMENT AVEC WIDGET */
.selector-item.item-card {
  flex-direction: column;
  padding: 10px;
  gap: 8px;
  width: 110px;
  flex-shrink: 0;
  text-align: center;
  box-sizing: border-box;
}

.selector-item.item-card .card-image {
  width: 87%;
  height: auto;
  filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.4));
}

.selector-item.item-card .card-label {
  font-size: 12px;
  color: #000000;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

input[type="radio"]:checked + .selector-item.item-card .card-label {
  color: #ffffff;
}


/* =========================================
   ROW CONTAINER
========================================= */

.row-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
    box-sizing: border-box;
}

.text-left {
    color: #000000;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    font-size: 14px;
}

.text-right {
    color: rgba(0, 0, 0, 0.7);
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    font-size: 14px;
}

/* =========================================
   OVERLAYS
========================================= */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  align-items: flex-end;
  justify-content: center;
  will-change: transform, opacity;
}

/* --- OVERLAY PANEL --- */

.overlay-panel {
  width: 100%;
  max-width: 800px; 
  height: 90vh;
  background-color: #ffffff;
  border-radius: 30px 30px 0px 0px;
  display: flex;
  flex-direction: column;
  animation: OverlayslideUp 0.3s ease-out forwards;
  box-sizing: border-box;
}

.overlay-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.overlay-state-icon {
  width: 130px;
  margin: 35px;
  object-fit: contain;
  filter: invert(19%) sepia(73%) saturate(4819%) hue-rotate(352deg)
    brightness(105%) contrast(104%);
}

.overlay-title {
  font-size: 24px;
  color: #ff1a1a;
  font-family: "Space Mono", monospace;
  font-weight: lighter;
}

.overlay-state-text {
  font-size: 16px;
  font-family: "Space Mono", monospace;
  color: #000000;
  font-weight: bold;
}

.overlay-subtitle {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.7);
  font-family: "Space Mono", monospace;
  font-weight: lighter;
}

/* --- OVERLAY BODY --- */

.overlay-body {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0 80px 0;
}

.overlay-body::-webkit-scrollbar {
  display: none;
}

.overlay-fixed-header {
    position: relative;
    z-index: 20;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 30px;
    background-color: #ffffff;
    padding-top: 20px;
    padding-bottom: 10px;
    flex-shrink: 0;
    will-change: padding-bottom;
    transition: padding-bottom 0.1s ease-out;
}

.overlay-fixed-header::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255, 246, 234, 1) 0%, rgba(255, 246, 234, 0) 100%);
    pointer-events: none;
}

/* --- OVERLAY FOOTER --- */

.overlay-footer {
  padding: 0px 20px 30px 20px;
  display: flex;
  justify-content: center;
  margin-top: -100px;
  position: relative;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(255, 246, 234, 0) 0%, rgba(255, 246, 234, 1) 100%);
}

/* --- ANIMATIONS --- */

@keyframes OverlayslideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* =========================================
   Carousel
========================================= */

.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    width: 100%; 
    height: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 10px;
    gap: 30px;
}

.carousel-slide .selector-container {
    width: 100%;
    max-width: 300px;
    flex-shrink: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.carousel-indicators .dot {
    width: 6px;
    height: 6px;
    background-color: #00000030;
    border-radius: 1px;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-indicators .dot.active {
    background-color: #ff1a1a;
    border-radius: 20px;
    transform: scale(1.2);
}

/* =========================================
   Screen Maestro
========================================= */

.screen-maestro {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65%;
    max-width: 400px;
    background-color: #ffffff;
    margin: 0 auto;
    transform-origin: top center;
    will-change: width;
    transition: width 0.1s ease-out;
}

.maestro-widget {
  position: absolute;
  z-index: 10;
  width: 65%;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
}

.tactile-container {
  position: relative;
  display: inline-block;
}

.tactile-icon {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 26, 26, 0.6);
  border: 2px solid #ff1a1a;
  border-radius: 50%;
  z-index: 10;
}

/* Slide Down */
.anim-slide-down {
  animation: SlideDown 2s infinite ease-in-out;
}

@keyframes SlideDown {
  0% {
    top: 20%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
  20% {
    top: 20%;
    left: 50%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.8);
  }
  80% {
    top: 80%;
    left: 50%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    top: 80%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
}

/* Slide Up */
.anim-slide-up {
  animation: slideUp 2s infinite ease-in-out;
}
@keyframes slideUp {
  0% {
    top: 85%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
  20% {
    top: 85%;
    left: 50%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.8);
  }
  80% {
    top: 15%;
    left: 50%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    top: 15%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
}

/* press */
.anim-press {
  top: 50%;
  left: 50%;
  animation: press 2s infinite;
}

@keyframes press {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
  30% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.7);
    background-color: rgba(255, 26, 26, 0.9);
  }
  60% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
  100% {
    opacity: 0;
  }
}

/* press Long */
.anim-long-press {
  top: 50%;
  left: 50%;
  animation: longpress 2.5s infinite ease-in-out;
}
@keyframes longpress {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.7);
    box-shadow: 0 0 0 0px rgba(255, 26, 26, 0);
  }
  70% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.7);
    box-shadow: 0 0 0 20px rgba(255, 26, 26, 0);
  }
  80% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    opacity: 0;
  }
}

/* Double press */
.anim-double-press {
  top: 50%;
  left: 50%;
  animation: doublepress 2.5s infinite;
}
@keyframes doublepress {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.7);
  }
  30% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1.2);
  }
  40% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.7);
  }
  60% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
  100% {
    opacity: 0;
  }
}

/* =========================================
   Maestro Logo
========================================= */

.maestro-logo {
  width: 80%; 
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.025);
  opacity: 0;
  animation: start-end 2.5s forwards; 
}

@keyframes start-end {
  0% {
    transform: translate(-50%, -50%) scale(0.025);
    opacity: 0;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  45%, 65% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }

  99% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
  
  100% {
    transform: translate(-50%, -50%) scale(0.1);
    opacity: 0;
  }
}

/* =========================================
   Level Container
========================================= */

.level-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
  pointer-events: none;
  width: 100%;
  text-align: center;
}

.level-container.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.level-container.exited {
  transform: translate(-50%, -50%) scale(1.5);
  filter: blur(4px);
  opacity: 0;
  pointer-events: none;
}

.starting-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0px 20px 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px; 
  justify-content: center;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(255, 246, 234, 0) 0%, rgba(255, 246, 234, 1) 100%);
  opacity: 0;
  animation: push-up 1s cubic-bezier(0.16, 1, 0.3, 1) 5s forwards;
}

@keyframes push-up {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.starting-glow {
  position: absolute;
  top: -670px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 900px;
  background-color: #ff1a1a;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
  animation: splash 4s cubic-bezier(0.16, 1, 0.3, 1) 1.57s forwards;
}

@keyframes splash {
  50% {
    transform: translate(-50%, 40vh) scale(3); 
    opacity: 1;
  }

  85% {
    transform: translate(-50%, 300%) scale(2);
    opacity: 0;
  }

  85.1% {
    transform: translate(-50%, -100vh) scale(1);
    opacity: 0;
  }

  100% {
    transform: translate(-50%) scale(1);
    opacity: 1;
  }
}

.starting-icon{
  width: 40%;
  opacity: 0;
  animation: complete 3s ease-in-out infinite;
}

@keyframes complete {
  0% {
    opacity: 0.5;
    transform: rotate(0deg) scale(0.9);
  }
  50% {
    opacity: 1;
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    opacity: 0.5;
    transform: rotate(360deg) scale(0.9);
  }
}

/*Personality*/

.dynamic-sentence-container {
  padding: 10px;
  text-align: left;
}

.dynamic-sentence {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.8;
}

.controls-section {
  margin-top: 20px;
}

.var-tag {
  display: inline-block;
  border: 1px solid #ff1a1a;
  color: #ff1a1a;
  padding: 0px 8px;
  border-radius: 10px;
  transition: all 0.4s ease;
  cursor: pointer;
  margin-bottom: 6px;
}

.var-tag.active-var {
  background: #ff1a1a;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  border-radius: 100px;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.state-btn {
  background: #00000030;
  border: 1px solid #00000000;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 14px;
  color: #000000;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: 'Space Mono', monospace;
}

.state-btn.active {
  background: #ff1a1a;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  border-radius: 100px;
}