.btn222 {

  border-radius: 15px;
  font-size: 50px !important;
  box-shadow: inset -2px -2px 4px black;
  transition: transform 0.3s ease-in-out;
  text-decoration: none !important;
}

.btn222:hover {
  transform: translateY(-10px);
  cursor: pointer;
}

.up1 {
  transition: transform 0.3s ease-in-out;
}

.up1:hover {
  transform: translateY(-10px);
  cursor: pointer;
}


.up2 {
  transition: transform 0.3s ease-in-out, border 0.3s ease-in-out;
  border: 2px solid rgba(255, 0, 0, 0);
  border-radius: 15px;
  padding: 10px;
}

.up2:hover {
  transform: translateY(-10px);
  border: 2px solid red !important;

  cursor: pointer;
}

.card22 {
  background-color: rgb(13, 47, 87);
  background-image: url('./images/12.jpg');
  background-position: center;
  background-size: cover;
  border-radius: 15px;
  border: 4px solid rgb(193, 42, 42);
}


.above11 {

  height: 100vh;
  background-color: #00000000;
  padding-top: 12%;
  position: relative;
}

.above11::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
}

.vm1 {
  background-color: #070711;
  padding: 100px 0;
  overflow: hidden;
}

.vm2 {
  background-color: #070711;
  padding-bottom: 50px;
  overflow: hidden;
}

.hero1 {
  font-size: 70px;
  color: #CCCEEF;
}

.hero11 {
  font-size: 70px;
  color: #696A7F;
}

.hero12 {
  font-size: 60px;
  color: #CCCEEF;
  z-index: 10000 !important;
}

.sentinels11 {
  background-color: #053CB3;
  border-radius: 20px;
  background-image: url('./images/ww.avif');
  background-position: center;
  background-size: cover;
  position: relative;
}

.sentinels11::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.501);
  z-index: 1;
}

.nftcard {
  background-color: #0051ff;
  border: 3px solid white;
  border-radius: 12px;
  background-image: url('./images/ee.avif');
  background-position: center;
  background-size: cover;
  position: relative;
}

.nftcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.263);
  z-index: 1;
}

.td1 {
  background-color: #2e4a85;
  border-radius: 15px;
  background-image: url('./images/td.avif');
  background-position: center;
  background-size: cover;
  position: relative;
}

.td1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}


.timer22 {
  background-color: #7f1d1d;
  border: 5px solid rgb(212, 47, 47);
  border-radius: 25px;
  box-shadow: 2px 2px 8px black;

}

.timer-box1 {
  background-color: rgb(212, 47, 47);
  border: 5px solid #7f1d1d;
  border-radius: 10px;
  padding: 10px;
  width: 80px;
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.timer-box1 p {
  margin: 0;
}

.high {
  padding: 10px;
  font-size: 60px;
  font-weight: 600;
}

.text-muted1 {
  position: relative;
  text-align: center;
  margin: 0 !important;
  color: #fff !important;
  font-size: 25px;
}

.kag {
  padding-top: 12rem;
}

.updown {
  animation: updown 1.5s ease-in-out infinite;
}

@keyframes updown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}






/* roadmap */
/* Timeline container styling */
.timeline-container {
  display: flex;
  flex-direction: column;
  /* Make it vertical by default */
  gap: 33.5px;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  font-size: 67px;
}

