/* === GLOBAL RESET === */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: -1;
}
body {
  background-color: #000 !important;
}
html, body {
  margin: 0;
  padding: 0;
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
  html {
  scroll-behavior: smooth;
}
.section-header {
  width: 100%;
  padding: 0;
  margin: 0;
}
/* StickyBar Container */
.sticky-bar {
  box-sizing: border-box;
  position: sticky;
  top: 0;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  width: 100%;
  z-index: 1000;
}

/* Left & Right icon sections */
.left-icons, .right-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* FontAwesome icons */
.sticky-bar i {
  font-size: 20px;
  color: #fff;
}

/* Flag Dropdown Section */
.flag-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-flag {
  width: 26px;
  border-radius: 4px;
  cursor: pointer;
}

.flag-dropdown {
  display: none;
  position: absolute;
  top: 34px;
  background-color: #0a0a0a;
  padding: 6px 8px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 255, 180, 0.3);
  flex-direction: column;
  gap: 6px;
  z-index: 999;
}

.flag-dropdown img {
  width: 24px;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.2s;
}

.flag-dropdown img:hover {
  transform: scale(1.1);
}

/* Burger Menu */
.burger {
  width: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 16px;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}


/* ▼ Adaugă de aici în jos */
.menu {
  display: none;
  position: absolute;
  top: 50px;
  right: 20px;
  background-color: #000;
  border-radius: 10px;
  box-shadow: 0 0 15px #00ffc8;
  padding: 15px;
  width: 220px;
  z-index: 998;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  padding: 12px 0;
  border-bottom: 1px solid #222;
  text-align: center;
}

.menu li:last-child {
  border-bottom: none;
}

.menu a {
  color: #00ffc8;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}
/* === SECTION: HEADER – Branding Block === */

.branding-block {
  text-align: center;
  padding: 20px 0px 20px;
  background-color: #000;

  }
/* Pulse Glow Around Logo + Title + Subtitle */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0px rgba(0, 255, 200, 0.0);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 255, 200, 0.8);
  }
  100% {
    box-shadow: 0 0 0px rgba(0, 255, 200, 0.0);
  }
}

.glow-wrap {
  animation: pulseGlow 2.5s ease-in-out infinite;
  border-radius: 16px;
  padding: 30px 20px;
}

/* Logo */
.logo-wrapper img {
  width: 170px;
  max-width: 150%;
  margin-bottom: 10px;
}

/* Title */
.title-main {
  font-size: 45px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Subtitle */
.subtitle-text {
  font-size: 16px;
  color: #00ffc8;
  margin-bottom: 30px;
}

/* Description */
.description-text {
  font-size: 17px;
  color: #ccc;
  line-height: 1.6;
 
}
/* === MAIN CONTAINER === */
.main-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
/* === SECTION: MIDDLE CONTENT === */
.middle-content {
  background-color: #000; /* sau #000 dacă vrei full black */
  padding: 60px 0;
  text-align: center;
}

.middle-content .main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-text {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
/* === SECTION: LOGIN IMAGE === */
.login-image-section {
  text-align: center;
  padding: 60px 0;
  background: #000; /* dacă vrei să păstrezi fundalul full black */
}

.login-image {
  width: 100%;
  max-width: 550px; /* ajustează după gust */
  height: auto;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);/* efect subtil */
  border-radius: 20px; /* opțional: colțuri rotunjite */
}
/* Callout "But first..." */
.callout-text {
  @keyframes pulseGlow {
  0%, 100% {
    text-shadow: 0 0 5px #00ffc8, 0 0 10px #00ffc8;
  }
  50% {
    text-shadow: 0 0 20px #00ffc8, 0 0 30px #00ffc8;
  }
  }
  @keyframes popIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
  color: #00ffc8; /* verde Pairmo */
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-top: 40px;
  animation: popIn 0.6s ease-in-out, pulseGlow 2s infinite;
}
/* === SECTION: NEWSLETTER === */

/* Containerul principal al secțiunii */
.newsletter-section {
  text-align: center;
  padding: 60px 0;
  background: #000; /* păstrăm fundalul negru */
}

/* Titlul mare cu subscribe */
.newsletter-section h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Formularul */
.newsletter-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

/* Câmpul email */
.newsletter-form input[type="email"] {
  padding: 10px 15px;
  font-size: 15px;
  border: 2px solid #00ffc8;
  border-radius: 5px;
  background-color: #111;
  color: #fff;
  outline: none;
}

/* Butonul de submit */
.newsletter-form button {
  padding: 10px 20px;
  background-color: #00ffc8;
  color: #000;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.newsletter-form button:hover {
  background-color: #00b360;
}

/* Mesaj de succes */
#success-message {
  animation: slideInUp 0.5s ease-in-out forwards;
  font-size: 15px;
  font-weight: 500;
  color: #00ffc8;
  margin-top: 20px;
}

