body {
  font-family: "Merriweather", Arial, sans-serif;
  background: linear-gradient(135deg, #181818 0%, #181818 30%, #ffd700 100%);
  color: #fff;
  margin: 0;
  padding: 0;
  direction: ltr;
  text-align: left;
  min-height: 100vh;
  max-width: 100vw;
  overflow-x: hidden;
}

/* rrrrrrodmap cont */

.roadmap-container {
  background: transparent;
  padding: 60px 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.roadmap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.roadmap::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 80px;
  right: 80px;
  height: 4px;
  background: linear-gradient(
    to right,
    rgba(255, 215, 0, 0.8) 0%,
    rgba(255, 215, 0, 0.4) 50%,
    rgba(255, 215, 0, 0.8) 100%
  );
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  z-index: 1;
}

.milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.milestone-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #2d2d2d, #1a1a1a);
  border: 3px solid #ffd700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.6),
    inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.milestone-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.8),
    inset 0 0 30px rgba(255, 215, 0, 0.2);
}

.milestone-circle.completed {
  background: radial-gradient(circle at 30% 30%, #4a5d23, #2d3d15);
  border-color: #90ee90;
  box-shadow: 0 0 30px rgba(144, 238, 144, 0.6),
    inset 0 0 20px rgba(144, 238, 144, 0.1);
}

.milestone-circle.completed:hover {
  box-shadow: 0 0 40px rgba(144, 238, 144, 0.8),
    inset 0 0 30px rgba(144, 238, 144, 0.2);
}

.milestone-icon {
  font-size: 28px;
  color: #ffd700;
  font-weight: bold;
}

.milestone-circle.completed .milestone-icon {
  color: #90ee90;
}

.milestone-content {
  color: #ffd700;
  max-width: 160px;
  margin-top: 20px;
}

.milestone-quarter {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
  opacity: 0.8;
}

.milestone-title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
}

.milestone.completed .milestone-content {
  color: #90ee90;
}