/* Individual timeline point styling */
.timeline-point {
  transition-duration: 0.5s;
  border-radius: 50%;
  background: linear-gradient(145deg, #1e2125, #23282c);
  box-shadow: 13.4px 13.4px 40.2px #1c1f23, -13.4px -13.4px 40.2px #262b2f;
  display: grid;
  place-items: center;
  width: 134px;
  height: 134px;
  position: relative;
  color: var(--color);
}

.timeline-point::before {
  content: "";
  width: 200px;
  height: 200px;
  z-index: -1;
  border-radius: 50%;
  position: absolute;
  background: conic-gradient(var(--color) var(--angle),
      transparent 0deg 360deg);
  animation: rotateBorder 1s linear var(--delay) forwards;
}

.timeline-point:nth-child(odd)::before {
  transform: rotate(0deg);
}

.timeline-point:nth-child(even)::before {
  transform: rotate(178deg) scaleY(-1);
}

/* Custom property for angle */
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

/* Common styling for timeline points */
.timeline-point:nth-child(1) {
  --color: #c1121f;
  --delay: 0s;
}

.timeline-point:nth-child(2) {
  --color: #ffc300;
  --delay: 1s;
}

.timeline-point:nth-child(3) {
  --color: #2ec4b6;
  --delay: 2s;
}

.timeline-point:nth-child(4) {
  --color: #6536ff;
  --delay: 3s;
}

.timeline-point:nth-child(5) {
  --color: #3a86ff;
  --delay: 4s;
}

/* Popup styling */
.popup {
  width: 321.6px;
  height: auto;
  max-height: 0;
  background-color: var(--color);
  display: grid;
  grid-template-columns: 16% 84%;
  position: absolute;
  color: white;
  border-radius: 30px;
  box-shadow: 6.7px 6.7px 21.4px #17191d, -6.7px -6.7px 21.4px #212529;
  transform-origin: bottom bottom;
  animation: expandPopup 0.5s linear calc(var(--delay) + 0.5s) forwards;
}

.timeline-point:nth-child(odd) .popup {
  right: -435px;
}

.timeline-point:nth-child(even) .popup {
  left: -435px;
}

/* Popup number styling */
.popup-number {
  grid-row: span 2;
  display: grid;
  font-size: 2rem;
  font-weight: bold;
  place-items: center;
  cursor: auto;
  animation: fadeIn 0.5s linear calc(var(--delay) + 0.7s) forwards;
  opacity: 0;
  height: 100%;
}

/* Popup title styling */
.popup-title {
  color: var(--color);
  padding-bottom: 6.7px;
  font-size: 25px;
  font-weight: 900;
}

/* Popup details styling */
.popup-details {
  padding: 20.1px;
  background-color: #1c1f23;
  border-radius: 30px;
  opacity: 0;
  font-weight: 500;
  user-select: none;
  cursor: auto;
  overflow: hidden;
  font-size: 0.8rem;
  text-align: justify;
  background: linear-gradient(145deg, #16181b, #22262b);
  margin: 3.35px;
  animation: fadeIn 0.5s linear calc(var(--delay) + 0.7s) forwards;
}

.timeline-point:nth-child(odd) .popup:before {
  content: "";
  width: 63px;
  height: 0;
  border-radius: 4px;
  background-color: var(--color);
  position: absolute;
  left: -23%;
  top: -41.9px;
  display: flex;
  animation: drawLine 0.5s linear var(--delay) forwards;
}

.timeline-point:nth-child(odd) .popup:before {
  top: calc(100% + -56px);
  transform: rotateX(100deg);
  transform-origin: top;
}



.timeline-point:nth-child(even) .popup:before {
  content: "";
  width: 63px;
  height: 0;
  border-radius: 4px;
  background-color: var(--color);
  position: absolute;
  left: 107%;
  top: 25.1px;
  display: flex;
  animation: drawLine 0.5s linear var(--delay) forwards;
}

.timeline-point:nth-child(even) .popup:before {
  top: calc(100% + -47px);
  transform: rotateX(100deg);
  transform-origin: top;
}





/* Hover effect for timeline points */
.timeline-point:hover {
  background: linear-gradient(145deg, var(--color), #1e2125);
  color: white;
}

/* Animation for border rotation */
@keyframes rotateBorder {
  from {
    --angle: 0deg;
  }

  to {
    --angle: 180deg;
  }
}

/* Animation for popup expansion */
@keyframes expandPopup {
  0% {
    max-height: 0;
  }

  100% {
    max-height: 200px;
  }
}

/* Animation for line drawing */
@keyframes drawLine {
  0% {
    height: 0%;
    opacity: 0;
  }

  100% {
    height: 33.5px;
    opacity: 1;
  }
}

/* Animation for fade-in effect */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@media (max-width: 1050px) {
  body {
    height: auto;
    display: block;
  }

  .timeline-container {
    flex-direction: column;
    height: auto;
    width: 100%;
    padding: 100px 0px;
  }

  .timeline-point {
    height: 134px;
    flex-shrink: 0;
    left: calc(24px / 2);
    margin: 0px 0px;
    position: relative;
  }

  .timeline-point:nth-child(odd)::before {
    transform: rotate(0deg);
  }

  .timeline-point:nth-child(even)::before {
    transform: rotate(0deg) scaleX(-1);
  }

  .timeline-point .popup:before {
    display: none;
  }

  .timeline-point:nth-child(odd) .popup {
    bottom: auto;
    right: -276px;
  }

  .timeline-point:nth-child(even) .popup {
    top: auto;
    left: 160px !important;
  }
}


@media screen and (max-width: 768px) {

  .timeline-container {
    flex-direction: column;
    height: auto;
    width: 19% !important;
    padding: 100px 0px;
  }


  .popup {
    width: 194px;
    height: auto;
  }

  .dogeh {
    font-size: 47px !important;
  }

  .timeline-point::before {
    width: 170px;
    height: 200px;
  }

  .timeline-point {
    width: 84px;
  }

  .left22 {
    margin-left: 0px !important;
  }

  .timeline-point:nth-child(even) .popup:before {

    left: -32% !important;

  }

  .hero1 {
    font-size: 60px !important;
  }


  .logoText {
    font-size: 34px;
  }


  .navlogo {
    height: 46px !important;
    border-radius: none !important;
  }

  .navh1 {
    font-size: 22px !important;
    margin-top: 5px !important;
  }

  .navbar .navbar-nav .nav-item {
    width: 100%;
    text-align: start !important;
  }
}


/* navbar code */
.navbar {
  background-color: #060609 !important;
  overflow: hidden;
  border-bottom: 1px solid #6f64e964;
  /* background: none !important; */
  /* backdrop-filter: blur(10px); */
  width: 100%;
  /* z-index: 1000 !important; */
  height: auto !important;
}

.navbar-toggler-icon {
  color: white !important;
}

.navbar-toggler {
  background-color: #000000 !important;
  color: white !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}


.nav-link {
  color: #ccceef !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FF3AD3;
  transition: width 0.5s ease;
}

.nav-link:hover {
  color: #FF3AD3 !important;
}

.nav-link:hover::before {
  width: 100%;
}

.nav-item {
  margin: 0px 10px;
}

.nnn222 {
  text-decoration: none;
  width: 30%;
  height: auto;
}


.navlogo {
  height: 70px;
  width: auto;
  border-radius: 15px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.341);
}

.navh1 {
  color: #000000;
  margin-top: 10px;
  letter-spacing: 1px;
  font-size: 36px;
}

.conbtn {
  padding: 7px 25px !important;
  border-radius: 7px !important;
  /* border: 4px solid #DF2B26 !important; */
  font-size: 15px !important;
  /* letter-spacing: 2px !important; */
  background: linear-gradient(94deg, #dd00ac 10.66%, #7130c3 53.03%, #410093 96.34%, rgba(255, 0, 238, .26) 191.41%, rgba(255, 59, 212, 0) 191.43%);
  color: #ffffff !important;
  border: none !important;
  /* box-shadow: inset 0px -5px 0px 0px rgba(0, 0, 0, 0.341); */
  overflow: hidden !important;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.conbtn:hover {
  transform: scale(1.1);
  background: linear-gradient(90deg, #3b82f6, #9333ea);
  /* box-shadow: 2px 2px 6px #fff; */
  /* box-shadow: 0 0 30px 5px #df2c26a2 !important; */
  color: #fff !important;
}




/* htb */
.htb11,
.htb22,
.htb33 {
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  padding: 20px;
  margin-bottom: 20px;
}

.htb11 {
  background: linear-gradient(135deg, #7FFFD4, #87CEEB, #4169E1, #000080);
}

.htb22 {
  background: linear-gradient(135deg, #FFE4B5, #FFA07A, #FF7F50, #FF6347);
}

.htb33 {
  background: linear-gradient(135deg, #FFB6C1, #FF69B4, #FF1493, #C71585);
}

.htb11:hover,
.htb22:hover,
.htb33:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.htb11:hover .htb-image,
.htb22:hover .htb-image,
.htb33:hover .htb-image {
  animation: zoom 2s ease-in-out infinite;
}

@keyframes zoom {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.htb-image {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 768px) {

  .htb11,
  .htb22,
  .htb33 {
    margin-bottom: 15px;
  }

  .htb11:hover,
  .htb22:hover,
  .htb33:hover {
    transform: translateY(-5px);
  }
}

.copy222 {
  transition: transform 0.3s ease-in-out;
}

.copy222:hover {
  transform: translateY(-10px);
  color: #ff6200;
  cursor: pointer;
}



/*start styles*/
.accordion {
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto;
}

.accordion-item {
  background-color: #0F1021;

  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  border-top: 1px solid transparent !important;
  border: 2px solid #6f64e966;
}

.accordion-item-header {
  padding: 0.5rem 3rem 0.5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  color: #CCCEEF;
  font-size: 18px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.accordion-item-header::after {
  content: "\002B";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
}

.accordion-item-header.active::after {
  content: "\2212";
}

.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
  padding: 1rem;
  line-height: 1.5rem;
  border-top: 1px solid;
  color: #7376aa;
  border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}

.left22 {
  margin-left: 40px;
}



/* match new section  */
.matchmaking img {
  max-height: 300px; /* Adjust this as needed */
  width: 100%;
  object-fit: contain; /* Ensures the image scales properly */
}

@media (max-width: 768px) {
  .matchmaking img {
    max-height: 200px; /* Smaller height for mobile screens */
  }
}