/* Slide In Up */
@keyframes slideInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* === SCROLL INDICATOR (Find out more...) === */
.scroll-indicator {
  background: #000;
  margin-top: 30px;
  text-align: center;
  animation: bounce 2s infinite;
}
/* === Container general pentru zona "Find out more" === */
.scroll-section {
  background: #000;
  padding: 30px 0;
}

/* Textul alb de tip paragraf */
.scroll-text {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

/* Săgeata ▼ cu stil alb și dimensiune mai mare */
.arrow-down {
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

/* === Efectul bounce aplicat containerului întreg === */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
/* === Intro Text Styling for Pairmo Domains === */
.pairmo-intro-title {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
  text-align: center;
}
.pairmo-intro {
  text-align: center;
  padding: 40px 20px;
  background: #000;/* fundal negru */
}

.pairmo-intro-line {
  color: #ccc; /* gri deschis ca în imagine */
  font-size: 17px;
  font-weight: 600;
  margin: 8px 0;
}

.pairmo-intro-tagline {
  color: #ccc;
  font-size: 16px;
  font-weight: 500;
  margin-top: 25px;
  font-style: italic;
}
/* === CAROUSEL STYLE === */
.carousel-section {
  background-color: #000;
  padding: 40px 0;
}

.carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding: 10px 20px;
}

.carousel-card {
  flex: 0 0 auto;
  width: 240px;
  background-color: #111;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  color: #ccc;
  scroll-snap-align: center;
  border: 2px solid transparent;
  transition: border 0.3s ease;
  cursor: pointer;
}

.carousel-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}

.carousel-card.active {
  border: 2px solid #00ffc8;
  color: #fff;
}
/* === MODES INTRO SECTION === */
.modes-intro-section {
  text-align: center;
  padding: 80px 20px;
  background: #000;
}
/* === Linie animabilă pentru MODES === */
.modes-line {
  width: 0;
  height: 2px;
  background-color: #00ffd0;
  margin: 0 auto 1.5rem;
  transition: width 1s ease, opacity 1s ease;
  opacity: 0;
}

.modes-line.visible {
  width: 80px;
  opacity: 1;
}
/* Gri + efect pop-up la scroll */
.modes-text {
  opacity: 0;
  transform: translateY(20px);
  color: #aaa;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
  transition: opacity 3s ease-in-out, transform 3s ease-in-out;
}

.modes-text.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Text cu efect de mărire și micșorare */
.modes-highlight {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-top: 35px;
  animation: pulseZoom 2.5s ease-in-out infinite;
}

@keyframes pulseZoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

<!-- === MODES CARDS GROUP CONTAINER === -->
<div class="modes-cards-group">
}
.modes-line.visible {
  width: 80px;
  opacity: 1;
}
.modes-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 15px;
}
.modes-line {
  width: 0;
  height: 2px;
  background-color: #00ffd0;
  margin: 0 auto 1.5rem;
  transition: width 1s ease, opacity 1s ease;
  opacity: 0;
}
  <!-- Tot ce ai acum de la primul card (Solo Mode)... -->
  <!-- ...până la finalul celui de-al treilea card + hint -->

