@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');

py-config, py-script {
    display: none;
}
/* ============================================================
   02. RESET & BASE
============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

h1,
p {
  margin: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background: radial-gradient(circle at top, #1a1a2e, #000);
  font-family: Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  top: -100px;
  left: -100px;
  filter: blur(120px);
  pointer-events: none;
}

input {
  padding: 12px;
  border-radius: 10px;
  background: transparent;
  color: white;
  font-size: 16px;
  border-color: aliceblue;
}

/* Prevent horizontal scroll on all sections */
#sectiontest,
#sectionReasoning,
#sectionmissing,
#sectionscoreboard,
#section_profile,
#sectionmain_page,
#section_new_profile,
#section_login {
  max-width: 100vw;
  overflow-x: hidden;
}


/* ============================================================
   03. ANIMATIONS & KEYFRAMES
============================================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pop {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes glow {
  from {
    box-shadow: 0 0 2px #4806f0;
  }

  to {
    box-shadow: 0 0 10px #f7fafa, 0 0 15px #f1f2f2;
  }
}

@keyframes dotBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(-10px);
    opacity: 0.4;
  }
}

/* Scoreboard card animations */
@keyframes cardDrop {
  from {
    opacity: 0;
    transform: translateY(-40px) scale(.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes sbFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes numPop {
  from {
    opacity: 0;
    transform: scale(.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes barIn {
  from {
    width: 0;
  }

  to {
    width: var(--bar-w);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }
}


/* ============================================================
   04. LOADER
============================================================ */
.loader-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader-popup {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  width: 280px;
  padding: 32px 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: fadeInUp 0.4s ease;
}

.loader-please-wait {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Trebuchet MS', sans-serif;
  margin: 0;
  letter-spacing: 1px;
}

.loader-message {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-family: 'Trebuchet MS', sans-serif;
  margin: 0;
  text-align: center;
  line-height: 1.6;
}

.loader-dots {
  display: flex;
  gap: 8px;
  margin: 4px 0;
}

.loader-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  animation: dotBounce 0.8s ease-in-out infinite;
}

.loader-dots span:nth-child(1) {
  animation-delay: 0s;
}

.loader-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.loader-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

.loader-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.loader-powered {
  color: rgba(255, 255, 255, 0.25);
  font-size: 10px;
  font-family: 'Trebuchet MS', sans-serif;
  margin: 0;
  letter-spacing: 3px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal.show {
  display: flex;
}

.modal-card {
  width: 95%;
  max-width: 620px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 24px 28px 20px;
  border-radius: 16px;
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  text-align: center;
  animation: popup .35s ease;
}

.modal-card h1 {
  color: #111111;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
}

.modal-card h2 {
  color: #555555;
  font-size: 13px;
  font-weight: 400;
  margin: 0 0 16px;
}

.modal-card h3.rules-title {
  display: inline-block;
  color: orangered;
  font-size: 17px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 8px;
  margin: 0 0 14px;
  text-decoration: underline;
}

.modal-card p {
  color: #222222;
  font-size: 12.5px;
  line-height: 1.5;
  margin: 0 0 6px;
  text-align: left;
  padding: 6px 12px;
  border-radius: 8px;
  background: #f9f9f9;
}

.modal-card p.important {
  background: #fff0f0;
  color: #cc0000;
  font-size: 12.5px;
  font-weight: 600;
  border-left: 3px solid #cc0000;
}

.modal-card h3.good-luck {
  color: #111111;
  font-size: 18px;
  font-weight: 700;
  margin: 14px 0 14px;
}

.btn-group-modal {
  display: flex;
  justify-content: center;
}

.close-btn-modal {
  padding: 10px 36px;
  border: none;
  border-radius: 10px;
  background: #84cc16;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
}

.close-btn-modal:hover {
  background: #65a30d;
}

@keyframes popup {
  from {
    opacity: 0;
    transform: scale(.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}


.background {
  min-height: 100vh;
  width: 100vw;
  background: linear-gradient(to right, #516395, #614385);
}

.background-login {
  min-height: 100vh;
  width: 100vw;
  padding: 20px;
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
}

.overlay {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.back-reasoning {
  background:
        radial-gradient(circle at top right,
            rgba(212,175,55,.18) 0%,
            transparent 30%),

        radial-gradient(circle at bottom left,
            rgba(255,215,0,.10) 0%,
            transparent 35%),

        linear-gradient(
            135deg,
            #050505 0%,
            #0d0d0d 30%,
            #151515 60%,
            #080808 100%
        );
  min-height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}

.sectionmain_page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d1b2e 0%, #0a1628 40%, #0d2240 70%, #1a3a5c 100%);
  position: relative;
  overflow: hidden;
}

.sectionmain_page::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.07), transparent);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.sectionmain_page::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.04), transparent);
  bottom: -80px;
  left: -80px;
  pointer-events: none;
}

.amber-badge {
  background: rgba(251, 146, 60, 0.1);
  border: 1px solid rgba(251, 146, 60, 0.25);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 11px;
  color: #fb923c;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.amber-logo {
  font-size: 58px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 6px;
  line-height: 1;
  position: relative;
  z-index: 1;
  font-family: 'Segoe UI', sans-serif;
}

.amber-logo span {
  color: #fb923c;
}

.amber-tag {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.amber-card {
  width: 100%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 28px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  z-index: 1;
}

.amber-btn1 {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background: #fb923c;
  color: #0d1b2e;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  margin-bottom: 10px;
  font-family: 'Segoe UI', sans-serif;
  transition: 0.2s;
  letter-spacing: 0.3px;
}

.amber-btn1:hover {
  background: #f97316;
  transform: translateY(-2px);
}

.amber-btn1:active {
  transform: translateY(0);
}

.amber-sep {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}

.amber-sl {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.amber-so {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
}

.amber-btn2 {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(251, 146, 60, 0.25);
  border-radius: 12px;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Segoe UI', sans-serif;
  transition: 0.2s;
}

.amber-btn2:hover {
  background: rgba(251, 146, 60, 0.08);
  color: #fff;
  border-color: rgba(251, 146, 60, 0.5);
}

.amber-feats {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
}

.amber-feat {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 12px 6px;
  text-align: center;
  transition: 0.2s;
}

.amber-feat:hover {
  background: rgba(251, 146, 60, 0.07);
  border-color: rgba(251, 146, 60, 0.2);
}

.amber-fi {
  font-size: 20px;
  margin-bottom: 5px;
}

.amber-fl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
}

.amber-foot {
  margin-top: 22px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.amber-foot span {
  color: #fb923c;
  font-weight: 600;
}

/* responsive */
@media (max-width: 480px) {
  .amber-logo {
    font-size: 38px;
  }

  .amber-card {
    padding: 22px 16px;
    border-radius: 18px;
  }

  .amber-btn1,
  .amber-btn2 {
    font-size: 14px;
    padding: 14px;
  }

  .amber-feats {
    gap: 6px;
  }
}

.container_main {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.logo_main {
  font-size: 70px;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #00e5ff, #ffffff, #00e5ff);
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0, 229, 255, .4);
}

.tagline_main {
  color: #b8c7ff;
  margin-bottom: 40px;
  font-size: 18px;
}

.card_main {
  width: 420px;
  padding: 40px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .4);
}

.btn_main {
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
  margin-bottom: 18px;
}

.create-btn {
  background: #00d4ff;
  color: #06132a;
}

.create-btn:hover {
  background: transparent;
  border: 2px solid #00d4ff;
  color: white;
}

.login-btn {
  background: transparent;
  color: white;
  border: 2px solid #00d4ff;
}

.login-btn:hover {
  background: #00d4ff;
  color: #06132a;
}

.footer {
  margin-top: 35px;
  color: #8fa5d6;
  font-size: 13px;
}

.footer span {
  color: #00d4ff;
  font-weight: 700;
}

.tag {
  color: #59AEFB;
  font-size: 24px;
}

.tag-highlighter {
  color: white;
  font-size: 20px;
  font-weight: 100;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  animation:float;
 
}


.login-card {
  width: 100%;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1px);
  padding: 35px 30px 0;
  border-radius: 38px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
  animation: slideUp .8s ease;
}

.login-head {
  font-size: 24px;
  font-weight: bold;
}

.main-heading {
  color: white;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

.para {
  color: white;
  font-size: 15px;
  font-weight: 200;
}

.ad {
  color: white;
  font-size: 13px;
  font-weight: 100;
}

.card-button {
  margin-top: 8px;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #00E5FF;
  color: #111;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .25);
}


.games {
  width: 100%;
  max-width: 300px;
  min-height: 250px;
  flex-shrink: 0;
  height: auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 38px;
  display: flex;
  flex-direction: column;
  margin: 15px;
  transition: 0.3s;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
  animation: slideUp .8s ease;
}

.games:hover {
  transform: translateY(-10px);
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.game-heading {
  color: white;
  font-size: 34px;
  font-weight: bold;
}

.game-para {
  color: white;
  font-size: 16px;
  font-weight: 100;
}

.game-image {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}

.animated-button {
  padding: 10px 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #000;
  background-color: white;
  border: none;
  border-radius: 15px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  outline: none;
  width: 80px;
}

.animated-button:hover {
  background-color: orange;
  box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
  color: #fff;
  transform: translateY(-7px);
}

.animated-button:active {
  transform: translateY(-1px);
}

.button-completed {
  border-radius: 20px;
  background-color: white;
  color: black;
  padding: 10px;
}

.tick-mark {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #22c55e;
  color: white;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  animation: pop 0.3s ease;
}


.button-syrx {
  --border-right: 6px;
  --text-stroke-color: rgba(255, 255, 255, 0.6);
  --animation-color: #37FF8B;
  --fs-size: 2em;
  margin: 0;
  height: auto;
  background: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
  letter-spacing: 3px;
  text-decoration: none;
  font-size: var(--fs-size);
  font-family: "Arial";
  position: relative;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px var(--text-stroke-color);
}

.hover-text {
  position: absolute;
  box-sizing: border-box;
  content: attr(data-text);
  color: var(--animation-color);
  width: 0%;
  inset: 0;
  border-right: var(--border-right) solid var(--animation-color);
  overflow: hidden;
  transition: 0.5s;
  -webkit-text-stroke: 1px var(--animation-color);
}

.button-syrx:hover .hover-text {
  width: 100%;
  filter: drop-shadow(0 0 23px var(--animation-color));
}


.head-reasoning {
  text-align: center;
  margin: 0 0 14px;
  font-family: "fantasy";
  font-size: clamp(18px, 5vw, 28px);
  color: bisque;
  letter-spacing: 1px;
}

.card-reasoning {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 18px 16px;
  border-radius: 18px;
  box-sizing: border-box;
  margin: 0 auto; border: 2px solid transparent;
    background:
        linear-gradient(#111,#111) padding-box,
        linear-gradient(135deg,
            #5A4300,
            #B8860B,
            #FFD700,
            #FFF1A8,
            #FFD700,
            #B8860B,
            #5A4300
        ) border-box;
}

.card-reasoning>.d-flex.flex-row {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

/* Exit button */
.exit {
  font-size: 12px;
  font-weight: 700;
  color: #ff6b6b;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
}

.Btn-exit {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 20px;
  left: 20px;
  overflow: hidden;
  transition-duration: .3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: rgb(255, 65, 65);
}

.Btn-exit:hover {
  width: 125px;
  border-radius: 40px;
}

.Btn-exit:hover .sign {
  width: 30%;
  padding-left: 20px;
}

.Btn-exit:hover .text {
  opacity: 1;
  width: 70%;
  padding-right: 10px;
}

.Btn-exit:active {
  transform: translate(2px, 2px);
}

.sign {
  width: 100%;
  transition-duration: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign svg {
  width: 17px;
}

.sign svg path {
  fill: white;
}

.text {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  transition-duration: .3s;
}

/* Question & options */
.question {
  font-size: clamp(15px, 4vw, 20px);
  font-family: monospace;
  color: lavenderblush;
  margin: 8px 0;
  text-align: center;
}

.question-number {
  font-size: 12px;
  color: #ccc;
  flex: 1;
  text-align: center;
  margin-left: 0 !important;
  white-space: nowrap;
}

.opt,
.opt_2,
.opt_3 {
  width: 100%;
  margin: 5px 0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  background: #1a1a1a;
  border: 1px solid #333;
  color: #ddd;
  font-size: 14px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.opt:hover,
.opt_2:hover,
.opt_3:hover {
  background: #222;
  border-color: #ffd700;
  color: #ffd700;
}

.msg {
  font-size: clamp(18px, 6vw, 28px);
  color: white;
  text-align: center;
  margin: 6px 0;
}

.timer {
  width: auto !important;
  min-width: 52px;
  height: auto !important;
  padding: 5px 10px !important;
  font-size: 12px !important;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.2;
  background-color: rgb(88, 85, 85);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 10px;
  border: 2px dashed transparent;
  transition: .4s;
}

.timer span:last-child {
  display: none;
}

.timer:hover {
  border: 2px dashed red;
  background-color: #fff;
  color: black;
}

.timer:active {
  background-color: #87dbd0;
}

.scoreboard {
  font-size: 12px;
  color: yellow;
  font-weight: bold;
  margin-left: 0 !important;
  white-space: nowrap;
  flex-shrink: 0;
}
.exit_scoreboard{
  background: #fb923c;
  color: #0d1b2e;
  padding: 6px 12px;
  border-radius: 8px;
  text-align:center;
  border: none;
}

.progress-bar-bg {
  height: 4px;
  background: #222;
  border-radius: 1px;
  margin: 10px 0 16px;
}

.progress-bar-fill {
  height: 2px;
  background: #ffd700;
  border-radius: 1px;
  width: 0%;
  transition: width 0.4s ease;
}


.nxt {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 10px;
  cursor: pointer;
  border-radius: 8px;
  width: 80px;
  height: 34px;
  border: 0;
  font-size: 13px;
  font-weight: 600;
  background: #ffd700;
  color: #111;
}

.pattern-instruction {
  color: #888;
  font-size: 11px;
  letter-spacing: 2px;
  text-align: center;
  margin: 6px 0 10px;
  text-transform: uppercase;
}

.pattern-grid {
  border-collapse: separate;
  border-spacing: 5px;
  width: 100%;
  max-width: 240px;
  margin: 0 auto 16px;
}

.pattern-grid td {
  width: clamp(34px, 10vw, 60px);
  height: clamp(34px, 10vw, 60px);
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  text-align: center;
  vertical-align: middle;
  font-size: clamp(14px, 4vw, 22px);
  font-weight: 700;
  color: white;
}

.pattern-grid td.missing {
  background: #1a1500;
  border: 2px dashed #ffd700;
  color: #ffd700;
  font-size: 26px;
}

.shape-row,
.color-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.shape-box {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shape-box.missing {
  background: #1a1500;
  border: 2px dashed #ffd700;
}

.shape-arrow {
  color: #444;
  font-size: 18px;
}

.color-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.color-circle.missing {
  background: transparent !important;
  border: 2px dashed #ffd700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd700;
  font-size: 22px;
  font-weight: 700;
}


.bg-scorecard {
  min-height: 100vh;
  background: #0d0f1c;
  overflow: hidden;
  padding: 32px 18px;
  display: flex;

}

.back_position {
  padding: 20px;

}

.score_back_btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 12px;
  background: #222;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.score_back_btn:hover {
  background: #FFD700;
  color: #000;
}

.brand {
  font-size: 30px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, .25);
  text-align: center;
  margin: 0 0 20px;
  font-family: 'Outfit', sans-serif;



}


.card-box2 {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 350px;
  margin-bottom: 14px;
}

.back-rank {
  background: linear-gradient(145deg,
      #fff7cc 0%,
      #ffd700 25%,
      #d4af37 50%,
      #b8860b 75%,
      #fff7cc 100%);
  border-radius: 18px;
  padding: 20px 12px;
  text-align: center;
  height: 230px;
  width: 190px;

  margin-top: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: #fff;

}

.back-iqscore {
  background: linear-gradient(145deg, #242424, #151515, #242424);
  border-radius: 18px;
  padding: 20px 12px;
  text-align: center;
  height: 280px;
  width: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: none;
  border: 2px solid #d4af37;





  color: #fff;
  animation: float 5s infinite;

}

.back-badge {
  background: linear-gradient(145deg,
      #ffffff 0%,
      #e0e0e0 25%,
      #c0c0c0 50%,
      #9e9e9e 75%,
      #ffffff 100%);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 20px 12px;
  text-align: center;
  min-height: 150px;
  height: 230px;
  width: 190px;
  margin-top: 0;


  color: #fff;

}

.badge-icon {
  color: white;
  margin-bottom: 12px;
  text-align: center;
}


@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-25px);
  }
}

.score-score {
  font-size: 10px !important;
  letter-spacing: 2px;
  color: white;
  font-weight: 600;
  margin: 0;
}

.score-rank,
.score-badge {
  font-size: 10px !important;
  letter-spacing: 2px;
  color: black;
  font-weight: 600;
  margin-bottom: 18px;
  margin: 0;

}

.badge-name {
  font-size: 16px;
  font-weight: 700;
  color: black;
  text-align: center;
}

#score {
  font-size: 38px !important;
  font-weight: 800;
  color: #fff;
  opacity: 0;
  animation: numPop .5s .7s ease both;
  animation-fill-mode: forwards;
}

.card-box1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 500px;
  margin-bottom: 20px;

}

.back-accuracy {
  background: linear-gradient(135deg, #059669, #047857);
  border-radius: 16px;
  padding: 18px 16px;
  text-align: left;
  height: 120px;
  width: 230px;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: white;
  animation: popDown 0.9s ease 1s forwards,
    1.5s infinite alternate;
}

.fast-ans {
  background: linear-gradient(135deg, #0e7490, #155e75);
  border-radius: 16px;
  padding: 18px 16px;
  text-align: left;
  height: 120px;
  width: 230px;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: white;
  animation: popDown 0.9s ease 2s forwards,
    1.5s infinite alternate;
}

.back-score {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 18px 16px;
  text-align: left;
  height: 120px;
  width: 230px;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: white;
  backdrop-filter: none;
  animation: popDown 0.9s ease 3s forwards,
    1.5s infinite alternate;
}

.back-streak {
  background: linear-gradient(135deg, #c2410c, #9a3412);
  border-radius: 16px;
  padding: 18px 16px;
  text-align: left;
  height: 120px;
  width: 230px;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: white;
  animation: popDown 0.9s ease 4s forwards,
    1.5s infinite alternate;
}

@keyframes popDown {
  from {
    opacity: 0;
    transform: translate3d(0, -200px, 0) scale(.85);
  }

  to {
    opacity: 1;
    transform: translate3d(0, -70, 0) scale(1);
  }
}

.colour-palate {
  font-size: 11px !important;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, .55);
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.content-palate {
  text-align: center;
}


.sb-bar-bg {
  height: 4px;
  background: rgba(255, 255, 255, .12);
  border-radius: 99px;
  overflow: hidden;
}

.sb-bar-fill {
  height: 100%;
  border-radius: 99px;
  background: rgba(255, 255, 255, .6);
  width: var(--bar-w, 0%);
  animation: barIn 1s ease both;
}

.back-accuracy .sb-bar-fill {
  animation-delay: .9s;
}

.fast-ans .sb-bar-fill {
  animation-delay: 1s;
}

.back-score .sb-bar-fill {
  animation-delay: 1.1s;
}

.back-streak .sb-bar-fill {
  animation-delay: 1.2s;
}


.compliment {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .5px;
  font-weight: 400;
  opacity: 0;
  animation: sbFadeUp .5s .9s ease both;
  animation-fill-mode: forwards;
}

#sectiontest {
  transition: none !important;
}

#sectionscoreboard {
  transition: none !important;
}

@media (max-width: 480px) {
  .logo_main {
    font-size: clamp(36px, 10vw, 56px);
  }

  .tagline_main {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .card_main {
    width: 100%;
    padding: 24px 16px;
    border-radius: 20px;
  }

  .btn_main {
    font-size: 15px;
    padding: 14px;
  }

  .login-card {
    width: 100%;
    padding: 24px 16px;
    border-radius: 24px;
  }

  .main-heading {
    font-size: 22px;
  }

  .background-login {
    padding: 20px 16px;
    width: 100%;
  }

  .games {
    max-width: 100%;
    margin: 10px 0;
    padding: 20px;
    border-radius: 24px;
  }

  .game-heading {
    font-size: 22px;
  }

  .card-reasoning {
    width: 100%;
    padding: 16px;
    border-radius: 16px;
  }

  .head-reasoning {
    font-size: 20px;
    margin: 12px;
  }

  .back-reasoning {
    padding: 16px;
    width: 100%;
  }

  .pattern-grid td {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .scoreboard {
    margin-left: 8px;
    font-size: 13px;
  }

  .msg {
    font-size: 24px;
  }

  .bg-scorecard {
    padding: 32px 16px;
  }

  .card-box2 {
    max-width: 100%;
  }

  .card-box1 {
    max-width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .back-rank,
  .back-badge {
    height: 150px;
    width: auto;
  }

  .back-iqscore {
    height: 180px;
    width: auto;
  }

  .score-score,
  .score-rank,
  .score-badge {
    font-size: 12px !important;
  }

  .badge-name {
    font-size: 12px;
  }

  .compliment {
    font-size: 12px;
  }

  .back-accuracy,
  .fast-ans,
  .back-score,
  .back-streak {
    height: auto;
    width: auto
  }

  .profile-card {
    width: 100%;
    padding: 20px 14px;
    border-radius: 20px;
  }

  .profile-page {
    padding: 20px 12px;
    align-items: flex-start;
  }

  .offcanvas {
    width: 260px;
    right: -260px;
    padding: 20px 16px 24px;
    border-radius: 0 0 0 12px;
  }

  #closeBtn {
    top: 12px;
    right: 12px;
    width: 26px;
    height: 26px;
    font-size: 14px;
  }

  .profile-icon {
    width: 60px;
    height: 60px;
    margin: 4px 0 8px;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.18);
  }

  #profile-name {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .oc-divider {
    width: 70%;
    margin: 10px 0 14px;
  }

  .profile-container {
    gap: 8px;
  }

  .profile-card {
    min-height: 66px;
    padding: 10px 8px;
    border-radius: 10px;
    gap: 3px;
  }

  .profile-card h1 {
    font-size: 9px !important;
    letter-spacing: 0.08em;
  }

  .profile-card p {
    font-size: 16px;
  }

}



@media (min-width: 481px) and (max-width: 768px) {
  .logo_main {
    font-size: clamp(48px, 10vw, 64px);
  }

  .card_main {
    width: 90%;
    max-width: 420px;
    padding: 32px 24px;
  }

.card-box1 {
  display: grid;
  grid-template-columns: 1fr 1fr ;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 500px;
  margin-bottom: 20px;

}
  .login-card {
    width: 90%;
    max-width: 420px;
  }

  .games {
    max-width: 280px;
  }

  .game-heading {
    font-size: 26px;
  }

  .card-reasoning {
    width: 90%;
    max-width: 400px;
  }

  .back-rank,
  .back-badge {
    margin-top: 0;
    width: 180px;
  }

  .profile-card {
    width: 90%;
    max-width: 460px;
  }


  .bg-scorecard {
    flex-wrap: wrap;
    height: auto;
    min-height: 100vh;
    gap: 16px;
    padding: 32px 16px;
    align-items: center;
  }
}


@media (min-width: 769px) and (max-width: 1280px) {
  .logo_main {
    font-size: 64px;
  }

  .games {
    max-width: 260px;
  }

  .card-reasoning {
    width: 380px;
  }

  .back-rank,
  .back-badge {
    margin-top: 0;
  }

  .card-reasoning {
    max-width: 480px;
    padding: 24px 22px;
  }

  .pattern-grid {
    max-width: 260px;
  }

  .head-reasoning {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .timer {
    font-size: 14px !important;
    padding: 6px 14px !important;
  }

  .exit {
    font-size: 13px;
  }

  .scoreboard {
    font-size: 14px;
  }

  .question-number {
    font-size: 13px;
  }

  .opt,
  .opt_2 {
    font-size: 15px;
    padding: 12px 14px;
  }

  .msg {
    font-size: 32px;
  }
}

@media (min-width: 1281px) {
  .logo_main {
    font-size: 80px;
  }

  .tagline_main {
    font-size: 22px;
  }

  .card_main {
    width: 480px;
    padding: 48px;
  }

  .btn_main {
    font-size: 20px;
    padding: 20px;
  }

  .games {
    max-width: 320px;
    padding: 36px;
  }

  .game-heading {
    font-size: 28px;
  }

  .card-reasoning {
    width: 440px;
    padding: 32px;
  }

  .head-reasoning {
    font-size: 36px;
  }

  .profile-card {
    width: 520px;
    padding: 40px;
  }

  .profile-header h1 {
    font-size: 36px;
  }

  .iq-box h2 {
    font-size: 48px;
  }

  .back-rank,
  .back-badge {
    margin-top: 0;
  }

  .card-reasoning {
    max-width: 560px;
    padding: 32px 28px;
  }

  .pattern-grid {
    max-width: 300px;
  }

  .pattern-grid td {
    width: 70px;
    height: 70px;
    font-size: 24px;
  }

  .opt,
  .opt_2 {
    font-size: 17px;
    padding: 14px 16px;
  }
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}

.offcanvas {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100vh;
  background: linear-gradient(145deg,
      #000000 0%,
      #111111 35%,
      #242424 70%,
      #D4AF37 100%);

  color: #FFD700;
  border: 2px solid #D4AF37;


  transition: right 0.4s ease;
  z-index: 1000;
  padding: 32px 28px 36px;

  border-radius: 0 0 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.offcanvas.show {
  right: 0;
}

.overlay-profile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

.overlay-profile.show {
  opacity: 1;
  visibility: visible;
}

#closeBtn {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #D4AF37;
  font-size: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

#closeBtn:hover {
  background: rgba(212, 175, 55, 0.12);
}

#closeBtnLb {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #D4AF37;
  font-size: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

#closeBtnLb:hover {
  background: rgba(212, 175, 55, 0.12);
}


.profile-icon {
  width: 84px;
  height: 84px;
  border-radius: 35%;
  border: 2px solid goldenrod;
  display: flex;
  align-items: center;
  justify-content: center;
  color:white;
  background: #1a1a22;
  margin: 8px 0 12px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.22), inset 0 0 10px rgba(212, 175, 55, 0.05);
}

#profile-name {
  font-family: Arial, Helvetica, sans-serif;
  color: goldenrod;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin: 0 0 6px;
  text-align: center;
}

.oc-divider {
  width: 75%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.4), transparent);
  margin: 14px 0 20px;
}


.profile-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: 100%;
  margin-top: 16px;
}


.profile-card {
  background: #1a1a22;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  padding: 16px 10px 14px;
  width: auto;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 2px;
  animation: float-profile 4s ease infinite;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.profile-card:hover {
  border-color: #D4AF37;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.22);
  transform: translateY(-2px);
}

.profile-card h1 {
  font-size: 10px !important;
  color: rgba(212, 175, 55, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  font-weight: 500;
  text-align: center;
}

.profile-card p {
  font-size: 22px;
  font-weight: 600;
  color: #D4AF37;
  font-family: 'Times New Roman', serif;
  margin: 0;
}

.profile-card-quote {
  grid-column: 1 / -1;
  background: #1a1a22;
  min-height: 60px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-left: 3px solid #D4AF37;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: float-profile 4s ease infinite;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.profile-card-quote:hover {
  border-color: #D4AF37;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.22);
}

.profile-card-quote h1 {
  font-size: 12px !important;
  color: rgba(212, 175, 55, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin: 0;
}

.profile-card-quote p {
  font-size: 13px;
  color: #e8e0c8;
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}

@keyframes float-profile {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

#offcanvas-lb {
  background: linear-gradient(145deg,
      #000000 0%,
      #111111 35%,
      #242424 70%,
      #D4AF37 100%);

  color: #FFD700;
  border: 2px solid #D4AF37;
 
  color: #dce8f5;
}

.lb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  gap: 12px;
  padding: 10px 14px;
  min-height: 50px;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.lb-rank-num {
  width: 50px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  color: #8899aa;
  flex-shrink: 0;
}

.lb-avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0f3460;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #e2b96f;
  flex-shrink: 0;
  font-weight: 600;
}

.lb-player-name {
  flex: 1;
  font-size: 14px;
  color: #dce8f5;
  width: 100px;
}

.lb-player-score {
  font-size: 13px;
  font-weight: 600;
  color: #e2b96f;
  width: 70px;
}

.lb-dots {
  text-align: center;
  padding: 1px 0;
  color: #8899aa;
  font-size: 0px;
  letter-spacing: 3px;
}

.lb-me-row {
  background: rgba(226, 185, 111, 0.12);
  border: 1px solid rgba(226, 185, 111, 0.35) !important;
  border-radius: 8px;
  margin: 4px 8px;
  padding: 9px 10px;
}

.lb-me-row .lb-player-name {
  color: #e2b96f;
  font-weight: 600;
}

.lb-me-row .lb-rank-num {
  color: #e2b96f;
}

.lb-me-badge {
  font-size: 10px;
  background: rgba(226, 185, 111, 0.2);
  color: #e2b96f;
  border-radius: 4px;
  padding: 1px 5px;
  margin-left: 5px;
}

.lb-top3 {
  background: rgba(255, 255, 255, 0.03);
}
/* ============================================================
   CONTACT OFFCANVAS
============================================================ */

#offcanvas-contact {
  background: #141418;
  color: #e8e0c8;
}

#closeBtnContact {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: 1px solid rgba(251, 146, 60, 0.45);
  color: #fb923c;
  font-size: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

#closeBtnContact:hover {
  background: rgba(251, 146, 60, 0.12);
}

.contact-support-label {
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  margin-bottom: 20px;
  align-self: flex-start;
}

.contact-brain-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(251, 146, 60, 0.1);
  border: 1px solid rgba(251, 146, 60, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 14px;
}

.contact-app-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.contact-app-name span {
  color: #fb923c;
}

.contact-app-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  margin-bottom: 28px;
}

.contact-link-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
}

.contact-link-btn:hover {
  background: rgba(251, 146, 60, 0.07);
  border-color: rgba(251, 146, 60, 0.25);
}

.contact-link-icon {
  font-size: 24px;
}

.contact-link-label {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.contact-fb-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  align-self: flex-start;
  margin-bottom: 10px;
}

.contact-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 14px;
  color: #fff;
  font-size: 13px;
  resize: none;
  outline: none;
  height: 110px;
  font-family: 'Segoe UI', sans-serif;
  margin-bottom: 12px;
}

.contact-textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.contact-textarea:focus {
  border-color: rgba(251, 146, 60, 0.4);
}

.contact-send-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: #fb923c;
  color: #0d1b2e;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 1px;
  transition: 0.2s;
}

.contact-send-btn:hover {
  background: #f97316;
}

.contact-footer {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.12);
  letter-spacing: 2px;
  margin-top: 24px;
}

.contact-footer span {
  color: rgba(251, 146, 60, 0.4);
}