@font-face {
  font-family: 'Lovelo';
  src: url('fonts/Lovelo Black.otf') format('opentype');
}

:root {
  --purple-light: #A45CFF;
  --purple-dark: #7821E6;
  --card-purple: rgba(116, 28, 228, 0.22);
  --white-soft: rgba(255,255,255,0.88);
}

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

html {
  scroll-behavior: smooth;
}

[hidden] {
  display: none !important;
}

body {
  min-height: 100vh;
  font-family: Arial, sans-serif;
  color: white;
  background: url('images/bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow-x: hidden;
}

.hero h1,
nav,
.logo,
.card h3,
.contact-btn,
.page h1,
.about-section h2,
.team-member h3 {
  font-family: 'Lovelo', Arial, sans-serif;
}

/* top bar */
.navbar {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 26px 4.5%;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-size: 23px;
  line-height: 0.9;
  transition: .2s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-icon-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: none;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

nav a {
  color: white;
  text-decoration: none;
  opacity: 0.92;
  padding-bottom: 8px;
  border-bottom: 2px solid transparent;
  transition: 0.2s ease;
}

nav a:hover,
nav a.active {
  color: var(--purple-light);
  border-bottom-color: var(--purple-light);
}

.contact-btn {
  color: white;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 999px;
  padding: 14px 28px;
  background: rgba(120,33,230,0.12);
  transition: .2s ease;
  white-space: nowrap;
}

.contact-btn:hover {
  transform: translateY(-3px);
}

/* home header */
.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  max-width: 1560px;
  min-height: 58vh;
  margin: 0 auto;
  padding: 50px 6.5% 34px;
  gap: clamp(70px, 7vw, 140px);
  overflow: visible;
}

.hero-text {
  max-width: 800px;
  justify-self: end;
  transform: none;
  overflow: visible;
}

.hero h1 {
  display: block;
  width: max-content;
  max-width: none;
  overflow: visible;
  font-size: clamp(70px, 7.5vw, 124px);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -4px;
  padding-right: 90px;
  margin-right: -90px;
}

.hero h1 span {
  display: block;
  width: max-content;
  max-width: none;
  overflow: visible;

  margin-left: clamp(58px, 7vw, 125px);
  padding-right: 110px;
  margin-right: -110px;

  background: linear-gradient(
  180deg,
  var(--purple-light) 20%,
  var(--purple-dark) 100%
);
	
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: none;
  filter: none;
}

.intro {
  margin-top: 24px;
  max-width: 570px;
  font-size: 22px;
  line-height: 1.45;
}

.credits {
  margin-top: 12px;
  font-size: 18px;
}

.credits a {
  color: var(--purple-light) !important;
  text-decoration: none;
}

.credits a:hover {
  text-shadow: 0 0 8px rgba(120,33,230,0.45);
}

.hero-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: visible;
}

.SSO-logo-img {
  width: min(52vw, 860px) !important;
  max-width: none !important;
  min-width: 700px;
  margin-left: 0 !important;
  filter: none;
  transition: .25s ease;
}

.SSO-logo-img:hover {
  transform: none;
}

/* intro area */
.about-section {
  position: relative;
  z-index: 2;
  padding: 20px 6% 44px;
}

.about-header {
  max-width: 1180px;
  margin: 0 auto 34px;
  text-align: center;
}

.about-section h2 {
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1;
  margin-bottom: 18px;
  background: linear-gradient(180deg, var(--purple-light) 20%, var(--purple-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-header p {
  max-width: 1120px;
  margin: 0 auto;
  font-size: 23px;
  line-height: 1.55;
  color: var(--white-soft);
}

.team-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(45px, 8vw, 120px);
  margin-top: 30px;
  flex-wrap: wrap;
}

.team-member {
  width: 390px;
  text-align: center;
  transition: .25s ease;
}

.team-member:hover {
  transform: translateY(-8px);
}

.team-member a {
  display: inline-block;
  border-radius: 50%;
}

.team-member img {
  width: 330px;
  height: 330px;
  object-fit: cover;
  border-radius: 50%;

  border: 3px solid rgba(200,130,255,0.95);

  background: #451C73;
  backdrop-filter: blur(10px);

  box-shadow:
    0 0 34px rgba(120,33,230,0.34),
    inset 0 0 55px rgba(0,0,0,0.34);

  transition: .25s ease;
}

.team-member img:hover {
  transform: scale(1.045);

  box-shadow:
    0 0 42px rgba(120,33,230,0.42),
    inset 0 0 38px rgba(0,0,0,0.18);
}
.team-member h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  color: #C882FF;
  font-size: 28px;
}

.team-member p {
  max-width: 370px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
  font-size: 20px;
}

/* page links */
.cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 0 4.5% 62px;
}

.card {
  min-height: 145px;
  padding: 24px;
  color: white;
  text-decoration: none;
  border: 1px solid var(--purple-light);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(170, 87, 255, 0.16), var(--card-purple));
  transition: .2s ease;
}

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