</div>
.modes-cards-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 0;
  background-color: #000;
}
.mode-card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modes-cards-group .mode-card {
  width: 260px;
  height: 360px;
  perspective: 1000px;
  cursor: pointer;
  position: relative;
  margin: 0 auto;
  transform-style: preserve-3d;
}

.modes-cards-group .mode-card .card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mode-card .card-front img {
display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.mode-card .card-back {
  background-color: #111;
  color: #ccc;
  text-align: center;
  transform: rotateY(180deg);
  padding: 20px;
  box-sizing: border-box;
}

.card-back .card-text p {
  font-size: 18px;
  line-height: 1.6;
  margin: 8px 0;
  word-break: break-word;
}

/* Flip logic */
.mode-card.flipped .card-front {
  transform: rotateY(180deg);
}

.mode-card.flipped .card-back {
  transform: rotateY(360deg);
}
.card-hint1, card-hint2 {
  color: #888;
  font-size: 14px;
  text-align: center;
  margin-top: 12px;
  font-style: italic;
  opacity: 0.8;
}
.modes-cards-group {
  background: #000;
  padding: 80px 20px;
}
/* === USER HUB PRESENTATION === */
.userhub-section {
 background: #000; /* Fundal în ton cu restul */
  padding: 80px 20px;
  text-align: center;
}

.userhub-title {
  font-size: 28px;
  color: #fff;
  margin-bottom: 15px;
}

.userhub-subtitle {
  font-size: 18px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 40px;
}
.userhub-line {
  width: 0;
  height: 2px;
  background-color: #00ffd0;
  margin: 0 auto 1.5rem;
  transition: width 1s ease, opacity 1s ease;
  opacity: 0;
}

.userhub-line.visible {
  width: 80px;
  opacity: 1;
}

.userhub-mockup-glow {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding: 20px;
}

.userhub-mockup-img {
  width: 500px;
  max-width: 100%;
  border-radius: 24px;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 30px rgba(0, 255, 200, 0.1);
  margin: 0 auto;
}
.mockup-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.userhub-mockup-glow::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  border-radius: 40px;
  background: conic-gradient(
    from 0deg,
    rgba(0, 255, 200, 0.2),
    transparent 30%,
    rgba(0, 255, 200, 0.2),
    transparent 60%,
    rgba(0, 255, 200, 0.2)
  );
  filter: blur(25px);
  z-index: 1;
  animation: rotateGlow 8s linear infinite;
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* === BLOCK 1: INTERACTIVE INTRO === */
.interactive-intro-section {
  background-color: #000;
  padding: 4rem 1.5rem;
  color: #eee;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 3rem;
}
.interactive-line {
  width: 0;
  height: 2px;
  background-color: #00ffd0;
  margin: 0 auto 1.5rem;
  transition: width 1s ease, opacity 1s ease;
  opacity: 0;
}

.interactive-line.visible {
  width: 80px;
  opacity: 1;
}

.interactive-intro-title {
  font-size: 2rem;
  color: #00ffd0;
  margin-bottom: 1.2rem;
  font-weight: bold;
}

.interactive-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  color: #ccc;
}

.interactive-image-wrapper {
  display: flex;
  justify-content: center;
}

/* === GLOW ROTATIV MOCKUP BADGES === */
.interactive-mockup-glow {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding: 20px;
}

.interactive-mockup-img {
  width: 500px;
  max-width: 100%;
  border-radius: 24px;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 30px rgba(0, 255, 200, 0.1);
  margin: 0 auto;
}

.interactive-mockup-glow::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  border-radius: 40px;
  background: conic-gradient(
    from 0deg,
    rgba(0, 255, 200, 0.2),
    transparent 30%,
    rgba(0, 255, 200, 0.2),
    transparent 60%,
    rgba(0, 255, 200, 0.2)
  );
  filter: blur(25px);
  z-index: 1;
  animation: rotateGlow 8s linear infinite;
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* === BLOCK 2 STRUCTURE === */
.interactive-details-section {
  background-color: #000;
  padding: 4rem 1.5rem;
  color: #eee;
  border-radius: 20px;
}