/* Animation for the connecting line */
@keyframes glow {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.roadmap::before {
  animation: glow 3s ease-in-out infinite;
}

/* Responsive design */
@media (max-width: 1024px) {
  .roadmap {
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }

  .roadmap::before {
    display: none;
  }

  .milestone {
    flex: none;
  }
}

@media (max-width: 768px) {
  .roadmap {
    flex-direction: column;
    gap: 40px;
  }

  .roadmap::before {
    display: block;
    top: 80px;
    bottom: 80px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 4px;
    height: auto;
    background: linear-gradient(
      to bottom,
      rgba(255, 215, 0, 0.8) 0%,
      rgba(255, 215, 0, 0.4) 50%,
      rgba(255, 215, 0, 0.8) 100%
    );
  }

  .roadmap-container {
    padding: 40px 20px;
  }

  .milestone-circle {
    width: 60px;
    height: 60px;
  }

  .milestone-icon {
    font-size: 20px;
  }

  .milestone-content {
    max-width: 150px;
    margin-top: 15px;
  }

  .milestone-quarter {
    font-size: 12px;
  }

  .milestone-title {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .roadmap-container {
    padding: 30px 15px;
  }

  .roadmap {
    gap: 30px;
  }

  .milestone-circle {
    width: 50px;
    height: 50px;
  }

  .milestone-icon {
    font-size: 18px;
  }

  .milestone-content {
    max-width: 120px;
    margin-top: 10px;
  }

  .milestone-quarter {
    font-size: 11px;
  }

  .milestone-title {
    font-size: 13px;
  }
}

/*  */

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  max-width: 100%;
  box-sizing: border-box;
}

.header {
  background: rgba(17, 17, 17, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1.1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  height: 80px;
  transition: height 0.2s;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  font-size: 1.35rem;
}
.nav a,
.footer a,
.resources a,
.team-member a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}
.nav a:hover,
.footer a:hover,
.resources a:hover,
.team-member a:hover {
  color: #fff;
  text-decoration: none;
}
.btn-main {
  background: linear-gradient(90deg, #ffd700 60%, #bfa100 100%);
  color: #181818;
  text-shadow: 0 1px 2px #fff7c1cc;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
  transition: background 0.3s, color 0.3s;
  text-decoration: none !important;
}
.btn-main:hover {
  background: #fff;
  color: #bfa100;
  text-shadow: none;
}
.hero {
  background: transparent;
  text-align: left;
  padding: 4rem 0 3rem 0;
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 480px;
}
.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s;
  z-index: 1;
}
.hero-bg-img.active {
  opacity: 1;
  z-index: 2;
}
.hero-bg-blur {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100%;
  background: rgba(24, 24, 24, 0.35);
  backdrop-filter: blur(5px);
  z-index: 3;
}
.hero-content {
  position: relative;
  z-index: 10;
}
.hero-content h1 {
  font-size: 2.8rem;
  color: #ffd700;
  margin-bottom: 1rem;
  animation: none !important;
}
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #fff;
  animation: fadeIn 2s;
}
.countdown {
  font-size: 1.5rem;
  background: rgba(24, 24, 24, 0.8);
  border-radius: 20px;
  display: inline-block;
  padding: 1rem 2rem;
  margin-bottom: 2.5rem;
  color: #ffd700;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.1);
  animation: pulse 2s infinite;
}
.about,
.tokenomics,
.roadmap,
.team,
.partners,
.faq,
.resources,
.updates {
  padding: 3rem 0;
  background: transparent;
  color: #fff;
}
.about h2,
.tokenomics h2,
.roadmap h2,
.team h2,
.partners h2,
.faq h2,
.resources h2,
.updates h2 {
  color: #ffd700;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}
.tokenomics-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  text-align: left;
}
.tokenomics-details {
  flex: 1 1 250px;
}
.tokenomics-details ul {
  list-style: none;
  padding: 0;
  color: #fff;
}
.tokenomics-details li {
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}
.tokenomics-details a {
  color: #181818 !important;
  background: #ffd700;
  padding: 0.18em 0.7em;
  border-radius: 18px;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px #ffd70022;
  display: inline-block;
  margin-bottom: 0.4em;
}
.tokenomics-details a:hover {
  background: #fff;
  color: #bfa100 !important;
  text-decoration: underline;
  box-shadow: 0 4px 16px #ffd70044;
}
.tokenomics-chart {
  flex: 1 1 50px;
  text-align: center;
}
/* --- New Roadmap Styles --- */
.roadmap {
  /* background: #0f0f0f; */
  color: white;
  font-family: "Roboto", sans-serif;
}
.roadmap .container {
  max-width: 1000px;
  margin: 80px auto;
  text-align: center;
  padding: 20px;
}
.roadmap h1 {
  font-family: "Poppins", sans-serif;
  color: #ffd700;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}
.roadmap p {
  color: #ccc;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 60px;
  line-height: 1.6;
}
.roadmap .timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  margin: 60px 60px;
}
@media (max-width: 768px) {
  .roadmap .container {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0 2px;
    box-sizing: border-box;
  }
  .roadmap .timeline {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
    overflow-x: visible;
    position: relative;
  }
  .roadmap .timeline::before {
    content: "";
    position: absolute;
    display: block;
    left: 44px;
    right: auto;
    width: 4px;
    top: 60px;
    bottom: 60px;
    height: calc(100% - 120px);
    background: #ffd700 !important;
    transform: none;
    z-index: 0;
  }
  .roadmap .step {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0;
    display: flex;
    position: relative;
  }
  .roadmap .step-icon {
    margin: 0 16px 0 0;
  }
  .roadmap .step-date,
  .roadmap .step-title {
    margin-left: 0;
    text-align: left;
    display: block;
  }
}
.roadmap .timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 75px;
  right: 75px;
  height: 4px;
  background: linear-gradient(to right, #ffcc00, #ffd700, #fff599);
  box-shadow: 0 0 20px #ffd700;
  z-index: 0;
  transform: translateY(-50%);
}
.roadmap .step {
  position: relative;
  text-align: center;
  z-index: 1;
  width: 150px;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.roadmap .step-date {
  color: #ffd700;
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 600;
}
.roadmap .step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background-color: #0f0f0f;
  border: 3px solid #ffd700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700;
  position: relative;
  z-index: 2;
}
.roadmap .step-icon svg {
  width: 28px;
  height: 28px;
  stroke: #ffd700;
}
.roadmap .step-title {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-top: 10px;
}
.roadmap .btn {
  margin-top: 60px;
  background: linear-gradient(to right, #fff68f, #ffd700);
  color: black;
  padding: 14px 35px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 0 10px #ffd700;
  transition: transform 0.2s ease-in-out;
  display: inline-block;
}
.roadmap .btn:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .roadmap .step {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 0;
  }
  .roadmap .step-icon {
    margin: 0;
  }
  .roadmap .step-date,
  .roadmap .step-title {
    margin-left: 24px;
    text-align: left;
    display: block;
  }
}
/* Remove old roadmap/timeline styles that may conflict */
.roadmap .timeline-item,
.timeline-item,
.roadmap-phase-title,
.roadmap-phase-slide {
  all: unset;
  display: none !important;
}
.team-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
}
.team-member {
  background: rgba(34, 34, 34, 0.85);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  width: 220px;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.08);
  transition: transform 0.2s;
  animation: fadeIn 1.5s;
  color: #fff;
}
.team-member:hover {
  transform: translateY(-8px) scale(1.04);
}
.team-member img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid #ffd700;
}
.team-member h3 {
  margin: 0.5rem 0 0.2rem 0;
  color: #ffd700;
}
.team-member p {
  margin: 0 0 0.5rem 0;
  color: #fff;
}
.partners-logos {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.partners-logos img {
  height: 48px;
  filter: grayscale(0.2) brightness(1.2);
}
/* FAQ Links - تأكيد تناسق اللون مع الذهبي */
.faq-link {
  color: #ffd700 !important;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s;
}
.faq-link:hover {
  color: #fff !important;
}

/* FAQ Section - تحسين الألوان والخلفية */
.faq {
  background: rgba(24, 24, 24, 0.97);
  border-radius: 18px;
  box-shadow: 0 4px 32px #ffd70022;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  animation: fadeInUp 1.2s;
}
.faq h2 {
  color: #ffd700;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  font-size: 2.1rem;
  animation: fadeInDown 1.2s;
}
.faq-item {
  background: rgba(34, 34, 34, 0.92);
  border-radius: 12px;
  margin-bottom: 1.2rem;
  padding: 1.1rem 1.6rem;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.08);
  color: #fff;
  border-left: 4px solid #ffd700;
  animation: fadeIn 1.2s;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.faq-item:hover {
  box-shadow: 0 4px 24px #ffd70044;
  border-color: #fff;
}
.faq-item h4 {
  color: #ffd700;
  margin-bottom: 0.5rem;
  font-size: 1.13rem;
  letter-spacing: 0.5px;
  font-weight: bold;
  transition: color 0.2s;
  animation: fadeInLeft 0.8s;
}
.faq-item ul {
  margin: 0.5rem 0 0 1.2rem;
  padding: 0;
  color: #fff; /* النص أبيض */
  font-weight: 600;
  font-size: 1.05rem;
  list-style: disc inside;
  animation: fadeIn 1.2s;
  background: none !important;
}
.faq-item ul li {
  margin-bottom: 0.3rem;
  color: #fff; /* النص أبيض */
  font-weight: 600;
  background: none !important; /* تأكد من عدم وجود خلفية */
}

/* FAQ Responsive */
@media (max-width: 700px) {
  .faq-item {
    padding: 0.8rem 0.7rem;
    font-size: 0.98rem;
  }
  .faq h2 {
    font-size: 1.3rem;
  }
}

/* FAQ Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #ffd70044;
  }
  70% {
    box-shadow: 0 0 0 10px #ffd70011;
  }
  100% {
    box-shadow: 0 0 0 0 #ffd70044;
  }
}
/* Responsive */
@media (max-width: 900px) {
  .header-flex {
    flex-wrap: wrap;
  }
  .nav-toggle {
    display: block;
    font-size: 2.2rem;
    padding: 0.5em 0.8em;
    background: none;
    border: none;
    color: #ffd700;
    position: relative;
    z-index: 1001;
    margin-left: 0.5em;
  }
  .btn-main {
    font-size: 1rem;
    padding: 0.7em 1.2em;
  }
  .nav {
    display: none !important;
  }
  .logo {
    order: 2;
    max-width: 90px;
    height: auto;
    margin: 0 0.7rem;
  }
  .team-grid,
  .tokenomics-flex,
  .footer-flex {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
  }
  .nav ul {
    flex-direction: column;
    gap: 0.7rem;
  }
  .hero-bg-slider,
  .hero-bg-img,
  .hero-bg-blur {
    width: 100%;
    left: 0;
    right: 0;
    max-width: 100vw;
  }
  .hero {
    overflow-x: hidden;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 0;
    right: 0;
  }
  section,
  .container {
    max-width: 100vw;
    overflow-x: hidden;
  }
}
@media (max-width: 600px) {
  .container {
    width: 98%;
    padding: 0 1vw;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .btn-main {
    font-size: 0.98rem;
    padding: 0.6em 1em;
  }
  .team-member {
    width: 100%;
  }
  .logo {
    height: 48px;
  }
  .nav-toggle {
    font-size: 2.5rem;
    padding: 0.4em 0.7em;
  }
}
.hero-title-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  min-height: 8.5rem;
}
.hero-title {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0.2rem;
  margin-bottom: 0;
  width: auto;
}
.hero-title h1 {
  font-size: 7rem;
  line-height: 1;
  color: #ffd700;
  margin: 0;
  font-weight: 900;
  letter-spacing: 2px;
  font-family: "Merriweather", serif;
  font-style: italic;
  animation: b-glow 1.8s infinite alternate;
  text-shadow: 0 0 6px #ffd700, 0 0 18px #ffd700, 0 0 32px #bfa100,
    0 2px 18px #18181899;
}
@keyframes b-glow {
  0% {
    text-shadow: 0 0 6px #ffd700, 0 0 18px #ffd700, 0 0 32px #bfa100,
      0 2px 18px #18181899;
  }
  60% {
    text-shadow: 0 0 24px #ffd700, 0 0 48px #ffd700, 0 0 64px #bfa100,
      0 2px 24px #18181899;
  }
  100% {
    text-shadow: 0 0 6px #ffd700, 0 0 18px #ffd700, 0 0 32px #bfa100,
      0 2px 18px #18181899;
  }
}
.hero-title-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  margin-top: 0;
  row-gap: 0;
  margin-bottom: 0.7rem;
}
.hero-title-right h3 {
  font-size: 2.5rem;
  margin: 0 0 0 0.2rem;
  color: #b3a704;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.1;
  font-style: normal;
  margin-top: 0;
  margin-left: 1rem;
}
.hero-title-right h4 {
  font-size: 1.5rem;
  font-style: normal;
  margin: 0 0 0 0.2rem;
  color: #d6da0d;
  font-weight: 400;
  letter-spacing: 1px;
  margin-left: 1rem;
}
@media (max-width: 600px) {
  .hero-title h1 {
    font-size: 3.5rem;
  }
  .hero-title-right h3 {
    font-size: 1.3rem;
  }
  .hero-title-right h4 {
    font-size: 1rem;
  }
  .hero-title {
    gap: 0.5rem;
  }
  .hero-title-wrapper {
    min-height: 4.5rem;
  }
}
.slider-section {
  position: relative;
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 2.5rem 0;
  z-index: 2;
}
.slider-blur-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(24, 24, 24, 0.7);
  backdrop-filter: blur(16px);
  z-index: 1;
  border-radius: 24px;
}
.slider-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90vw;
  max-width: 700px;
  min-height: 260px;
  z-index: 2;
}
.slider-images {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.slider-img {
  display: none;
  width: 100%;
  max-width: 600px;
  max-height: 260px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 4px 32px #0008;
  transition: opacity 0.5s, transform 0.5s;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.slider-img.active {
  display: block;
  opacity: 1;
  position: relative;
  z-index: 2;
  transform: scale(1.04);
}
.slider-arrow {
  background: rgba(255, 215, 0, 0.85);
  border: none;
  color: #181818;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  margin: 0 1.2rem;
  z-index: 3;
  box-shadow: 0 2px 8px #ffd70044;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.slider-arrow:hover {
  background: #ffd700;
  color: #000;
  transform: scale(1.12);
}
@media (max-width: 700px) {
  .slider-container {
    max-width: 98vw;
  }
  .slider-img {
    max-width: 98vw;
  }
}
.hero-lead {
  font-size: 1.35rem;
  margin-bottom: 1.2rem;
  color: #fff;
  font-weight: 500;
}
.hero-list-title {
  font-size: 1.15rem;
  color: #ffd700;
  margin-bottom: 0.7rem;
  margin-top: 0.2rem;
  font-weight: 700;
  letter-spacing: normal;
}
.hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  display: block;
  min-width: 0;
  max-width: 100%;
}
.hero-features li {
  font-size: 1.08rem;
  color: #fff;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2px;
  transition: none;
  border-radius: 0;
  padding: 0;
}
.hero-features li:last-child {
  margin-bottom: 0;
}
.hero-features .icon {
  font-size: 1.25em;
  margin-right: 0.2em;
  color: inherit;
  filter: drop-shadow(0 0 2px #ffd70088);
}
.hero-lead {
  font-size: 1.35rem;
  margin-bottom: 1.2rem;
  color: #fff;
  font-weight: 500;
  text-shadow: none;
}
.hero-list-title {
  font-size: 1.15rem;
  color: #ffd700;
  margin-bottom: 0.7rem;
  margin-top: 0.2rem;
  font-weight: 700;
  letter-spacing: normal;
}
@media (max-width: 600px) {
  .hero-features {
    min-width: 0;
    padding: 0;
  }
  .hero-features li {
    font-size: 1rem;
    gap: 0.5rem;
    padding: 0;
  }
}

/* --- Drawer & Responsive Navbar --- */

/* Hide hamburger by default */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #ffd700;
  cursor: pointer;
  z-index: 1101;
}

/* ترتيب عناصر الهيدر في الموبايل: الهامبرجر - اللوجو - زر الشراء */
@media (max-width: 900px) {
  .header-flex {
    flex-wrap: wrap;
  }
  .nav {
    display: none !important;
  }
  .nav-toggle {
    display: block;
    font-size: 2.2rem;
    padding: 0.5em 0.8em;
    background: none;
    border: none;
    color: #ffd700;
    position: relative;
    z-index: 1001;
    margin-left: 0.5em;
  }
  .logo {
    order: 2;
    max-width: 90px;
    height: auto;
    margin: 0 0.7rem;
  }
  .btn-main {
    font-size: 1rem;
    padding: 0.7em 1.2em;
  }
}

/* Drawer styles */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100%;
  background: rgba(10, 10, 10, 0.92);
  box-shadow: 2px 0 16px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.drawer.open {
  transform: translateX(0);
}
.drawer-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #ffd700;
  align-self: flex-end;
  cursor: pointer;
}
.drawer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.drawer ul li {
  margin-bottom: 1.2rem;
}
.drawer ul li a {
  color: #ffd700;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: color 0.2s;
}
.drawer ul li a:hover {
  color: #fff;
}