.card-icon {
  display: block;
  color: #C882FF;
  font-size: 38px;
  margin-bottom: 14px;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.card p {
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
}

footer {
  position: relative;
  z-index: 2;
  padding: 26px 6%;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  text-align: center;
}

.fade-in {
  animation: fadeInUp .7s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes floatLogo {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 1180px) {
  .navbar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding: 38px 6% 25px;
    gap: 28px;
  }

  .hero-text {
    justify-self: center;
    transform: none;
  }

  .hero h1 span {
    margin-left: clamp(34px, 7vw, 82px);
  }

  .intro {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-logo {
    justify-content: center;
  }

  .SSO-logo-img {
    width: min(92vw, 760px) !important;
    max-width: none !important;
    min-width: 0;
    margin-left: 0 !important;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 6%;
    padding-right: 6%;
  }
}

@media (max-width: 700px) {
  .navbar {
    padding: 22px;
  }

  nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  nav a {
    font-size: 14px;
  }

  .contact-btn {
    padding: 11px 20px;
  }

  .hero {
    padding: 20px 22px 30px;
  }

  .hero h1 {
    letter-spacing: -2px;
    font-size: clamp(54px, 16vw, 80px);
    padding-right: 36px;
    margin-right: -36px;
  }

  .hero h1 span {
    margin-left: clamp(18px, 6vw, 44px);
    padding-right: 50px;
    margin-right: -50px;
  }

  .intro {
    font-size: 18px;
  }

  .about-section {
    padding: 45px 22px 42px;
  }

  .about-header p {
    font-size: 17px;
  }

  .team-member {
    width: 100%;
  }

  .team-member img {
    width: min(78vw, 300px);
    height: min(78vw, 300px);
  }

  .cards {
    grid-template-columns: 1fr;
    padding: 0 22px 58px;
  }

  .SSO-logo-img {
    width: min(92vw, 500px) !important;
    max-width: none !important;
    min-width: 0;
  }
}

/* credits on the home page */
.contributors-section{
  margin-top: 90px;
  text-align:center;
}

.contributors-section h2{
  font-family:'Lovelo', Arial, sans-serif;
  font-size:clamp(42px,5vw,72px);
  margin-bottom:34px;
  background:linear-gradient(
    180deg,
    var(--purple-light) 20%,
    var(--purple-dark) 100%
  );
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.contributors-grid{
  justify-content:center;
}

.see-more-wrapper{
  margin-top:34px;
}

.see-more-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 30px;
  border-radius:999px;
  text-decoration:none;
  color:white;
  font-family:'Lovelo', Arial, sans-serif;
  border:1px solid rgba(255,255,255,0.85);
  background:rgba(120,33,230,0.12);
  transition:0.25s ease;
}

.see-more-btn:hover{
  transform:translateY(-4px);
  background:rgba(120,33,230,0.24);
}

@media (max-width: 700px){
  .contributors-section{
    margin-top: 65px;
  }
}

/* LIST PAGE */.list-page {
  position: relative;
  z-index: 2;
  padding: 42px 6% 80px;
}

.list-hero {
  max-width: 950px;
  margin: 0 auto 34px;
  text-align: center;
}

.list-label {
  color: var(--purple-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: 'Lovelo', Arial, sans-serif;
}

.list-hero h1 {
  font-family: 'Lovelo', Arial, sans-serif;
  font-size: clamp(58px, 7vw, 110px);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.list-hero h1 span {
  background: linear-gradient(180deg, var(--purple-light) 20%, var(--purple-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.list-hero p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 21px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
}

.list-tools {
  max-width: 1150px;
  margin: 0 auto 26px;
}

#searchInput {
  width: 100%;
  padding: 19px 24px;
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 999px;
  outline: none;
  background: rgba(20, 0, 40, 0.55);
  color: white;
  font-size: 18px;
  box-shadow: 0 0 25px rgba(170,87,255,0.14);
}

#searchInput::placeholder {
  color: rgba(255,255,255,0.55);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.filter-btn {
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 999px;
  padding: 11px 20px;
  background: rgba(120,33,230,0.12);
  color: white;
  cursor: pointer;
  font-family: 'Lovelo', Arial, sans-serif;
  transition: 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(120,33,230,0.24);
  transform: translateY(-2px);
}

.alphabet-nav {
  max-width: 1150px;
  margin: 0 auto 38px;
  padding: 12px 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 18px;
  background: rgba(20, 0, 40, 0.42);
}

.alphabet-nav a {
  min-width: 38px;
  padding: 8px;
  text-align: center;
  border-radius: 999px;
  color: white;
  text-decoration: none;
  font-family: 'Lovelo', Arial, sans-serif;
  transition: 0.2s ease;
}

.alphabet-nav a:hover {
  background: rgba(170,87,255,0.18);
  color: var(--purple-light);
  transform: translateY(-2px);
}

.alphabet-list {
  max-width: 1150px;
  margin: 0 auto;
}

.letter-section {
  scroll-margin-top: 95px;
  margin-bottom: 48px;
}

.letter-section h2 {
  font-family: 'Lovelo', Arial, sans-serif;
  font-size: 52px;
  color: white;
  margin-bottom: 20px;
  padding-left: 6px;
  text-shadow: 0 0 14px rgba(170,87,255,0.28);
}

.username-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.username-card {
  min-height: 105px;
  padding: 26px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255,255,255,0.95);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(170, 87, 255, 0.15), rgba(116, 28, 228, 0.22));
  transition: .2s ease;
}

.username-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 28px rgba(170,87,255,0.22);
}

.username-card h3 {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 24px;
}

.status {
  flex-shrink: 0;
  min-width: 96px;
  text-align: center;
  padding: 8px 14px;
  border-radius: 999px;
  color: white;
  font-size: 14px;
}

.status.found {
  background: rgba(40, 190, 95, 0.22);

  border: 1px solid rgba(40, 190, 95, 0.55);

  color: #B9FFD0;
}

.status.not-found {
  background: rgba(220, 60, 60, 0.18);

  border: 1px solid rgba(220, 60, 60, 0.45);

  color: #FFD0D0;
}

.no-results {
  display: none;
  text-align: center;
  margin: 35px auto;
  font-size: 20px;
  color: rgba(255,255,255,0.78);
}

@media (max-width: 900px) {
  .username-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .list-page {
    padding: 35px 22px 60px;
  }

  .list-hero h1 {
    font-size: clamp(52px, 15vw, 82px);
    letter-spacing: -2px;
  }

  .list-hero p {
    font-size: 17px;
  }

  .alphabet-nav {
    position: relative;
  }

  .username-grid {
    grid-template-columns: 1fr;
  }

  .username-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* LANGUAGE TABS */
.language-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 10px auto 28px;
}

.lang-tab {
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 999px;
  padding: 14px 24px;
  background: rgba(120,33,230,0.12);
  color: white;
  font-family: 'Lovelo', Arial, sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s ease;
}

.lang-tab:hover,
.lang-tab.active {
  background: rgba(120,33,230,0.24);
  transform: translateY(-2px);
}

.alphabet-list {
  display: none;
}

.alphabet-list.active-list {
  display: block;
}

/* STICKY ALPHABET BAR FIX */
.alphabet-nav {
  position: sticky !important;
  top: 12px;
  z-index: 100;
  backdrop-filter: blur(10px);
}

/* Keep it sticky on mobile too */
@media (max-width: 700px) {
  .alphabet-nav {
    position: sticky !important;
    top: 8px;
    z-index: 100;
  }
}

/* SPANISH COMING SOON */
.coming-soon-box {
  max-width: 900px;
  margin: 50px auto 80px;
  padding: 70px 30px;
  text-align: center;
  border: 1px solid rgba(170,87,255,0.65);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(170,87,255,0.15), rgba(116,28,228,0.22));
  box-shadow: 0 0 35px rgba(170,87,255,0.18);
}

.coming-soon-box h2 {
  font-family: 'Lovelo', Arial, sans-serif;
  color: white;
  font-size: clamp(48px, 7vw, 92px);
  margin-bottom: 18px;
}

.coming-soon-box p {
  color: rgba(255,255,255,0.88);
  font-size: 24px;
}

/* MINI STATS */
.list-mini-stats{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:16px;
  margin-bottom:16px;
  flex-wrap:wrap;
}

.mini-stat{
  display:flex;
  align-items:center;
  gap:8px;
  padding:9px 15px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.95);
  background:rgba(20,0,40,0.42);
  backdrop-filter:blur(8px);
}