.interactive-details-container {
  max-width: 800px;
  margin: 0 auto;
}

.interactive-block {
  background-color: #1a1a1a;
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.interactive-heading {
  font-size: 1.6rem;
  color: #00ffd0;
  margin-bottom: 1rem;
  font-weight: bold;
}

.interactive-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.interactive-note {
  font-size: 0.95rem;
  color: #aaa;
  font-style: italic;
}

/* === BADGE LIST NOUĂ === */
.badge-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.badge-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #1c1c1c;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
  color: #fff;
  font-weight: 500;
  box-shadow: inset 0 0 6px #00ffd0, 0 0 8px rgba(0,255,200,0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.badge-list li:hover {
  background-color: #222;
  transform: scale(1.015);
}

.badge-list span {
  font-size: 1.6rem;
}


@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@media (max-width: 480px) {
  .badge-list li {
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 0.85rem;         /* mai mic decât 0.95rem */
    padding: 0.5rem 0.7rem;     /* mai strâns */
    gap: 0.3rem;                /* opțional – reduce spațiul dintre emoji și text */
  }

  .badge-list li strong {
    font-size: 0.95rem;         /* și titlul de badge mai mic */
  }

  .badge-list span {
    font-size: 1rem;            /* emoji mai compact */
  }
}
.powerwallet-section {
  background-color: #000;
  color: #eee;
  padding: 4rem 1.5rem;
  text-align: center;
}

.powerwallet-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Titlu principal alb */
.powerwallet-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.powerwallet-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #ccc;
}

/* Carduri pentru puncte */
.points-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.points-card {
  background-color: #111;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0, 255, 200, 0.2);
  max-width: 300px;
  flex: 1 1 260px;
  color: #fff;
}

.points-card h3 {
  margin-bottom: 0.5rem;
  color: #00ffd0;
  font-size: 1.1rem;
}

/* Mesaj anti-presiune */
.no-pressure-message {
  background-color: #0a0a0a;
  border-left: 4px solid #00ffd0;
  padding: 1rem 1.5rem;
  margin: 2rem auto;
  max-width: 600px;
  color: #ccc;
  font-size: 0.95rem;
}

/* Carduri PowerZone */
.powerzone-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0 2rem;
}

.pz-card {
  background-color: #111;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  box-shadow: inset 0 0 10px #00ffd0;
  max-width: 260px;
  flex: 1 1 220px;
  color: #fff;
  font-size: 0.95rem;
}

.final-line {
  font-size: 1rem;
  color: #999;
  margin-top: 1rem;
}
/* Linie animabilă deasupra titlului */
.powerwallet-line {
  width: 0;
  height: 2px;
  background-color: #00ffd0;
  margin: 0 auto 1.5rem;
  transition: width 1s ease, opacity 1s ease;
  opacity: 0;
}

/* Când intră în view */
.powerwallet-line.visible {
  width: 80px;
  opacity: 1;
}
/* === POWERZONE INTRO SECTION === */
.powerzone-intro-section {
  text-align: center;
  padding: 80px 20px;
  background: #000;
}

.powerzone-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: bold;
  text-align: center;
}

.powerzone-subtitle {
  color: #aaa;
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

/* Linie animabilă */
.powerzone-line {
  width: 0;
  height: 2px;
  background-color: #00ffd0;
  margin: 40px auto 1rem;
  transition: width 1s ease, opacity 1s ease;
  opacity: 0;
  mmargin-bottom: 10px;
}

.powerzone-line.visible {
  width: 80px;
  opacity: 1;
}
/* === EXPLORE INTRO SECTION === */
.explore-intro-section {
  text-align: center;
  padding: 80px 20px;
  background: #000;
}

.explore-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: bold;
  text-align: center;
}

