/* ==================================================
   CYFONII NFT — styles.css
   Pure CSS (used alongside Tailwind CSS CDN)
   ================================================== */

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { 
  background: #161721;
  /* background: #0B0D2F; */
  color: #fff; font-family: 'Poppins', sans-serif; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
p{
  color: #f6f6f6;
}
/* ---------- Logo special "o" ---------- */
.logo-o {
  display: inline-block;
  width: 1ch;
  height: 1.1em;
  background: url('https://demothemesflat.co/cyfoniikit/wp-content/uploads/2023/01/logo-01.png') center/contain no-repeat;
  text-indent: -9999px;
  overflow: hidden;
  vertical-align: middle;
  margin: 0 -1px;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0B0D2F; }
::-webkit-scrollbar-thumb { background: #7B2FBE; border-radius: 4px; }



/* =========================================
   DIVIDER
   ========================================= */
.divider {
  width: 50%;
  height: 1px;
  position: relative;
  top: 0;
  left: calc(50% - 480px);
  overflow: visible;
}
.divider-line {
  filter: blur(0px);
  background: linear-gradient(90deg, #ffffff00 0%, #ffffff69 50%, #ffffff00 100%);
  position: absolute;
  inset: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .divider {
    width: 100%;
    left: 0;
  }
}

/* =========================================
   HEADING PATTERN
   ========================================= */
.pattern-wrapper{
  width: 100%;
  max-width: 1000px;
  height: 600px;
  position: absolute;
  top: 0;
  left: calc(50% - min(1000px, 100%) / 2);
  overflow: hidden;
  z-index: -1;
  margin-top: -1px;
}
.pattern-art img{
  object-position: 0px -84px;
}
.pattern-gradient{
  filter: blur(50px);
  background-color: #794bfe40;
  border-radius: 50%;
  width: 579px;
  height: 565px;
  position: absolute;
  top: 0px;
  left: calc(50% - 289.5px);
  overflow: visible;
}
.pattern-gradient2{
  filter: blur(70px);
  background-color: #ff294d36;
  border-radius: 999px;
  flex: none;
  gap: 0;
  width: 533px;
  height: 552px;
  position: absolute;
  top: -50px;
  left: calc(50% - 266.5px);
  overflow: visible;
}
.pattern-mask {
  background: radial-gradient(43.2% 48.8715% at 50% 0, #0303032b 0%, #161721 100%);
  width: 100%;
  height: 1100px;
  position: absolute;
  top: 0;
  left: 0%;
  overflow: visible;
}

@media (max-width: 768px) {
  .pattern-art img{
    object-position: 0;
    transform: scale(2);
  }
}

/* =========================================
   CONTENT CENTER PATTERN
   ========================================= */

.glich-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 50%;
  z-index: -1;
  clip-path: border-box;
}
.glich-art {
  opacity: 0.4;
  height: 676px;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
}
.glich-art img{
  object-fit: contain;
  scale: 1.2;
}
.glich-gradiant {
  filter: blur(60px);
  aspect-ratio: 2.2075;
  background-color: #df1d4733;
  border-radius: 999px;
  width: 600px;
  height: 200px;
  overflow: visible;
  margin: auto;
}
.glich-mask {
  background: radial-gradient(40% 50% at 50% 50%, #ff000000 0%, #161721 100%);
  height: 100%;
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  overflow: visible;
  background-size: cover;
}
@media (max-width: 768px) {
  .glich-wrapper{
    transform: scale(2);
  }
  .glich-art{
    opacity: 1;
    bottom: 0;
  }
}


/* =========================================
   NAVBAR
   ========================================= */
#navbar {
  transition: background 0.3s, box-shadow 0.3s;
  
}
#navbar.scrolled {
  background: #161721;
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-links-box{
  background-color: rgb(255 255 255 / 10%);
  width: fit-content;
  margin-left: auto;
  padding: 6px 6px 6px 6px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: rgb(255 255 255 / 10%);
  border-radius: 50px;
}
.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  padding: 4px 0;
  letter-spacing: 1px;
  padding: 6px 16px;
}
.nav-link:hover { color: #fff; }

.nav-link.active{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 300;
  border-radius: 50px;
  cursor: pointer;

  font-family: Orbitron, sans-serif;
  letter-spacing: 1.5px;

  background: linear-gradient(90deg, #703ffe, #b392ff, #703ffe);
  background-size: 200% auto;

  box-shadow: 0 0 30px rgba(123,47,190,0.35);
  transition: background-position 0.3s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  background: #12153D;
  border: 1px solid #1E2356;
  border-radius: 10px;
  padding: 8px 0;
  min-width: 148px;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown-menu a:hover { color: #fff; background: rgba(255,255,255,0.04); }


/* =========================================
   HERO
   ========================================= */
.hero-section {
  /*background: #0B0D2F; */
  background: #161721;
  position: relative;
  background-color: rgb(255 255 255 / 0%);
  padding: 6px 6px 6px 6px;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(255 255 255 / 53%);
  border-radius: 30px;
  min-height: 500px;
}

/* Dot grid overlay */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgb(255 255 255 / 20%) 1px, #00000000 1px);
  background-size: 26px 26px;
  pointer-events: none;
  width: 98%;
  height: 96%;
  margin: auto;
}

/* Floating dots */
.dot {
  position: absolute;
  background: rgba(255,255,255,0.65);
  border-radius: 50%;
  pointer-events: none;
}

/* Cross marks */
.cross-mark {
  position: absolute;
  width: 8px;
  height: 8px;
  pointer-events: none;
  opacity: 0.4;
}
.cross-mark::before,
.cross-mark::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.8);
}
.cross-mark::before { width: 1px; height: 8px; left: 50%; transform: translateX(-50%); }
.cross-mark::after  { width: 8px; height: 1px; top: 50%;  transform: translateY(-50%); }

/* Hero heading */
.hero-heading {
  font-size: clamp(6.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}


/* buttons */

.btn-glass{
  display: inline-block;
  background-color: rgb(255 255 255 / 10%);
  margin: 0px 0px 0px 0px;
  padding: 6px 6px 6px 6px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: rgb(255 255 255 / 10%);
  border-radius: 10px 10px 10px 10px;
}
.btn-gradiant {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  padding: 12px 34px;
  border-radius: 10px;
  cursor: pointer;

  font-family: Orbitron, sans-serif;
  letter-spacing: 1.5px;

  background: linear-gradient(90deg, #703ffe, #b392ff, #703ffe);
  background-size: 200% auto;

  box-shadow: 0 0 30px rgba(123,47,190,0.35);
  transition: background-position 0.3s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.btn-gradiant:hover {
  background-position: right center;
}

.btn-sm{
  padding: 6px 20px;
  border-radius: 6px;
}
/* NFT Hero image card */
.hero-nft-img {
  width: 100%;
  height: 100%;
  max-width:500px;
  object-fit: cover;
}

/* Current Bid badge */
.badge-bid {
  position: absolute;
  top: 22%;
  right: 2%;
  z-index: 10;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  min-width: 160px;
}

.badge-bid .h5 { color: rgb(123 47 190); font-size: 26px;}
.badge-bid p { color: #000; font-size: 20px; font-weight: 500; }

/* User badge */
.badge-user {
  position: absolute;
  bottom: 10%;
  left: 2%;
  z-index: 10;
  background: #fff;
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}
.user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.badge-user .h5 { color: rgb(123 47 190); font-size: 26px; }
.badge-user p { color: #000; font-size: 18px; font-weight: 500; }

@media (max-width: 768px) {
  .hero-section::before {
      height: 100%;
  }
  .hero-heading {
      font-size: clamp(3rem, 5vw, 4rem);
  }

  .badge-bid {
      top: 8%;
      right: -4%;
      border-radius: 8px;
      padding: 6px 12px;
      gap: 12px;
      min-width: 120px;
  }

  .user-avatar {
    width: 40px;
    height: 40px;
  }
  .badge-bid .h5, .badge-user .h5 {font-size: 17px; }
  .badge-bid p, .badge-user p {font-size: 14px;}
  
}

/* Scroll indicator */
.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100% { opacity: 0.3; }
  50% { opacity: 1; }
}


/* =========================================
   SECTION UPLOAD TOOL
   ========================================= */

.upload-file-wrapper{
  color: #f6f6f6;
  background-image: linear-gradient(#262626, #161721);
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px;
  position: relative;
  box-shadow: 0 -1px 0.5px 0.8px #c7c7c74a;
}
.upload-file-box{
  z-index: 1;
  background-color: #535353;
  background-image: linear-gradient(45deg, #000000bf, #fff0 84%), radial-gradient(circle, #868686, #e6e6e60d 31%, #fff0 39%);
  border-radius: 12px;
  margin-top: 24px;
  padding: 4px;
  position: relative;
  box-shadow: 0 0 10px #0000004d;
}
.upload-file{
    border: 1px dashed #666;
    cursor: pointer;
    border-radius: 8px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 24px;
    display: flex;
}
.upload-icon-gradiant {
    background: linear-gradient(90deg, #703ffe, #b392ff, #703ffe);
    background-size: 200% auto;
    box-shadow: 0 0 30px rgba(123, 47, 190, 0.35);
    transition: background-position 0.3s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.upload-file:hover .upload-icon-gradiant {
  background-position: right center;
}

.result-wrapper {
    color: #f6f6f6;
    background-image: linear-gradient(#262626, #161721);
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    padding: 24px;
    position: relative;
    box-shadow: 0 -1px 0.5px 0.8px #c7c7c74a;
}

.result-card-wrapper{
  z-index: 1;
  background-color: #535353;
  background-image: linear-gradient(45deg, #000000bf, #fff0 84%), radial-gradient(circle, #868686, #e6e6e60d 31%, #fff0 39%);
  border-radius: 12px;
  padding: 4px;
  position: relative;
  box-shadow: 0 0.5px 10px #00000066;
}

.result-card{
    border: 1px dashed #666;
    cursor: pointer;
    border-radius: 8px;
    height: 100%;
    padding: 14px;
}


/* =========================================
   SPECIALITY CARDS
   ========================================= */
.work-section{
  margin-bottom: -80px;
}
.spec-card-wrapper {
  z-index: 1;
  background-color: #535353;
  background-image: linear-gradient(45deg, #000000bf, #fff0 100%), radial-gradient(circle, #86868675, #e6e6e600 40%, #ffffff00 0%);
  border-radius: 8px;
  padding: 4px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
  border-color: #7B2FBE;
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgb(123 47 190 / 1%);
}
.spec-card{
  border: 1px dashed #666;
  border-radius: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 28px 24px;
}
.spec-num {
  position: absolute;
  top: 3px;
  right: 18px;
  font-family: 'Zen Dots', cursive;
  font-size: 3.5rem;
  color: rgb(176 142 255 / 57%);
  pointer-events: none;
}
.spec-title {
  font-family: 'Zen Dots', cursive;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
.spec-desc {
  font-size: 15px;
  color: #e3e3e3;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .work-section{
    margin-bottom: 0px;
  }
}

/* =========================================
   ROADMAP
   ========================================= */

.roadmap-timeline {
  position: relative;
  padding: 0 20px;
}
.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 1px;
  margin-top: 14px;
  background: #ffffff81;
}
.roadmap-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}
.roadmap-content{
  color: #f6f6f6;
  background-image: linear-gradient(#262626, #161721);
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px;
  position: relative;
  box-shadow: 0 -1px 0 0.5px #c7c7c74a;
}
.roadmap-item.left  { flex-direction: row-reverse; padding-right: calc(50% + 24px); }
.roadmap-item.right { padding-left: calc(50% + 24px); }
.roadmap-item.left .roadmap-content  { text-align: right; }
.roadmap-item.right .roadmap-content { text-align: left; }

.roadmap-item.left, .roadmap-item.right { margin-top: -50px;}
.roadmap-item:last-child{
  margin-bottom: 0px;
}

.roadmap-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-image: linear-gradient(179deg, #703ffe, #b392ff, #703ffe);
  border: 2px solid #c6c9ff;
  box-shadow: 0 0 12px rgba(123, 47, 190, 0.5);
  flex-shrink: 0;
  z-index: 2;
  top: 6px;
}

.roadmap-date-wrapper {
  position: absolute;
  top: -14px;
  background-color: #535353;
  background-image: linear-gradient(45deg, #000000bf, #fff0 100%), radial-gradient(circle, #86868675, #e6e6e600 40%, #ffffff00 0%);
  border-radius: 50px;
  padding: 4px;
  overflow: hidden;
  cursor: default;
  transform: translateY(-4px);
}
.roadmap-item.left .roadmap-date-wrapper  { right: 20px; }
.roadmap-item.right .roadmap-date-wrapper { left: 20px; }
.roadmap-date{
  font-family: 'Orbitron', cursive;
  font-size: 12px;
  border: 1px dashed #666;
  border-radius: 50px;
  align-items: center;
  height: 100%;
  padding: 4px 30px;
  font-weight: 700;
  letter-spacing: 1px;
}


.roadmap-title {
  font-family: 'Zen Dots', cursive;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: color 0.2s;
}
.roadmap-desc {
  font-size: 15px;
  color: #e6e6e6;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .roadmap-timeline{padding: 0;}
  .roadmap-timeline::before { left: 16px; }
  .roadmap-item.left,
  .roadmap-item.right { flex-direction: row; padding-left: 40px; padding-right: 0; }
  .roadmap-item.left .roadmap-content { text-align: left; }
  .roadmap-dot { left: 16px; }

  .roadmap-item.left, .roadmap-item.right { margin-top: 0px;}
}

/* =========================================
   SECTION HELPERS
   ========================================= */

.section-label {
  color: #e6e6e6;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Zen Dots', cursive;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub {
  color: #f6f6f6;
  font-size: 16px;
  line-height: 1.7;
}

.btn-outline {
  display: inline-block;
  border: 1px solid #7B2FBE;
  color: #7B2FBE;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 6px;
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
}
.btn-outline:hover {
  background: #7B2FBE;
  color: #fff;
}

/* =========================================
   ABOUT IMAGES
   ========================================= */
.about-img-grid {
}
.about-img-main {
  grid-column: 1 / -1;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
}

/* =========================================
   STEPS
   ========================================= */
.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  color: #f6f6f6;
  background-image: linear-gradient(#262626, #161721);
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px;
  position: relative;
  box-shadow: 0 -1px 0px 0.5px #c7c7c74a;
}
.step-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}
.step-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.step-desc {
  font-size: 15px;
  color: #9ca3af;
  line-height: 1.7;
}

/* =========================================
   TESTIMONIALS
   ========================================= */

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: max-content;
  animation: marqueeScroll 60s linear infinite;
  will-change: transform;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from {
    transform: translate3d(0,0,0);
  }

  to {
    transform: translate3d(-50%,0,0);
  }
}

.testimonials {
  opacity: 1;
  width: 450px;
  flex-shrink: 0;
  padding: 24px;
  background: linear-gradient(180deg, rgb(22 23 33), rgb(15 23 42 / 60%));border-radius: 8px;
  box-shadow: rgba(255, 255, 255, 0.04) 0px 1px 4px 1px inset, rgba(255, 255, 255, 0.2) 0px 1px 0px 0px inset;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transition: transform .3s ease, border-color .3s ease;
}

.testimonials:hover {
  border-color: rgba(255,255,255,0.14);
}

.testimonial-text {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.8;
}

.testimonial-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 999px;
  box-shadow: rgba(255, 255, 255, 0.08) 0px 1px 4px 1px inset, rgba(255, 255, 255, 0.2) 0px 1px 0px 0px inset;
  opacity: 1;
  will-change: auto;
}

.testimonial-icon svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .testimonials {
    width: 300px;
    padding: 22px;
  }

  .marquee-track {
    gap: 18px;
  }
}
/* =========================================
   FAQ
   ========================================= */

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  color: #f6f6f6;
  background-image: linear-gradient(#262626, #161721);
  border-radius: 6px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  box-shadow: 0 -1px 0 0.5px #c7c7c74a;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 22px;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: 'Orbitron', 'sans-serif';
  transition: color 0.2s;
}
.faq-q:hover { color: #b290ff; }
.faq-icon {
  color: #ffffff;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: #e8e8e8;
  line-height: 1.75;
  padding: 0 22px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 22px 18px;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  background: linear-gradient( 135deg, #703ffe 0%, #b392ff 45%, #703ffe 100%);
}
.cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.cta-form input {
  flex: 1;
  min-width: 200px;
  max-width: 320px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 13px;
  color: #fff;
  outline: none;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.2s;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.5); }
.cta-form input:focus { border-color: rgba(255,255,255,0.6); }
.cta-form button {
  background: #fff;
  color: #7B2FBE;
  font-weight: 700;
  font-size: 13px;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background 0.2s, transform 0.2s;
}
.cta-form button:hover { background: #f0ecff; transform: translateY(-1px); }

/* =========================================
   FOOTER
   ========================================= */
.footer-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: #9ca3af;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #1E2356;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-icon:hover {
  border-color: #7B2FBE;
  color: #fff;
  background: #7B2FBE;
}

/* =========================================
   SEARCH OVERLAY
   ========================================= */
.search-overlay {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(11,13,47,0.97);
  border-bottom: 1px solid #1E2356;
  backdrop-filter: blur(14px);
  z-index: 100;
  padding: 14px 24px;
}
.search-overlay.hidden { display: none; }
.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}
.search-box i { color: #9ca3af; font-size: 15px; flex-shrink: 0; }
.search-box input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}
.search-box input::placeholder { color: #9ca3af; }
.search-box button {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
  transition: color 0.2s;
}
.search-box button:hover { color: #fff; }