.mini-stat strong{
  color:white;
  font-size:15px;
  font-family:'Lovelo', Arial, sans-serif;
}

.mini-stat span{
  color:rgba(255,255,255,0.72);
  font-size:13px;
}

/* SPANISH TEXT */
.coming-soon-box{
  display:none !important;
}

.coming-soon-text{
  text-align:center;
  color:white;
  font-family:'Lovelo', Arial, sans-serif;
  font-size:54px;
  margin:90px auto;
  opacity:0.92;
}

/* USERNAMES GALLERY PAGE */
.usernames-page {
  position: relative;
  z-index: 2;
  padding: 42px 6% 80px;
}

.usernames-hero {
  max-width: 950px;
  margin: 0 auto 34px;
  text-align: center;
}

.usernames-hero h1 {
  font-family: 'Lovelo', Arial, sans-serif;
  font-size: clamp(58px, 7vw, 110px);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.usernames-hero h1 span {
  background: linear-gradient(180deg, var(--purple-light) 20%, var(--purple-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.usernames-hero p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 21px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
}

.gallery-tools {
  max-width: 900px;
  margin: 0 auto 34px;
}

#gallerySearch {
  width: 100%;
  padding: 19px 24px;
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 999px;
  outline: none;
  background: rgba(20, 0, 40, 0.55);
  color: white;
  font-size: 18px;
  box-shadow: 0 0 25px rgba(170,87,255,0.14);
}

#gallerySearch::placeholder {
  color: rgba(255,255,255,0.55);
}

.username-gallery {
  max-width: 1450px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.photo-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.95);
  background: linear-gradient(180deg, rgba(170,87,255,0.14), rgba(116,28,228,0.20));
  transition: .2s ease;
  text-align: center;
}

.photo-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 30px rgba(170,87,255,0.24);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  display: block;
  margin-bottom: 16px;
  background: rgba(20, 0, 40, 0.55);
}

.photo-card h3 {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  margin-bottom: 4px;
}

.gallery-note {
  max-width: 850px;
  margin: 38px auto 0;
  text-align: center;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
}

.gallery-note strong {
  color: white;
}

@media (max-width: 1050px) {
  .username-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .username-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .usernames-page {
    padding: 35px 22px 60px;
  }

  .usernames-hero h1 {
    font-size: clamp(52px, 15vw, 82px);
    letter-spacing: -2px;
  }

  .usernames-hero p {
    font-size: 17px;
  }

  .photo-card {
    padding: 12px;
  }

  .photo-card h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .username-gallery {
    grid-template-columns: 1fr;
  }
}

/* USERNAMES GALLERY TABS */
.username-gallery {
  display: none;
}

.username-gallery.active-gallery {
  display: grid;
}

.coming-soon-gallery.active-gallery {
  display: block;
}

.photo-card:hover {
  transform: none;
  box-shadow: none;
}

.photo-card img {
  background-image: linear-gradient(180deg, rgba(170,87,255,0.12), rgba(116,28,228,0.18));
}

.coming-soon-text {
  text-align: center;
  color: white;
  font-family: 'Lovelo', Arial, sans-serif;
  font-size: clamp(42px, 7vw, 90px);
  margin: 90px auto;
  opacity: 0.92;
}

/* SPECIAL USERNAMES PAGE */
.special-page{
  position:relative;
  z-index:2;
  padding:42px 6% 90px;
}

.special-hero{
  max-width:1000px;
  margin:0 auto 42px;
  text-align:center;
}

.special-hero h1{
  font-family:'Lovelo', Arial, sans-serif;
  font-size:clamp(58px,7vw,115px);
  line-height:0.88;
  text-transform:uppercase;
  letter-spacing:-3px;
  margin-bottom:22px;
}