.explore-subtitle {
  color: #aaa;
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 3rem;
  background-color: #000;
}

/* Linie animabilă */
.explore-line {
  width: 0;
  height: 2px;
  background-color: #00ffd0;
  margin: 40px auto 1rem;
  transition: width 1s ease, opacity 1s ease;
  opacity: 0;
  margin-bottom: 10px;
}

.explore-line.visible {
  width: 80px;
  opacity: 1;
}
/* === EXPLORE STACK SECTION === */
/* === SWIPE INDICATOR SEPARAT === */
.swipe-indicator-section {
  background-color: #000;
  padding: 40px 20px;
  text-align: center;
}
.swipe-indicator-container {
  text-align: center;
  padding: 40px 20px;
  margin: 40px auto 20px auto;
  animation: fadeSwipeIn 1.8s ease forwards;
  background-color: #000;
}

.swipe-indicator-text {
  color: #00ffd0;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
  opacity: 0.85;
}

.swipe-indicator-arrow {
  width: 20px;
  height: 20px;
  border-left: 3px solid #00ffd0;
  border-bottom: 3px solid #00ffd0;
  transform: rotate(-45deg);
  margin: 0 auto;
  animation: swipeBounce 1.6s infinite;
}

@keyframes swipeBounce {
  0%, 100% {
    transform: rotate(-45deg) translateY(0);
  }
  50% {
    transform: rotate(-45deg) translateY(8px);
  }
}

@keyframes fadeSwipeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Stack cards SWIPEABLE */
.explore-stack-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #000;
  position: relative;
  overflow-x: hidden;
}

.card-stack-container {
  position: relative;
  width: 320px;
  height: 500px;
  margin: 0 auto;
  perspective: 1000px;
  background-color: transparent;
}

.swipe-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease, opacity 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 1;
  cursor: grab;
  user-select: none;
}

.top-card {
  z-index: 10;
}

.swipe-feedback {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  font-weight: bold;
  color: #00ffd0;
  background: rgba(0, 0, 0, 0.85);
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 99;
}

.swipe-feedback.show {
  opacity: 1;
}
.site-footer {
  background-color: #000;
  color: #888;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .card-stack-container {
    width: 290px;
    height: 460px;
  }

  .swipe-card {
    border-radius: 16px;
  }
}

.site-footer {
  text-align: center;
  padding: 40px 20px;
  background-color: #000; /* fundal negru ca restul paginii */
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #ccc;
}

.site-footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #00ffc8;
}

.footer-social {
  margin-top: 10px;
}

.footer-green {
  color: #00ffc8;
}
.footer-icon i {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  margin-right: 8px;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .menu {
    width: 150px;
    top: 35px;
    right: 10px;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 0 8px #00ffc8;
  }

  .menu li {
    padding: 6px 0;
  }

  .menu a {
    font-size: 13px;
    line-height: 1.2;
  }
}
@media (max-width: 480px) {
  .badge-list li {
    font-size: 0.9rem;
  }
  .userhub-mockup-img {
    width: 90%;
  }
}
/* === But First Custom Animation === */
.butfirst-wrapper {
  text-align: center;
  margin-top: 30px;
}

.butfirst-animated {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  animation: rotateScale 3s infinite;
  display: inline-block;
}

@keyframes rotateScale {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
  25% {
    transform: rotate(3deg) scale(1.05);
    opacity: 0.95;
  }
  50% {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
  75% {
    transform: rotate(-3deg) scale(1.05);
    opacity: 0.95;
  }
  100% {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
}
.language-switcher {
  display: inline-block;
  position: relative;
  margin-left: 12px;
}

#language-select {
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 6px;
  border: none;
  background: #f4f4f4;
  color: #333;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  outline: none;
  appearance: none;
}

#language-select:focus {
  outline: none;
  box-shadow: 0 0 0 2px #00b3b3;
}