/* خلفية سوداء ضبابية تغطي الشاشة عند فتح drawer */
.drawer-backdrop {
  display: none;
}
.drawer.open ~ .drawer-backdrop {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(2.5px);
  z-index: 1099;
  animation: fadeIn 0.3s;
}
.hero-slider-text {
  min-height: 80px;
  margin-bottom: 2rem;
  position: relative;
  width: 100%;
  max-width: 700px;
}
.hero-slide {
  display: none;
  opacity: 0;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 1.2rem 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none;
}
.hero-slide.active {
  display: block;
}
.hero-slide.show {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.hero-slide-icon {
  color: #ffd700;
  margin-right: 0.7rem;
  font-size: 1.5em;
  vertical-align: middle;
  filter: drop-shadow(0 0 2px #ffd70088);
}
@media (max-width: 600px) {
  .hero-slider-text {
    min-height: 60px;
    font-size: 1rem;
  }
  .hero-slide {
    font-size: 1rem;
    margin-bottom: 1rem;
    position: static;
  }
  .hero-slide-icon {
    font-size: 1.2em;
    margin-right: 0.5rem;
  }
}
.update-card {
  background: rgba(24, 24, 24, 0.97);
  border-radius: 14px;
  box-shadow: 0 4px 24px #ffd70022;
  padding: 1.5rem 1.7rem;
  margin-bottom: 1.5rem;
  color: #fff;
  border-left: 4px solid #ffd700;
  animation: fadeInUp 1.2s;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.update-card h4 {
  color: #ffd700;
  margin-bottom: 0.7rem;
  font-size: 1.18rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.footer {
  background: none !important;
  color: #000;
  padding: 1.2rem 0;
  font-size: 1rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
  line-height: 1.7;
}
.footer-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.footer a {
  color: #000 !important;
  margin: 0 0.4rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none !important;
  transition: color 0.2s;
  display: inline-block;
}
.footer a:hover {
  color: #ffd700 !important;
  text-decoration: underline !important;
}
.footer-link {
  color: #000 !important;
  text-decoration: none !important;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: color 0.2s;
  margin: 0 0.4rem;
  display: inline-block;
}
.footer-link:hover {
  color: #ffd700 !important;
  text-decoration: none !important;
}
.contact-form {
  background: rgba(34, 34, 34, 0.92);
  border-radius: 14px;
  box-shadow: 0 4px 24px #ffd70022;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  margin-top: 1.5rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  animation: fadeInUp 1.1s;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-form label {
  color: #ffd700;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  letter-spacing: 0.2px;
}
.contact-form input[type="text"],
.contact-form input[type="email"] {
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border: 1.5px solid #ffd700;
  background: #181818;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus {
  border-color: #fff;
}
.contact-form input[type="file"] {
  color: #ffd700;
  background: #181818;
  border: 1.5px solid #ffd700;
  border-radius: 8px;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  margin-top: 0.1rem;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}

.contact-form input[type="file"]::-webkit-file-upload-button {
  background: linear-gradient(90deg, #ffd700 60%, #bfa100 100%);
  color: #181818;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-right: 1rem;
}

.contact-form input[type="file"]:hover,
.contact-form input[type="file"]:focus {
  border-color: #fff;
  background: #222;
}

.contact-form input[type="file"]::-webkit-file-upload-button:hover {
  background: #fff;
  color: #bfa100;
}

.contact-form input[type="file"]::file-selector-button {
  background: linear-gradient(90deg, #ffd700 60%, #bfa100 100%);
  color: #181818;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-right: 1rem;
}

.contact-form input[type="file"]:hover::file-selector-button {
  background: #fff;
  color: #bfa100;
}
.contact-form textarea {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1.5px solid #ffd700;
  background: #181818;
  color: #fff;
  font-size: 1rem;
  outline: none;
  min-height: 90px;
  max-width: 100%;
  font-family: inherit;
  transition: border-color 0.2s;
}
.contact-form textarea:focus {
  border-color: #fff;
}
.status-message {
  display: block;
  padding: 0.7em 1.2em;
  border-radius: 8px;
  margin-top: 0.7em;
  font-size: 1.05em;
  font-weight: 600;
  text-align: center;
  background: #222;
  color: #ffd700;
  border: 1.5px solid #ffd700;
  transition: all 0.2s;
}
.status-success {
  background: #1e2e1e;
  color: #7fff7f;
  border-color: #7fff7f;
}
.status-error {
  background: #2e1e1e;
  color: #ff6b6b;
  border-color: #ff6b6b;
}
.contact-lead-text {
  color: #ffd700;
  font-size: 1.13rem;
  font-weight: 600;
  margin-bottom: 1.3rem;
  text-align: center;
  letter-spacing: 0.1px;
  line-height: 1.7;
  background: rgba(34, 34, 34, 0.85);
  border-radius: 10px;
  padding: 1.1rem 1rem 1rem 1rem;
  box-shadow: 0 2px 12px #ffd70022;
  display: inline-block;
  max-width: 540px;
}
.contact-lead-text .contact-email {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
  word-break: break-all;
  transition: color 0.2s;
}
.contact-lead-text .contact-email:hover {
  color: #ffd700;
  text-decoration: underline;
}
.resources h2 {
  color: #ffd700;
  letter-spacing: 1px;
  font-size: 2.1rem;
  margin-bottom: 1.2rem;
}
.resources ul li a {
  color: #181818;
  background: #ffd700;
  padding: 0.18em 0.7em;
  border-radius: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px #ffd70022;
  display: inline-block;
  margin-bottom: 0.4em;
}
.resources ul li a:hover {
  background: #fff;
  color: #bfa100;
  text-decoration: underline;
  box-shadow: 0 4px 16px #ffd70044;
}
.resources ul li {
  margin-bottom: 0.7em;
}

/* Roadmap Details Section Styles */
.roadmap-details {
  margin: 60px auto 0 auto;
  max-width: 800px;
  text-align: left;
}
.phase-block {
  background: rgba(24, 24, 24, 0.97);
  border-radius: 16px;
  box-shadow: 0 4px 24px #ffd70022;
  margin-bottom: 32px;
  padding: 28px 32px 18px 32px;
  border-left: 5px solid #ffd700;
  position: relative;
  animation: fadeInUp 1s;
}
.phase-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-family: "Poppins", sans-serif;
}
.phase-icon {
  font-size: 1.25em;
  vertical-align: middle;
}
.phase-block ul {
  margin: 0 0 0 1.2em;
  padding: 0;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 500;
  list-style: disc inside;
  line-height: 1.7;
}
.phase-block ul li {
  margin-bottom: 0.3em;
  color: #fff;
  background: none;
  font-size: 1.07em;
}
.phase-sep {
  text-align: center;
  color: #ffd700;
  font-size: 2.1em;
  margin: 0 0 18px 0;
  letter-spacing: 0.2em;
  user-select: none;
}
@media (max-width: 700px) {
  .roadmap-details {
    padding: 0 0.5em;
    max-width: 99vw;
  }
  .phase-block {
    padding: 18px 8px 12px 14px;
  }
  .phase-title {
    font-size: 1.01rem;
  }
}
/* Removed geometric background for light mode */
body.light-mode::before {
  display: none !important;
}
body.light-mode {
  background: linear-gradient(180deg, #bfa100 0%, #bdbdbd 100%) !important;
  color: #222 !important;
  position: relative;
  z-index: 0;
}
.light-mode .container {
  background: none !important;
  color: #222 !important;
}
.light-mode .header,
.light-mode .drawer {
  background: rgba(255, 255, 255, 0.97) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.light-mode .logo {
  filter: none;
}
.light-mode .nav a,
.light-mode .footer a,
.light-mode .resources a,
.light-mode .team-member a {
  color: #ffd700 !important;
}
.light-mode .nav a:hover,
.light-mode .footer a:hover,
.light-mode .resources a:hover,
.light-mode .team-member a:hover {
  color: #222 !important;
}
.light-mode .btn-main,
.light-mode .btn {
  background: linear-gradient(90deg, #ffd700 60%, #fffbe7 100%) !important;
  color: #222 !important;
  text-shadow: none !important;
  box-shadow: 0 2px 8px #ffd70033;
}
.light-mode .btn-main:hover,
.light-mode .btn:hover {
  background: #ffd700 !important;
  color: #fff !important;
}
.light-mode .about,
.light-mode .tokenomics,
.light-mode .roadmap,
.light-mode .team,
.light-mode .partners,
.light-mode .faq,
.light-mode .resources,
.light-mode .updates {
  background: #fffbe7 !important;
  color: #222 !important;
}
.light-mode .about h2,
.light-mode .tokenomics h2,
.light-mode .roadmap h1,
.light-mode .roadmap h2,
.light-mode .team h2,
.light-mode .partners h2,
.light-mode .faq h2,
.light-mode .resources h2,
.light-mode .updates h2 {
  color: #ffd700 !important;
}
.light-mode .roadmap .timeline {
  background: none !important;
}
.light-mode .roadmap .timeline::before {
  background: #ffd700 !important;
  box-shadow: 0 0 10px #ffd70099;
}
@media (max-width: 768px) {
  .light-mode .roadmap .timeline::before {
    background: #ffd700 !important;
  }
}
.light-mode .roadmap .step {
  background: none !important;
}
.light-mode .roadmap .step-date {
  color: #ffd700 !important;
}
.light-mode .roadmap .step-icon {
  background: #fffbe7 !important;
  border: 3px solid #ffd700 !important;
  box-shadow: 0 0 8px #ffd70099, 0 0 16px #ffd70033 !important;
}
.light-mode .roadmap .step-icon svg {
  stroke: #ffd700 !important;
}
.light-mode .roadmap .step-title {
  color: #222 !important;
}
.light-mode .roadmap-details {
  background: none !important;
  color: #222 !important;
}
.light-mode .phase-block {
  background: #fff !important;
  border-left: 5px solid #ffd700 !important;
  box-shadow: 0 4px 24px #ffd70011 !important;
  color: #222 !important;
}
.light-mode .phase-title {
  color: #ffd700 !important;
}
.light-mode .phase-block ul {
  color: #222 !important;
}
.light-mode .phase-block ul li {
  color: #222 !important;
}
.light-mode .phase-sep {
  color: #ffd700 !important;
}
.light-mode .team-member {
  background: #fff !important;
  color: #222 !important;
  box-shadow: 0 2px 8px #ffd70011 !important;
}
.light-mode .team-member h3 {
  color: #ffd700 !important;
}
.light-mode .team-member p {
  color: #222 !important;
}
.light-mode .partners-logos img {
  filter: none !important;
}
.light-mode .faq {
  background: #fff !important;
  color: #222 !important;
  box-shadow: 0 4px 32px #ffd70011 !important;
}
.light-mode .faq-item {
  background: #fffbe7 !important;
  color: #222 !important;
  border-left: 4px solid #ffd700 !important;
  box-shadow: 0 2px 8px #ffd70011 !important;
}
.light-mode .faq-item h4 {
  color: #ffd700 !important;
}
.light-mode .faq-item ul {
  color: #222 !important;
}
.light-mode .faq-item ul li {
  color: #222 !important;
}
.light-mode .footer {
  background: #fffbe7 !important;
  color: #222 !important;
}
.light-mode .footer-link {
  color: #ffd700 !important;
}
.light-mode .footer-link:hover {
  color: #222 !important;
}
.light-mode .tokenomics-details,
.light-mode .tokenomics-details ul,
.light-mode .tokenomics-details li {
  color: #222 !important;
}
.light-mode .roadmap p {
  color: #222 !important;
}
@media (max-width: 768px) {
  .roadmap .timeline {
    position: relative !important;
  }
  .roadmap .timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: #ffd700 !important;
    z-index: 10;
    display: block !important;
    transform: translateX(-50%);
  }
}

/* ==== Roadmap Desktop Alignment Fix (يمكنك حذف هذا القسم للتراجع عن التعديل) ==== */
@media (min-width: 1025px) {
  .roadmap {
    align-items: center !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .milestone,
  .milestone-circle {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .milestone-content {
    margin-top: 20px !important;
  }
}
/* ==== END Roadmap Desktop Alignment Fix ==== */

/* ==== Roadmap Mobile Line: Shorter Bottom (يمكنك حذف هذا القسم للتراجع عن التعديل) ==== */
@media (max-width: 768px) {
  .roadmap::before {
    top: 60px !important; /* يبدأ من أسفل أول دائرة */
    bottom: 45px !important; /* ينتهي قبل بداية آخر دائرة بقليل */
  }
}
/* ==== END Roadmap Mobile Line Shorter Bottom ==== */

/* ==== Roadmap Mobile Text Black in Light Mode (يمكنك حذف هذا القسم للتراجع عن التعديل) ==== */
@media (max-width: 768px) {
  body.light-mode .milestone-content,
  body.light-mode .milestone-quarter,
  body.light-mode .milestone-title {
    color: #111 !important;
  }
}
/* ==== END Roadmap Mobile Text Black in Light Mode ==== */

/* ==== Roadmap Icon Gold Glow (يمكنك حذف هذا القسم للتراجع عن التعديل) ==== */
.milestone-icon svg {
  filter: drop-shadow(0 0 6px #ffd70088) drop-shadow(0 0 12px #ffd70044);
}
/* ==== END Roadmap Icon Gold Glow ==== */

.custom-legend {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
  margin-top: 1.1em;
  font-size: 1.05em;
  color: #ffd700;
  align-items: flex-start;
}
@media (max-width: 700px) {
  .custom-legend {
    font-size: 0.98em;
  }
}

@media (max-width: 700px) {
  .tokenomics {
    padding-bottom: 3.5rem !important;
  }
  .tokenomics-flex {
    margin-bottom: 2.7rem !important;
    padding-bottom: 2.2rem !important;
  }
  .tokenomics-chart {
    margin: 0;
    padding: 0;
  }
  .tokenomics-chart canvas {
    width: 50vw;
    height: 50vw;
    max-width: 120px;
    max-height: 120px;
    min-width: 60px;
    min-height: 60px;
    margin-left: auto;
    margin-right: auto;
  }
}
.light-mode .resources ul li a {
  color: #000 !important;
}

/* ==== Responsive Tokenomics Chart Size ==== */
@media (min-width: 601px) {
  .tokenomics-chart {
    margin-bottom: 10vh;
    margin-left: 15vw;
  }
}
@media (max-width: 600px) {
  .tokenomics-chart {
    margin-bottom: 0;
    margin-left: 0;
  }
}
.tokenomics-chart canvas {
  width: 50vw;
  height: 50vw;
  max-width: 220px;
  max-height: 220px;
  min-width: 100px;
  min-height: 100px;
  display: block;
  margin-left: 0;
  margin-right: auto;
}
@media (max-width: 600px) {
  .tokenomics-chart canvas {
    width: 50vw;
    height: 50vw;
    max-width: 120px;
    max-height: 120px;
    min-width: 60px;
    min-height: 60px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ==== END Responsive Tokenomics Chart Size ==== */

.desktop-align {
  text-align: left;
  margin-top: 4.5rem;
  margin-left: 15vw;
}

@media (max-width: 768px) {
  .desktop-align {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }
}

.Featured {
  padding: 2rem 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.15);
}

.featured-title {
  text-align: center;
  margin-bottom: 2rem;
  color: #fff;
}

.featured-content {
  position: relative;
  width: 100%;
}

.featured-logos {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.featured-logos::before,
.featured-logos::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.featured-logos::before {
  left: 0;
  background: linear-gradient(to right, rgba(24, 24, 24, 1), transparent);
}

.featured-logos::after {
  right: 0;
  background: linear-gradient(to left, rgba(24, 24, 24, 1), transparent);
}

.logos-scroll {
  display: flex;
  animation: scroll 30s linear infinite;
  gap: 50px;
}

.logos-scroll img {
  height: 120px;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.logos-scroll img:hover {
  filter: brightness(1.2);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logos-scroll img {
    height: 80px;
  }

  .featured-logos::before,
  .featured-logos::after {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .logos-scroll img {
    height: 60px;
  }

  .logos-scroll {
    gap: 30px;
  }
}