.special-hero h1 span{
  background:linear-gradient(180deg, var(--purple-light) 20%, var(--purple-dark) 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.special-hero p{
  max-width:820px;
  margin:0 auto;
  font-size:22px;
  line-height:1.6;
  color:rgba(255,255,255,0.88);
}

.special-nav{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:55px;
}

.special-nav a{
  border:2px solid rgba(255,255,255,0.85);
  border-radius:999px;
  padding:14px 24px;
  background:rgba(120,33,230,0.12);
  color:white;
  text-decoration:none;
  font-family:'Lovelo', Arial, sans-serif;
  font-size:15px;
  transition:0.2s ease;
}

.special-entry{
  max-width:1350px;
  margin:0 auto 90px;
  padding:42px;
  border-radius:34px;
  border:1px solid rgba(255,255,255,0.95);
  background:linear-gradient(180deg, rgba(170,87,255,0.10), rgba(116,28,228,0.18));
  backdrop-filter:blur(2px);
}

.special-top{
  text-align:center;
  margin-bottom:34px;
}

.special-top h2{
  font-family:'Lovelo', Arial, sans-serif;
  font-size:clamp(48px,6vw,92px);
  margin-bottom:20px;
}

.special-top p{
  max-width:1050px;
  margin:0 auto;
  font-size:22px;
  line-height:1.7;
  color:rgba(255,255,255,0.90);
}

.special-gallery{
  display:grid;
  gap:24px;
  align-items:center;
}

.special-gallery.single-image{
  grid-template-columns:1fr;
}

.special-gallery.two-images{
  grid-template-columns:1.5fr 1fr;
}

.special-gallery img{
  width:100%;
  border-radius:28px;
  border:none;
  box-shadow:none;
  display:block;
}

@media (max-width:900px){

  .special-entry{
    padding:28px;
  }

  .special-gallery.two-images{
    grid-template-columns:1fr;
  }

  .special-top p{
    font-size:18px;
  }

}

@media (max-width:700px){

  .special-page{
    padding:35px 22px 60px;
  }

  .special-entry{
    padding:22px;
    margin-bottom:55px;
  }

  .special-nav{
    gap:10px;
  }

  .special-nav a{
    width:100%;
    text-align:center;
  }

}

/* OTHER LANGUAGES PAGE */
.languages-page {
  position: relative;
  z-index: 2;
  padding: 42px 6% 80px;
}

.languages-hero {
  max-width: 1000px;
  margin: 0 auto 34px;
  text-align: center;
}

.languages-hero h1 {
  font-family: 'Lovelo', Arial, sans-serif;
  font-size: clamp(58px, 7vw, 110px);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.languages-hero h1 span {
  background: linear-gradient(180deg, var(--purple-light) 20%, var(--purple-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.languages-hero p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 21px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
}

.language-mode-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 8px auto 18px;
}

.language-tools {
  max-width: 1150px;
  margin: 0 auto 38px;
}

#languageSearch {
  width: 100%;
  padding: 19px 24px;
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 999px;
  outline: none;
  background: rgba(20, 0, 40, 0.55);
  color: white;
  font-size: 18px;
  box-shadow: 0 0 25px rgba(170,87,255,0.14);
}

#languageSearch::placeholder {
  color: rgba(255,255,255,0.55);
}

.language-list {
  max-width: 1150px;
  margin: 0 auto;
  display: none;
}

.language-list.active-language-list {
  display: block;
}

.language-archive {
  display: none;
}

.language-archive.active-language-archive {
  display: block;
}

.language-archive:not(.active-language-archive) {
  display: none !important;
}

.language-empty {
  text-align: center;
  color: rgba(255,255,255,0.78);
  font-size: 20px;
  margin: 50px auto;
}

@media (max-width: 700px) {
  .languages-page {
    padding: 35px 22px 60px;
  }

  .languages-hero h1 {
    font-size: clamp(52px, 15vw, 82px);
    letter-spacing: -2px;
  }

  .languages-hero p {
    font-size: 17px;
  }
}

/* SPECIAL THANKS PAGE */
.thanks-page {
  position: relative;
  z-index: 2;
  padding: 42px 6% 90px;
}

.thanks-hero {
  max-width: 1000px;
  margin: 0 auto 48px;
  text-align: center;
}

.thanks-hero h1 {
  font-family: 'Lovelo', Arial, sans-serif;
  font-size: clamp(58px, 7vw, 115px);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.thanks-hero h1 span {
  background: linear-gradient(180deg, var(--purple-light) 20%, var(--purple-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thanks-hero p {
  max-width: 850px;
  margin: 0 auto;
  color: rgba(255,255,255,0.88);
  font-size: 22px;
  line-height: 1.6;
}

.thanks-section {
  max-width: 1200px;
  margin: 0 auto;
}

.thanks-section h2 {
  font-family: 'Lovelo', Arial, sans-serif;
  color: white;
  font-size: clamp(38px, 4vw, 64px);
  text-align: center;
  margin-bottom: 30px;
}

.thanks-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.thanks-card {
  padding: 28px 30px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.95);
  background: linear-gradient(180deg, rgba(170,87,255,0.13), rgba(116,28,228,0.20));
  backdrop-filter: blur(10px);
}

.thanks-card h3 {
  font-family: 'Lovelo', Arial, sans-serif;
  color: var(--purple-light);
  font-size: 26px;
  margin-bottom: 10px;
}

.thanks-card p {
  color: rgba(255,255,255,0.88);
  font-size: 18px;
  line-height: 1.55;
}

.thanks-card.wide {
  grid-column: 1 / -1;
  text-align: center;
}

@media (max-width: 800px) {
  .thanks-page {
    padding: 35px 22px 60px;
  }

  .thanks-grid {
    grid-template-columns: 1fr;
  }

  .thanks-card.wide {
    text-align: left;
  }

  .thanks-hero p,
  .thanks-card p {
    font-size: 17px;
  }
}

/* SPECIAL THANKS FINAL TWEAKS */
.thanks-grid {
  grid-template-columns: 1fr !important;
  max-width: 900px;
  margin: 0 auto;
}

.thanks-card h3 {
  color: white !important;
}

.thanks-card {
  transition: .2s ease;
}

.thanks-card:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(255,255,255,0.95);
}

.thanks-card.wide {
  text-align: left;
}

/* CONTACT PAGE */
.contact-page {
  position: relative;
  z-index: 2;
  padding: 42px 6% 90px;
}

.contact-hero {
  max-width: 1000px;
  margin: 0 auto 42px;
  text-align: center;
}

.contact-hero h1 {
  font-family: 'Lovelo', Arial, sans-serif;
  font-size: clamp(58px, 7vw, 115px);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.contact-hero h1 span {
  background: linear-gradient(180deg, var(--purple-light) 20%, var(--purple-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-hero p {
  max-width: 850px;
  margin: 0 auto;
  color: rgba(255,255,255,0.88);
  font-size: 22px;
  line-height: 1.6;
}

.contact-layout {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.contact-form,
.contact-info {
  border: 1px solid rgba(170,87,255,0.55);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(170,87,255,0.13), rgba(116,28,228,0.20));
  backdrop-filter: blur(10px);
  box-shadow: 0 0 35px rgba(170,87,255,0.12);
}

.contact-form {
  padding: 34px;
}

.form-row {
  margin-bottom: 22px;
}

.form-row label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  color: white;
  font-size: 17px;
}

.form-row label span {
  color: var(--purple-light);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 17px 18px;
  border-radius: 16px;
  border: 1px solid rgba(170,87,255,0.48);
  outline: none;
  color: white;
  background: rgba(20, 0, 40, 0.55);
  font-size: 16px;
  font-family: Arial, sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.48);
}

.contact-form select {
  cursor: pointer;
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.upload-box {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 145px;
  padding: 26px;
  border: 2px dashed rgba(170,87,255,0.78);
  border-radius: 20px;
  background: rgba(170,87,255,0.13);
  text-align: center;
  cursor: pointer;
  transition: .2s ease;
}

.upload-box:hover {
  background: rgba(170,87,255,0.22);
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(170,87,255,0.20);
}

.upload-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(170,87,255,0.28);
  color: white;
  font-size: 34px;
  line-height: 1;
}

.upload-box strong {
  color: white;
  font-size: 17px;
}

.upload-box small {
  color: rgba(255,255,255,0.62);
}

.file-input {
  display: none;
}

.submit-btn {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 17px 26px;
  color: white;
  background: linear-gradient(180deg, var(--purple-light), var(--purple-dark));
  font-family: 'Lovelo', Arial, sans-serif;
  font-size: 18px;
  cursor: pointer;
  transition: .2s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(170,87,255,0.38);
}

.form-note {
  margin-top: 18px;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.form-note strong {
  color: white;
}

.contact-info {
  padding: 32px;
}

.contact-info h2 {
  font-family: 'Lovelo', Arial, sans-serif;
  color: white;
  font-size: 38px;
  margin-bottom: 22px;
}

.info-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(170,87,255,0.38);
  background: rgba(20,0,40,0.28);
  margin-bottom: 18px;
}

.info-card h3 {
  font-family: 'Lovelo', Arial, sans-serif;
  color: var(--purple-light);
  font-size: 22px;
  margin-bottom: 10px;
}

.info-card p {
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
}

@media (max-width: 950px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .contact-page {
    padding: 35px 22px 60px;
  }

  .contact-form,
  .contact-info {
    padding: 24px;
  }

  .contact-hero h1 {
    font-size: clamp(52px, 15vw, 82px);
    letter-spacing: -2px;
  }

  .contact-hero p {
    font-size: 17px;
  }
}

/* USERNAME MODAL */
.username-card{
  cursor:pointer;
}

.username-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.72);
  backdrop-filter:blur(8px);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition:0.25s ease;
  z-index:9999;
  padding:22px;
}

.username-modal.active{
  opacity:1;
  visibility:visible;
}

.username-modal-content{
  position:relative;
  width:min(100%, 560px);
  padding:38px;
  border-radius:28px;
  border:1px solid rgba(200,130,255,0.45);
  background: linear-gradient(
      180deg,
      rgba(102,72,165,0.92),
      rgba(72,42,128,0.95)
    );
  border: 1px solid rgba(255,255,255,0.95);
  box-shadow: 0 0 18px rgba(164,92,255,0.10);
}

.username-modal-content h2{
  font-family:'Lovelo', Arial, sans-serif;
  font-size:clamp(42px,5vw,68px);
  margin-bottom:26px;
  line-height:0.9;
  color:white;
}

.modal-info{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.modal-info p{
  font-size:20px;
  color:rgba(255,255,255,0.88);
  line-height:1.5;
}

.modal-info strong{
  color:#2E145A;
}

.close-modal{
  position:absolute;
  top:18px;
  right:20px;
  background:none;
  border:none;
  color:white;
  font-size:34px;
  cursor:pointer;
  transition:0.2s ease;
}

.close-modal:hover{
  color:#C882FF;
  transform:scale(1.08);
}

/* MODAL SOURCE LINKS */
.modal-info a{
  color: rgba(255,255,255,0.88);
  text-decoration: underline;
  word-break: break-word;
}

.modal-info a:hover{
  color: rgba(255,255,255,0.88);
  opacity: 0.85;
}

/* Modal source color */
.modal-content strong,
.modal-content b{
  color:#C882FF !important;
}

/* Close button hover */
.modal-close:hover,
.close-modal:hover{
  color:#5D2EA8 !important;
}

.special-nav a:hover{
  background:rgba(120,33,230,0.24);
  transform:translateY(-2px);
  border-color: rgba(170,87,255,0.78) !important;
  box-shadow: 0 0 30px rgba(170,87,255,0.24);
}

.special-links{
  margin-top:28px;
}

.special-link-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 22px;
  border:2px solid rgba(255,255,255,0.85);
  border-radius:999px;
  background:rgba(120,33,230,0.12);
  color:white;
  text-decoration:none;
  font-family:'Lovelo', Arial, sans-serif;
  font-size:14px;
  transition:.2s ease;
}

.special-link-btn:hover{
  background:rgba(120,33,230,0.24);
  transform:translateY(-2px);
}

/* SPECIAL THANKS SECTIONS SPACING */
.thanks-section{
  margin-bottom: 140px;
}

.thanks-section:last-of-type{
  margin-bottom: 0;
}

/* CLICKABLE THANKS CARDS SAME FORMAT */
.thanks-card-link{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.thanks-card-link h3{
  margin-bottom:0;
}

.thanks-card-link:hover{
  transform:translateY(-6px) scale(1.015);
  box-shadow:0 0 30px rgba(170,87,255,0.24);
  border-color:rgba(170,87,255,0.78) !important;
}

/* PERFECT THANKS CARD CENTERING */
.thanks-card{
  min-height:110px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:22px;
}

.thanks-card h3{
  margin:0 !important;
  width:100%;
  text-align:center;
}

.thanks-card-link h3{
  margin:0 !important;
  width:100%;
  text-align:center;
}

/* GLOBAL PINK/PURPLE HOVER BORDER EFFECT */
.card:hover,
.username-card:hover,
.lang-tab:hover,
.filter-btn:hover,
.special-link-btn:hover,
.info-card:hover{
  border-color: rgba(170,87,255,0.78) !important;
  box-shadow: 0 0 30px rgba(170,87,255,0.24);
}

/* CONTACT PAGE FINAL TWEAKS */
.contact-form,
.contact-info,
.info-card,
.contact-form input,
.contact-form select,
.contact-form textarea,
.upload-box{
  border-color: rgba(255,255,255,0.95) !important;
}

.info-card h3{
  color:white !important;
}

.submit-btn{
  background:#A45CFF !important;
}

/* REMOVE CONTACT INFO CARDS HOVER */
.info-card:hover{
  transform:none !important;
  box-shadow:none !important;
  border-color:rgba(255,255,255,0.95) !important;
}

/* FINAL GLOBAL CLEANUP */
body{
  background: url('images/bg.png') !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
}

.logo-icon-img{
  filter:none !important;
}

/* PAGE APPEARANCE ANIMATION */
.hero,
.about-section,
.cards,
.list-page,
.usernames-page,
.special-page,
.languages-page,
.thanks-page,
.contact-page,
footer{
  animation: fadeInUp .7s ease both;
}

/* INDEX BOTTOM CATEGORY CARDS */
.card{
  border-color:rgba(255,255,255,0.95) !important;
}

.card-icon{
  color:white !important;
}

.card:hover{
  border-color:rgba(170,87,255,0.78) !important;
  box-shadow:0 0 30px rgba(170,87,255,0.24) !important;
}

/* INDEX SEE MORE HOVER */
.see-more-btn:hover{
  border-color:rgba(170,87,255,0.78) !important;
  box-shadow:0 0 30px rgba(170,87,255,0.24) !important;
}

/* FINAL ANIMATION FIXES */
.navbar,
.navbar *,
.logo,
.logo *,
nav,
nav *,
.contact-btn{
  animation:none !important;
}

/* List page language tabs should appear with the page, not separately */
.list-page .language-tabs.fade-in{
  animation:none !important;
}

/* TAB SWITCH CONTENT ANIMATIONS */
/* List: animate the newly displayed list content */
.alphabet-list.active-list{
  animation: fadeInUp .7s ease both;
}

/* Other Languages: animate newly displayed list/archive content */
.language-list.active-language-list,
.language-archive.active-language-archive{
  animation: fadeInUp .7s ease both;
}

/* Keep the tab buttons themselves from animating separately on List */
.list-page .language-tabs.fade-in{
  animation:none !important;
}


/* MOBILE RESPONSIVE FINAL FIX */
@media (max-width: 700px) {
  body {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center top !important;
  }

  .navbar {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 18px 18px 24px !important;
  }

  .logo {
    justify-content: center !important;
    font-size: 24px !important;
    gap: 12px !important;
  }

  .logo-icon-img {
    width: 58px !important;
    height: 58px !important;
  }

  nav {
    width: 100% !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px 20px !important;
  }

  nav a {
    font-size: 15px !important;
    padding-bottom: 6px !important;
  }

  .contact-btn {
    padding: 12px 26px !important;
    font-size: 16px !important;
  }

  .hero {
    display: flex !important;
    flex-direction: column !important;
    min-height: auto !important;
    padding: 26px 18px 50px !important;
    gap: 28px !important;
    text-align: center !important;
  }

  .hero-text {
    width: 100% !important;
    max-width: 100% !important;
    justify-self: center !important;
  }

  .hero h1,
  .list-hero h1,
  .usernames-hero h1,
  .special-hero h1,
  .languages-hero h1,
  .thanks-hero h1,
  .contact-hero h1 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(52px, 17vw, 78px) !important;
    line-height: 0.9 !important;
    letter-spacing: -2px !important;
    padding: 0 !important;
    margin: 0 auto 22px !important;
    text-align: center !important;
  }

  .hero h1 span,
  .list-hero h1 span,
  .usernames-hero h1 span,
  .special-hero h1 span,
  .languages-hero h1 span,
  .thanks-hero h1 span,
  .contact-hero h1 span {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    padding-right: 0 !important;
    margin-right: 0 !important;
  }

  .hero-logo {
    width: 100% !important;
    justify-content: center !important;
  }

  .SSO-logo-img {
    width: min(90vw, 440px) !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .about-section {
    padding: 38px 20px 46px !important;
  }

  .about-section h2,
  .contributors-section h2,
  .thanks-section h2 {
    font-size: clamp(38px, 12vw, 58px) !important;
    line-height: 0.95 !important;
  }

  .about-header p,
  .special-hero p,
  .languages-hero p,
  .thanks-hero p,
  .contact-hero p {
    font-size: 17px !important;
    line-height: 1.5 !important;
  }

  .team-member {
    width: 100% !important;
  }

  .team-member img {
    width: min(74vw, 260px) !important;
    height: min(74vw, 260px) !important;
  }

  .team-member h3 {
    font-size: 24px !important;
  }

  .team-member p {
    font-size: 16px !important;
  }

  .cards {
    grid-template-columns: 1fr !important;
    padding: 0 20px 54px !important;
  }

  .card {
    min-height: 125px !important;
    padding: 22px !important;
  }

  .list-page,
  .usernames-page,
  .special-page,
  .languages-page,
  .thanks-page,
  .contact-page {
    padding: 24px 18px 64px !important;
  }

  .language-tabs,
  .language-mode-tabs,
  .filter-buttons,
  .special-nav {
    gap: 10px !important;
  }

  .lang-tab,
  .filter-btn,
  .special-nav a {
    font-size: 13px !important;
    padding: 10px 16px !important;
  }

  #searchInput,
  #gallerySearch,
  #languageSearch {
    font-size: 16px !important;
    padding: 15px 18px !important;
  }

  .list-mini-stats {
    gap: 10px !important;
  }

  .mini-stat {
    min-width: 100px !important;
    padding: 10px 14px !important;
  }

  .alphabet-nav {
    padding: 10px !important;
    gap: 7px !important;
  }

  .alphabet-nav a {
    min-width: 30px !important;
    font-size: 13px !important;
    padding: 7px !important;
  }

  .username-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .username-card {
    min-height: 92px !important;
    padding: 20px !important;
    gap: 12px !important;
  }

  .username-card h3 {
    font-size: 21px !important;
  }

  .status {
    min-width: 88px !important;
    font-size: 12px !important;
    padding: 7px 10px !important;
  }

  .username-gallery,
  .username-gallery.active-gallery {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .photo-card img {
    max-height: 360px !important;
    object-fit: contain !important;
  }

  .special-entry {
    padding: 24px 18px !important;
  }

  .special-top h2 {
    font-size: clamp(32px, 11vw, 52px) !important;
  }

  .special-top p {
    font-size: 16px !important;
  }

  .special-gallery,
  .special-gallery.two-images,
  .special-gallery.single-image {
    grid-template-columns: 1fr !important;
  }

  .thanks-section {
    margin-bottom: 82px !important;
  }

  .thanks-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .thanks-card {
    min-height: 92px !important;
  }

  .thanks-card h3 {
    font-size: 24px !important;
  }

  .contact-layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .contact-form,
  .contact-info {
    padding: 22px !important;
  }

  .username-modal-content {
    width: calc(100% - 34px) !important;
    padding: 34px 24px !important;
  }

  .username-modal-content h2 {
    font-size: clamp(34px, 12vw, 54px) !important;
    word-break: break-word !important;
  }

  footer {
    padding: 24px 20px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 420px) {
  nav a {
    font-size: 13px !important;
  }

  .logo {
    font-size: 22px !important;
  }

  .logo-icon-img {
    width: 52px !important;
    height: 52px !important;
  }

  .hero h1,
  .list-hero h1,
  .usernames-hero h1,
  .special-hero h1,
  .languages-hero h1,
  .thanks-hero h1,
  .contact-hero h1 {
    font-size: clamp(46px, 16vw, 66px) !important;
  }
}


/* MOBILE COMPACT + CLEAN LAYOUT */
@media (max-width: 700px) {
  body {
    background-image: url('images/bg-mobile.png') !important;
    background-size: cover !important;
    background-position: center top !important;
    background-attachment: scroll !important;
  }

  .navbar {
    gap: 12px !important;
    padding: 14px 16px 18px !important;
  }

  .logo {
    font-size: 20px !important;
    gap: 10px !important;
    line-height: 0.9 !important;
  }

  .logo-icon-img {
    width: 46px !important;
    height: 46px !important;
  }

  nav {
    gap: 8px 14px !important;
    max-width: 360px !important;
  }

  nav a {
    font-size: 12px !important;
    padding-bottom: 5px !important;
  }

  .contact-btn {
    padding: 10px 22px !important;
    font-size: 13px !important;
  }

  .hero {
    padding: 20px 18px 38px !important;
    gap: 18px !important;
  }

  .hero h1,
  .list-hero h1,
  .usernames-hero h1,
  .special-hero h1,
  .languages-hero h1,
  .thanks-hero h1,
  .contact-hero h1 {
    font-size: clamp(40px, 13vw, 58px) !important;
    line-height: 0.92 !important;
    letter-spacing: -1.5px !important;
    margin-bottom: 14px !important;
  }

  .SSO-logo-img {
    width: min(76vw, 340px) !important;
  }

  .about-section {
    padding: 28px 18px 36px !important;
  }

  .about-section h2,
  .contributors-section h2,
  .thanks-section h2 {
    font-size: clamp(32px, 10vw, 46px) !important;
    margin-bottom: 16px !important;
  }

  .about-header {
    margin-bottom: 22px !important;
  }

  .about-header p,
  .special-hero p,
  .languages-hero p,
  .thanks-hero p,
  .contact-hero p {
    font-size: 15px !important;
    line-height: 1.45 !important;
  }

  .team-grid {
    gap: 30px !important;
    margin-top: 22px !important;
  }

  .team-member img {
    width: min(62vw, 210px) !important;
    height: min(62vw, 210px) !important;
  }

  .team-member h3 {
    font-size: 20px !important;
    margin-top: 12px !important;
  }

  .team-member p {
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  .contributors-section {
    margin-top: 52px !important;
  }

  .see-more-wrapper {
    margin-top: 22px !important;
  }

  .see-more-btn {
    padding: 11px 24px !important;
    font-size: 13px !important;
  }

  .cards {
    gap: 12px !important;
    padding: 0 18px 42px !important;
  }

  .card {
    min-height: 96px !important;
    padding: 18px !important;
    border-radius: 16px !important;
  }

  .card-icon {
    font-size: 28px !important;
    margin-bottom: 8px !important;
  }

  .card h3 {
    font-size: 15px !important;
  }

  .card p {
    font-size: 13px !important;
  }

  .list-page,
  .usernames-page,
  .special-page,
  .languages-page,
  .thanks-page,
  .contact-page {
    padding: 18px 16px 52px !important;
  }

  .list-hero,
  .usernames-hero,
  .special-hero,
  .languages-hero,
  .thanks-hero,
  .contact-hero {
    margin-bottom: 22px !important;
  }

  .language-tabs,
  .language-mode-tabs,
  .filter-buttons,
  .special-nav {
    gap: 8px !important;
    margin-top: 14px !important;
  }

  .lang-tab,
  .filter-btn,
  .special-nav a {
    font-size: 11px !important;
    padding: 9px 13px !important;
    border-width: 1.5px !important;
  }

  #searchInput,
  #gallerySearch,
  #languageSearch {
    font-size: 14px !important;
    padding: 13px 16px !important;
  }

  .list-tools,
  .gallery-tools,
  .language-tools {
    margin-bottom: 20px !important;
  }

  .list-mini-stats {
    gap: 8px !important;
    margin-top: 14px !important;
  }

  .mini-stat {
    min-width: 82px !important;
    padding: 8px 12px !important;
    font-size: 12px !important;
  }

  .mini-stat strong {
    font-size: 16px !important;
  }

  .alphabet-nav {
    margin-bottom: 24px !important;
    padding: 8px !important;
    gap: 5px !important;
    border-radius: 15px !important;
  }

  .alphabet-nav a {
    min-width: 26px !important;
    font-size: 11px !important;
    padding: 6px !important;
  }

  .letter-section {
    margin-bottom: 34px !important;
  }

  .letter-section h2 {
    font-size: 38px !important;
    margin-bottom: 14px !important;
  }

  .username-grid {
    gap: 12px !important;
  }

  .username-card {
    min-height: 78px !important;
    padding: 16px 17px !important;
    border-radius: 18px !important;
  }

  .username-card h3 {
    font-size: 18px !important;
  }

  .status {
    min-width: 76px !important;
    font-size: 11px !important;
    padding: 6px 8px !important;
  }

  .username-gallery,
  .username-gallery.active-gallery {
    gap: 14px !important;
  }

  .photo-card {
    border-radius: 18px !important;
  }

  .photo-card img {
    max-height: 300px !important;
  }

  .photo-card h3 {
    font-size: 20px !important;
  }

  .special-entry {
    padding: 20px 16px !important;
    border-radius: 20px !important;
    margin-bottom: 30px !important;
  }

  .special-top h2 {
    font-size: clamp(28px, 9vw, 42px) !important;
  }

  .special-top p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .special-links {
    margin-top: 18px !important;
  }

  .special-link-btn {
    padding: 11px 18px !important;
    font-size: 12px !important;
  }

  .thanks-section {
    margin-bottom: 60px !important;
  }

  .thanks-grid {
    gap: 12px !important;
  }

  .thanks-card {
    min-height: 78px !important;
    padding: 18px !important;
    border-radius: 18px !important;
  }

  .thanks-card h3 {
    font-size: 20px !important;
  }

  .contact-layout {
    gap: 18px !important;
  }

  .contact-form,
  .contact-info {
    padding: 18px !important;
    border-radius: 20px !important;
  }

  .form-row label {
    font-size: 13px !important;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 14px !important;
    padding: 12px 14px !important;
  }

  .upload-box {
    padding: 18px !important;
  }

  .submit-btn {
    padding: 13px 20px !important;
    font-size: 14px !important;
  }

  .username-modal-content {
    width: calc(100% - 28px) !important;
    padding: 28px 20px !important;
    border-radius: 22px !important;
  }

  .username-modal-content h2 {
    font-size: clamp(30px, 10vw, 44px) !important;
  }

  footer {
    padding: 20px 18px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 420px) {
  .navbar {
    padding-top: 12px !important;
  }

  nav {
    gap: 7px 11px !important;
  }

  nav a {
    font-size: 11px !important;
  }

  .logo {
    font-size: 19px !important;
  }

  .logo-icon-img {
    width: 42px !important;
    height: 42px !important;
  }

  .contact-btn {
    font-size: 12px !important;
    padding: 9px 20px !important;
  }

  .hero h1,
  .list-hero h1,
  .usernames-hero h1,
  .special-hero h1,
  .languages-hero h1,
  .thanks-hero h1,
  .contact-hero h1 {
    font-size: clamp(38px, 12vw, 52px) !important;
  }

  .SSO-logo-img {
    width: min(72vw, 300px) !important;
  }
}


/* MOBILE BACKGROUND FIX */
@media (max-width: 700px) {
  html,
  body {
    background-image: url('images/bg-mobile.png') !important;
    background-size: 100% auto !important;
    background-position: top center !important;
    background-repeat: repeat-y !important;
    background-attachment: scroll !important;
    background-color: #4b1b82 !important;
  }

  body::before,
  body::after {
    background-image: none !important;
  }
}
