* {
  padding: 0;
  margin: 0;
}

body {
  background-color: #150000;
  background-image: linear-gradient(290deg, #150000 0%, #400000 55%, #500303 100%);
  min-height: 100vh;
}
:root {
  --alto: #d9d9d9;
  --black: #000000;
  --buttered-rum: #96720c99;
  --eunry: #cea48c;
  --star-dust: #a1a1a1;
  --sunglow: #fad248;
  --white: #ffffff;
  --white-2: #ffffff14;
  --white-3: #ffffff2b;
  --roo-color: #e3ba46;
  --font-size-l: 20px;
  --font-size-m: 18px;
  --font-size-s: 17px;
  --font-size-xl: 24px;
  --font-size-xxl: 25px;
  --font-size-xxxl: 92px;
  --font-size-xxxxl: 125px;
  --font-family-inter: "Inter", Helvetica;
  --font-family-jomhuria: "Jomhuria", Helvetica;
  --font-family-mulish: "Mulish", Helvetica;
}

.jomhuria {
  font-family: var(--font-family-jomhuria);
  color: var(--roo-color);
}
.jomhuria-font {
  font-family: var(--font-family-jomhuria);
}
.mulish {
  font-family: var(--font-family-mulish);
}

.btn-custom {
  background: linear-gradient(
    180deg,
    rgba(220, 169, 22, 1) 0,
    rgba(227, 186, 70, 1) 100%
  );
  border-radius: 10px;
  color: var(--white);
  text-shadow: 1px 1px 4px #96720c99;
  -webkit-text-stroke: 0.5px var(--buttered-rum);
}

.btn-custom-outline {
  border: 1px solid var(--sunglow);
  background-color: #dca9160f;
  border-radius: 10px;
  color: var(--white);
  text-shadow: 1px 1px 4px #96720c4c;
  text-stroke: 1px #96720c4a;
}

.btn-custom-outline:hover {
  border: 1px solid var(--sunglow);
  background-color: #c8990b40;
  border-radius: 10px;
  color: var(--white);
  text-shadow: 1px 1px 4px #96720c4c;
  text-stroke: 1px #96720c4a;
}

.header {
  background: var(--white-2);
  /* border-radius: 0 0 40px 40px; */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.faq-question {
  background-color: var(--white-2);
  border: 0.25px solid var(--star-dust);
  border-radius: 40px;
  padding: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.faq-question img {
  float: right;
  width: 31px;
  height: 31px;
}

.footer {
  /* background-color: rgb(12 18 33); */
  color: var(--alto);
}

.footer-links a {
  display: block;
  color: var(--alto);
  margin-bottom: 1rem;
}

@keyframes rotate-animation {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.fugu-hero-section2 {
  z-index: 0;
  overflow: hidden;
  padding: 100px 0 250px;
}

.fugu-hero-section2:before {
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 80%;
  z-index: -2;
  position: absolute;
  background: url(assets/images/coin-bg.svg) no-repeat;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: unset;
}

@media (max-width: 767px) {
  .fugu-hero-section2:before {
    border-radius: 0;
  }
}

.fugu-hero-content2 {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.fugu-hero-content2 p {
  padding: 0 70px;
}

@media (max-width: 550px) {
  .fugu-hero-content2 p {
    padding: 0;
  }
}

.fugu-shape4 {
  z-index: -1;
  position: absolute;
  top: 15%;
  left: 20%;
  -webkit-animation: float 4s ease-in-out infinite;
  animation: float 3s ease-in-out infinite;
  opacity: 0.6;
}
.fugu-shape3 {
  z-index: -1;
  position: absolute;
  top: 73%;
  -webkit-animation: float 4s ease-in-out infinite;
  animation: float 3s ease-in-out infinite;
  opacity: 0.6;
}
.fugu-shape2 {
  z-index: -1;
  position: absolute;
  top: 18%;
  left: 89%;
  -webkit-animation: float 4s ease-in-out infinite;
  animation: float 3s ease-in-out infinite;
  opacity: 0.6;
}

@media (max-width: 767px) {
  .fugu-shape4 {
    display: none;
  }
  .fugu-shape2 {
    display: none;
  }
  .fugu-shape3 {
    display: none;
  }
}

.fugu-shape5 {
  z-index: -1;
  position: absolute;
  right: 15%;
  bottom: 6%;
  -webkit-animation: jump 3s ease-in-out infinite;
  animation: jump 3s ease-in-out infinite;
  opacity: 0.35;
}

@media (max-width: 767px) {
  .fugu-shape5 {
    display: none;
  }
}

@-webkit-keyframes float {
  0% {
    transform: translatey(0);
  }

  50% {
    transform: translatey(-20px);
  }

  100% {
    transform: translatey(0);
  }
}

@keyframes float {
  0% {
    transform: translatey(0);
  }

  50% {
    transform: translatey(-20px);
  }

  100% {
    transform: translatey(0);
  }
}

@keyframes jump {
  0% {
    transform: translateY(20px);
  }

  50% {
    transform: translateY(-60px);
  }

  100% {
    transform: translateY(20px);
  }
}

.fugu--hero-section {
  z-index: 0;
  padding: 200px 0 120px;
  background-size: cover;
  position: relative;
  background-position: center bottom;
  background-color: var(--gray-800);
}

@media (max-width: 991px) {
  .fugu--hero-section {
    padding: 175px 0 100px;
  }
}

@media (max-width: 767px) {
  .fugu--hero-section {
    padding: 150px 0 80px;
  }
}

@media (max-width: 575px) {
  .fugu--hero-section {
    padding: 130px 0 80px;
  }
}

.fugu--hero-content {
  max-width: 636px;
}

.fugu--hero-content h1 {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
}

@media (max-width: 991px) {
  .fugu--hero-content {
    text-align: center;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .fugu--hero-content {
    max-width: 500px;
  }
}

.fugu--hero-content p {
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.5px;
  margin-right: 80px;
  color: #fff;
}

@media (max-width: 991px) {
  .fugu--hero-content p {
    margin-right: 0;
  }
}

.fugu--hero-shape1 {
  position: absolute;
  bottom: -116px;
  right: 14%;
  z-index: -1;
}

@media (max-width: 1600px) {
  .fugu--hero-shape1 {
    right: 3%;
  }
}

@media (max-width: 1400px) {
  .fugu--hero-shape1 {
    right: 0;
  }
}

@media (max-width: 1199px) {
  .fugu--hero-shape1 {
    bottom: 0;
    width: 70%;
  }
}

@media (max-width: 991px) {
  .fugu--hero-shape1 {
    right: 110px;
    width: 100%;
  }
}

.fugu--hero-shape2 {
  width: 18%;
  height: 37%;
  position: absolute;
  background: #2c04fe;
  opacity: 1;
  filter: blur(136.18px);
  border-radius: 100%;
  top: 15%;
  right: 10%;
  z-index: -1;
}

@media (max-width: 1600px) {
  .fugu--hero-shape2 {
    right: 0;
  }
}

.fugu--hero-section2 {
  z-index: 0;
  padding: 230px 0 235px;
  position: relative;
  background-color: var(--warning-600);
}

@media (max-width: 1199px) {
  .fugu--hero-section2 {
    padding: 150px 0 120px;
  }
}

@media (max-width: 767px) {
  .fugu--hero-section2 {
    padding: 150px 0 80px;
  }
}

@media (max-width: 479px) {
  .fugu--hero-section2 {
    padding: 120px 0 80px;
  }
}

.fugu--hero-content2 {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 991px) {
  .fugu--hero-content2 {
    max-width: 565px;
  }
}

@media (max-width: 767px) {
  .fugu--hero-content2 {
    max-width: 445px;
  }
}

.fugu--hero-content2 h1 {
  color: var(--gray-800);
  font-family: "Public Sans", sans-serif;
}

.fugu--hero-content2 p {
  margin-right: 0;
  color: var(--gray-800);
  margin: 0 20px;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.15, 1.15);
  }

  100% {
    transform: scale(1, 1);
  }
}

.fugu--hero-section3 {
  z-index: 0;
  padding: 280px 0 120px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: var(--gray-800);
}

.logo {
  max-height: 50px;
}

/* Brand name displayed next to logo in header */
.logo-link {
  text-decoration: none;
}

.brand-name {
  font-family: var(--font-family-jomhuria);
  color: var(--roo-color);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.1;
  margin-left: 0.5rem;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 0 rgba(0,0,0,0.25);
}

@media (max-width: 576px) {
  .brand-name {
    font-size: 1.25rem;
    font-weight: 500;
  }
}

.nav-link {
  position: relative;
  display: inline-block; /* Ensure the pseudo-element aligns correctly */
  text-decoration: none; /* Optional: removes the default underline */
  color: #fff !important;
  font-family: Mulish, sans-serif;
  padding: 8px 15px; /* Provides some spacing around the text */
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px; /* Height of the underline */
  background-color: var(--roo-color);
  bottom: 0; /* Aligns the underline right at the bottom of the text */
  left: 0;
  transition: width 0.3s ease; /* Smooth transition for the underline */
}

.nav-link:hover::after {
  width: 100%; /* Extends the underline across the full width of the link */
}

.nav-link.active {
  color: var(--roo-color) !important;
}

a {
  text-decoration: none;
}

.btn-custom {
  background-color: #007bff;
  color: #fff;
}

.btn-custom:hover {
  background-color: #0056b3;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23E3BA46' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.fade-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(
    180deg,
    rgb(28 20 86) 0,
    rgba(52, 58, 64, 0) 100%
  );
  z-index: -1;
}

.content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
}

.text-eunry {
  color: white;
}

.custom-btn {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(220, 169, 22, 1) 0,
    rgba(227, 186, 70, 1) 100%
  );
  border-radius: 10px;
  color: var(--white);
  text-shadow: 1px 1px 4px #96720c99;
  -webkit-text-stroke: 0.5px var(--buttered-rum);
  border: none;
  padding: 0;
  color: #fff;
  font-family: Inter, sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-decoration: none;
}

.custom-btn::before {
  content: "";
  width: 60%;
  height: 100%;
  position: absolute;
  left: -30%;
  top: 0;
  background: rgba(250, 210, 72, 0.8);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  transform: rotate(55deg);
  transition: all 0.3s ease;
}

.custom-btn:hover::before {
  left: 50%;
  width: 100%;
}

.custom-btn .btn-text {
  position: relative;
  z-index: 1;
  padding: 20px 30px;
  text-align: center;
  word-wrap: break-word;
  text-decoration: none;
  color: white;
}

.custom-btn .btn-text-small {
  position: relative;
  z-index: 1;
  padding: 20px 10px;
  text-align: center;
  word-wrap: break-word;
  font-size: 1rem;
  text-decoration: none;
  color: white;
}

@media (max-width: 768px) {
  .custom-btn {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .custom-btn {
    font-size: 1rem;
  }

  .custom-btn::before {
    width: 70%;
  }
}

.big-text {
  font-size: 4rem;
  line-height: 0.2;
}

.big-text-2 {
  font-size: 2rem;
  line-height: 0.55;
}

.big-text-3 {
  font-size: 1.5rem;
  line-height: 0.55;
}

@media (min-width: 576px) {
  .big-text {
    font-size: 5rem;
  }

  .big-text-2 {
    font-size: 2.5rem;
  }

  .big-text-3 {
    font-size: 1.75rem;
  }
}

@media (min-width: 768px) {
  .big-text {
    font-size: 6rem;
  }

  .big-text-2 {
    font-size: 3rem;
  }

  .big-text-3 {
    font-size: 2rem;
  }
}

@media (min-width: 992px) {
  .big-text {
    font-size: 7rem;
  }

  .big-text {
    font-size: 3.5rem;
  }

  .big-text-3 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1200px) {
  .big-text {
    font-size: 8rem;
  }

  .big-text-2 {
    font-size: 4rem;
  }

  .big-text-3 {
    font-size: 2.5rem;
  }
}

@media (max-width: 991px) {
  .fugu-hero-section2 {
    padding: 150px 0 250px;
  }

  .fugu-hero-section2:before {
    height: 90%;
  }
}

@media (max-width: 767px) {
  .fugu-hero-section2 {
    padding: 150px 0 250px;
  }

  .fugu-hero-section2:before {
    height: 92%;
  }
}

@media (max-width: 479px) {
  .fugu-hero-section2 {
    padding: 150px 0 250px;
  }

  .fugu-hero-section2:before {
    height: 95%;
  }
}

@media (max-width: 767px) {
  .fugu-hero-section2:after {
    content: "";
    left: 0;
    top: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    position: absolute;
  }
}

.fade-background-2 {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
  height: 25vh;
  /* background: linear-gradient(
    0deg,
    #e3ba46 10%,
    rgba(227, 186, 70, 0.8) 25%,
    rgba(227, 186, 70, 0.6) 40%,
    rgba(227, 186, 70, 0.4) 55%,
    rgba(227, 186, 70, 0.2) 70%,
    rgba(35, 28, 95, 0) 100%
  ); */
  z-index: -1;
}

@media (min-width: 1081px) {
  .fade-background-2 {
    bottom: 15%; /* Higher up than on smaller screens */
  }
}

@media (max-width: 991px) {
  .fade-background-2 {
    bottom: 10%;
  }
}

@media (max-width: 767px) {
  .fade-background-2 {
    bottom: 10%;
    height: 30vh;
  }
}

@media (max-width: 479px) {
  .fade-background-2 {
    bottom: 5%;
    height: 35vh;
  }
}

.fade-waves {
  position: absolute;
  bottom: -15%;
  left: 0;
  width: 100%;
  height: 25vh;
  background: url(assets/images/wavesopacity-1.svg) no-repeat;
  background-size: contain;
  z-index: -1;
}

@media (min-width: 1081px) {
  .fade-waves {
    bottom: -10%; /* More negative to move it up slightly */
  }
}

@media (max-width: 991px) {
  .fade-waves {
    bottom: -15%;
  }
}

@media (max-width: 767px) {
  .fade-waves {
    bottom: -20%;
    height: 30vh;
    background-size: contain;
  }
}

@media (max-width: 479px) {
  .fade-waves {
    bottom: -33%;
    height: 35vh;
  }
}

.step {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.step img {
  width: 80px;
  height: 80px;
  margin-right: 1.5rem;
}

.step-content h3 {
  margin-bottom: 0.5rem;
  color: #007bff;
}

.step-content p {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .step {
    flex-direction: column;
    text-align: center;
  }

  .step img {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

.custom-card {
  background-color: #ffffff20;
  padding: 15px;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease-in-out;
}

.custom-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.1);
}

.semicircle {
  position: absolute;
  bottom: -30px;
  right: -60px;
  width: 60px;
  height: 60px;
  background: url(assets/images/semicircular.svg) no-repeat;
  background-size: cover;
  z-index: 1;
}

@media (max-width: 767px) {
  .semicircle {
    display: none;
  }
}

.jomhuria {
  font-family: var(--font-family-jomhuria);
  color: var(--roo-color);
}

.step img {
  width: 80px;
  height: 80px;
}

@media (max-width: 768px) {
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step img {
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
  }
}

.custom-card {
  background-color: var(--white-3);
  padding: 15px;
  border-radius: 50px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .custom-card {
    padding: 10px;
  }
}

.btn-custom {
  padding: 10px 20px;
  font-size: var(--font-size-m);
}

@media (max-width: 768px) {
  .btn-custom {
    padding: 8px 16px;
    font-size: var(--font-size-s);
  }
}

.fade-background-2 {
  height: 25vh;
}

@media (max-width: 768px) {
  .fade-background-2 {
    height: 30vh;
  }
}

.footer,
.header,
.nav {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .footer,
  .header,
  .nav {
    flex-direction: column;
  }
}

.image-with-svg {
  position: relative;
  width: 100%; /* Ensures the container is fully responsive */
  display: flex; /* Aligns children inline */
  justify-content: center; /* Centers the children */
  align-items: center; /* Aligns items vertically in the center */
}

.overlay-svg {
  position: absolute; /* Position the SVG absolutely within the relative container */
  top: -45%; /* Align to the top of the container */
  width: 100%; /* SVG covers the full width of the container */
  height: auto; /* Maintain aspect ratio */
  z-index: 2; /* Ensures the SVG is above the image */
}

.underlying-image {
  width: 100%; /* Image fills the container */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Removes any space below the image */
  z-index: 1; /* Keeps the image below the SVG */
}

/* Default padding for larger screens */
.responsive-padding {
  padding-top: 10vh;
  padding-bottom: 10vh;
}

/* Adjust padding for tablets */
@media (max-width: 768px) {
  .responsive-padding {
    padding-top: 5vh;
    padding-bottom: 5vh;
  }
}

/* Further adjust padding for mobile phones */
@media (max-width: 480px) {
  .responsive-padding {
    padding-top: 15vh;
    padding-bottom: 2vh;
  }
}

/* Targets the whole accordion item for background and spacing */
.accordion-item {
  background-color: rgba(255, 255, 255, 0.08); /* Using RGBA for opacity */
  border: 1px solid #a1a1a1; /* Adjust border thickness and color */
  border-radius: 25px; /* Rounded corners */
  margin-bottom: 10px; /* Adds space between accordion items */
}

/* Optionally, you can also set the background color for the header to match */
.accordion-item .accordion-header .accordion-button {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 25px; /* Rounded corners on top */
  padding: 0.8rem 1.25rem; /* Adjust padding for better spacing */
  color: #ffffff; /* Text color */
}

/* To maintain the background color when the accordion is open */
.accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: rgba(
    255,
    255,
    255,
    0.15
  ); /* Slightly darker for active state */
  border-radius: 25px; /* Maintain rounded corners on top */
}

/* Targets the body of each accordion item */
.accordion-item .accordion-collapse {
  border-radius: 25px; /* Rounded corners on bottom */
}

.accordion-button:focus {
  box-shadow: none; /* Removes the default focus outline */
}
.accordion-button::after {
  background-image: url(assets/images/accordion_btn.svg);
  height: 30px;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(assets/images/accordion_btn.svg);
  height: 30px;
  transform: rotate(90deg);
}

.accordion-item:first-of-type {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.accordion-item:first-of-type > .accordion-header .accordion-button {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}

.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}

.accordion-item:not(:first-of-type) {
  border-top: 1px solid #a1a1a1;
}

.accordion-item {
  border-bottom: 1px solid #a1a1a1;
  color: #ffffff;
}

/* Style for the accordion container */
/* Styling for the accordion container on all screen sizes */
.containe-accordion {
  margin-top: 85px; /* Consistent top margin for all screens */
  margin-left: -120px;
  width: calc(100% + 30px);
}

/* Specific styles for large screens (desktops) */
@media (min-width: 992px) {
  .containe-accordion {
    margin-left: -100px; /* Negative margin only for large screens */
    margin-top: 80px;
  }
}

/* Reset styles and adjustments for tablets and smaller screens */
@media (max-width: 991px) {
  .containe-accordion {
    margin-left: 0; /* Reset left margin to prevent content overflow */
  }

  .col-lg-6 img {
    display: none; /* Hide the image on smaller devices */
  }

  .col-lg-6 {
    padding: 0 15px; /* Add padding to ensure content is not too wide */
  }

  .accordion {
    margin-top: 20px; /* Additional top margin for better spacing */
  }
}

@media (min-width: 992px) {
  /* Affects screens larger than 991px */
  .containe-accordion {
    position: relative; /* Establishes a positioning context */
    left: -15px; /* Moves the entire element slightly to the left */
    width: calc(50% + 100px); /* Expands width beyond the parent column */
  }
}

@media (max-width: 767px) {
  /* For mobile devices to keep the layout contained */
  .containe-accordion {
    position: relative;
    left: 0;
    width: 100%; /* Ensures it fits within small screens without overflow */
  }
}
/*==============================
	Company
==============================*/
.company {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 94%;
  border-radius: 25px 10px 10px 10px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  position: relative;
  padding: 45px 45px;
  z-index: 2;
  margin: 3% !important;
}

.company__title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 30px;
}
.company__subtitle {
  font-size: 16px;
  line-height: 26px;
  color: #d0d0d0;
  margin-bottom: 15px;
  margin-top: 20px;
  font-weight: 200;
}
.company__text {
  font-size: 16px;
  line-height: 26px;
  color: #d0d0d0;
  margin-bottom: 20px;
}
.company__text b {
  color: #fff;
  font-weight: 500;
}
.company__text:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .company__title {
    font-size: 32px;
    line-height: 42px;
  }
}
@media (min-width: 992px) {
  .company {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .company__subtitle {
    margin-top: 0;
  }
}

#canvas2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Place the animated background behind the content */
}

.row--relative {
  position: relative;
}

.company {
  position: relative;
  z-index: 1; /* Ensure the company content is in front of the animated background */
}

.block-icon {
  position: relative;
  z-index: 2; /* Ensure icons are in front of other content if necessary */
}

.screw {
  position: relative;
  z-index: 2; /* Ensure screws are in front of other content if necessary */
}

.vanta-canvas {
  border-radius: 25px;
  opacity: 20%;
}

.image-container {
  position: relative;
  overflow: hidden;
}
.image-background {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  max-height: 500px;
  border-radius: 25px;
}
.image-foreground {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  max-height: 500px;
  width: 50%;
}

.svg-container {
  width: 100%;
  height: 0;
  padding-bottom: 8.33%; /* Aspect ratio 1440/120 = 12, 100% / 12 = 8.33% */
  position: relative;
}

.svg-container svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

footer {
  background-color: #524c7f;
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  margin-top: -20px; /* Adjust margin to overlap the SVG */
}

.footer-section {
  text-align: left;
}

.footer-section h5 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.footer-section p,
.footer-section a {
  font-size: 0.9rem;
  color: #ffffffc7;
  text-decoration: none;
  font-weight: 100;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 20px;
  font-size: 0.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom img {
  height: 20px;
  margin-left: 10px;
}

.fade_rule {
  height: 1px;
  background-color: #e6e6e6;
  margin: 0 auto;

  background-image: -webkit-gradient(
    linear,
    left bottom,
    right bottom,
    color-stop(0.02, #524c80),
    color-stop(0.5, white),
    color-stop(0.98, #524c80)
  );
}

.footer-icons .icon {
  height: 14px; /* Adjust the height as needed */
  transition: transform 0.3s ease; /* Smooth transition for hover effect */
}

.footer-icons a {
  margin-left: 10px; /* Spacing between icons */
}

.footer-icons a:hover .icon {
  transform: scale(1.1); /* Scales up the icon on hover */
}

/* Base CSS - Ensures images are visible on desktops */
.image-container {
  display: block;
}

/* CSS Media Queries to hide on tablets and phones */
@media (max-width: 991px) {
  /* Covers tablets and mobile devices */
  .image-container {
    display: none;
  }
}

.rules-custom-btn {
  border-radius: 10px;
  text-shadow: 1px 1px 4px #cf9c0adb;
  -webkit-text-stroke: 0.5px var(--buttered-rum);
  border: none;
  padding: 10px;
  padding-right: 25px;
  padding-left: 20px;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: "Jomhuria";
  font-size: xxx-large;
  transition: all 0.3s ease;
  box-shadow: -5px 7px 20px #ffc107;
  line-height: 0.6;
  background-color: #524c7f;
  border: 1px solid var(--roo-color);
}

.rules-custom-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-decoration: none;

  border-radius: 10px;
  text-shadow: 1px 1px 4px #cf9c0adb;
  -webkit-text-stroke: 0.5px var(--buttered-rum);
  border: none;
  padding: 10px;
  padding-right: 25px;
  padding-left: 20px;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: "Jomhuria";
  font-size: xxx-large;
  transition: all 0.3s ease;
  box-shadow: 5px 7px 20px #ffc107;
  line-height: 0.6;
  background-color: #524c7f;
  border: 1px solid var(--roo-color);
}

.lead_2 {
  padding: 20px;
  color: #c5c5c5;
  font-size: 13px;
  text-align: -webkit-center;
  transition: transform 0.5s ease-in-out;
  border-radius: 10px;
  border: 2px solid #bab5b33d;
  background: linear-gradient(
    150deg,
    rgb(255 255 255 / 10%) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  /* backdrop-filter: blur(10px); */
  -webkit-backdrop-filter: blur(10px);
}

.avatar-container-gold {
  position: relative;
  width: 140px;
  height: 105px;
  margin: 0 auto;
  top: 18px;
  left: 3px;
}

.avatar-container-gold::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px; /* Adjust based on the wings image size */
  height: 200px; /* Adjust based on the wings image size */
  background-image: url("assets/images/wings_gold.png"); /* Replace with the URL of the wings image */
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  z-index: -1; /* Ensure it stays behind the circle */
}

.avatar-container-silver {
  position: relative;
  width: 140px;
  height: 105px;
  margin: 0 auto;
  top: 18px;
  left: 3px;
}

.avatar-container-silver::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px; /* Adjust based on the wings image size */
  height: 200px; /* Adjust based on the wings image size */
  background-image: url("assets/images/wings_silver.png"); /* Replace with the URL of the wings image */
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  z-index: -1; /* Ensure it stays behind the circle */
}

.avatar-container-bronze {
  position: relative;
  width: 140px;
  height: 105px;
  margin: 0 auto;
  top: 18px;
  left: 3px;
}

.avatar-container-bronze::before {
  /* content: ""; */
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px; /* Adjust based on the wings image size */
  height: 200px; /* Adjust based on the wings image size */
  background-image: url("assets/images/wings_bronze.png"); /* Replace with the URL of the wings image */
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  z-index: -1; /* Ensure it stays behind the circle */
}

.avatar {
  border-radius: 100%;
  width: 50%;
  height: 66%;
  top: 25%;
  background-position: center;
  background-size: cover;
  box-shadow: 0 0 9px 2px #000, 0 0 12px 3px rgb(0 0 0) inset;
  position: relative;
  z-index: 1;
}

.user_name {
  padding-top: 31px;
  font-weight: 600;
  font-size: 28px;
  text-align: center;
  color: #fff;
  padding-bottom: 19px;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
}

.wageredText {
  padding: 5px;
  font-size: 16px;
  text-transform: uppercase;
}

.wagered {
  width: 140px;
  background: #13143226;
  padding: 20px;
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed;
}

/* .prize-roo {
  color: var(--roo-color);
} */

.prize {
  width: 230px;
  background: #13143261;
  padding: 20px;
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: 800;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lead_2::after {
  position: absolute;
  top: 0;
  right: 0;

  color: #000;
  padding: 5px 10px;
  border-radius: 0 8px 0 10px;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .lead_2::after {
    display: none;
  }
}

.lead_1 {
  padding: 20px;
  color: #c5c5c5;
  font-size: 13px;
  text-align: -webkit-center;
  transition: transform 0.5s ease-in-out;
  border-radius: 10px;
  border: 2px solid #ffc1073d;
  background: linear-gradient(
    150deg,
    rgb(255 245 0 / 10%) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  /* backdrop-filter: blur(10px); */
  /* -webkit-backdrop-filter: blur(10px); */
}

.lead_1::after {
  position: absolute;
  top: 0;
  right: 0;
  color: #000;
  padding: 5px 10px;
  border-radius: 0 8px 0 10px;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .lead_1::after {
    display: none;
  }
}

.lead_3 {
  padding: 20px;
  color: #c5c5c5;
  font-size: 13px;
  text-align: -webkit-center;
  transition: transform 0.5s ease-in-out;
  border-radius: 10px;
  border: 2px solid #ff8d073d;
  background: linear-gradient(
    150deg,
    rgb(166 50 50 / 5%) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  /* backdrop-filter: blur(10px); */
  /* -webkit-backdrop-filter: blur(10px); */
}

.lead_3::after {
  position: absolute;
  top: 0;
  right: 0;
  color: #000;
  padding: 5px 10px;
  border-radius: 0 8px 0 10px;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .lead_3::after {
    display: none;
  }
}
#countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.time-box {
  background: #1314326e;
  padding: 5px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60px;
  border: 1px solid var(--roo-color);
}

.time-number {
  font-size: 30px;
  color: var(--roo-color);
  font-weight: bold;
}
.time-label {
  color: #aaa;
  opacity: 0.7;
  font-size: 15px;
}

/*==============================
	Deals
==============================*/
.deals {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 24px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  padding: 50px 60px;
}
.deals__table-wrap {
  width: 100%;
  position: relative;
}
.deals__table {
  width: 100%;
  min-width: 992px;
  border-spacing: 0;
}
.deals__table thead {
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}
.deals__table thead th {
  font-size: 16px;
  color: greenyellow;
  font-weight: 400;
  padding: 20px 15px;
  line-height: 100%;
  margin-bottom: 0;
  border: none;
  text-transform: uppercase;
}
.deals__table thead th:first-child {
  padding-left: 0;
}
.deals__table thead th:last-child {
  padding-right: 0;
}
.deals__table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.deals__table tbody tr:last-child {
  border-bottom: none;
}
.deals__table tbody td {
  padding: 20px 15px;
}
.deals__table tbody td:first-child {
  padding-left: 0;
}
.deals__table tbody td:last-child {
  padding-right: 0;
}
.deals__text {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
}
.deals__text i {
  font-size: 20px;
}
.deals__text--green {
  color: #20be60;
}
/* .deals__text--buy i {
  color: #20be60;
} */
.deals__text--sell i {
  color: #e2293b;
}
.deals__exchange {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.deals__exchange img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 5px;
}
.deals__exchange span {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
}
.deals__exchange span.green {
  color: #20be60;
}
.deals__exchange span.red {
  color: #e2293b;
}
.deals__exchange i {
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  margin: 0 10px;
}

.deals {
  position: relative;
}

.chest-decoration {
  position: absolute;
  bottom: 0px;
  right: 20%;
  height: auto;
}

.modal-dialog-scrollable {
  max-height: calc(100% - 3.5rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.table-responsive {
  max-height: 400px;
  overflow-y: auto;
}

.custom-card-how {
  background-color: #2c235300;
  border-radius: 20px;
  color: white;
  padding-left: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--roo-color);
}
.circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 25px;
  margin-right: 15px;
  border: 1px solid var(--roo-color);
}

.img-container {
  position: relative;
  padding: 0;
}
.img-container img {
  display: block;
  width: 100%;
  height: 120px;
}
.img-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(44 35 83 / 0%), rgb(48 38 108));
  z-index: 1;
  border-radius: 0px 20px 20px 0px;
}
.custom-container {
  padding-top: 100px;
}
.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.company {
  position: relative;
}

.icon-circle {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border: 2px solid rgba(255, 255, 255, 0.05);
}

.icon-circle i {
  color: white;
  font-size: 16px;
}

/* TABLE */

.modal-backdrop {
  background-color: rgba(48, 38, 108, 0.8);
}

.modal-content {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(48, 38, 108, 0.2);
}

.modal-header {
  background-color: rgb(48 38 108 / 89%);
  border-bottom: 1px solid rgba(48, 38, 108, 0.2) !important;
  padding: 1rem;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
}

.modal-body {
  padding: 1.5rem;
  background-color: #362b6f;
  color: #ffffff82;
}

.modal__text {
  font-size: 1.1rem;
}

.table-responsive {
  max-height: 400px;
  overflow-y: auto;
  margin-top: 1rem;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
}

.custom-table th,
.custom-table td {
  vertical-align: top;
  border-top: 1px solid rgba(48, 38, 108, 0.2);
}

.custom-table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid rgba(48, 38, 108, 0.2);
  background-color: rgb(48 38 108 / 90%);
  font-weight: bold;
}

.modal-footer {
  background-color: rgb(48 38 108 / 89%);
  border-top: 1px solid rgba(48, 38, 108, 0.2) !important;
  padding: 1rem;
}

.btn-secondary {
  background-color: rgba(48, 38, 108, 0.8);
  border-color: rgba(48, 38, 108, 0.8);
}

.btn-secondary:hover {
  background-color: rgba(48, 38, 108, 0.9);
  border-color: rgba(48, 38, 108, 0.9);
}

.btn-primary {
  background-color: #30266c;
  border-color: #30266c;
}

.btn-primary:hover {
  background-color: #221a4d;
  border-color: #221a4d;
}

.table {
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-color: #ddd;
  --bs-table-bg: rgb(48 38 108);
  --bs-table-border-color: #ffffff17;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-emphasis-color);
  --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
  --bs-table-active-color: var(--bs-emphasis-color);
  --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
  --bs-table-hover-color: var(--bs-emphasis-color);
  --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
  width: 100%;
  margin-bottom: 0px;
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}

.article__content {
  font-size: 16px;
  line-height: 26px;
  color: #d0d0d0;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .header {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

.home-logo {
  width: 300px;
  height: 300px;
  /* box-sizing: border-box; */
  border: transparent;
  /* border-radius: 50%; */
  overflow: hidden;
  box-shadow: none;
  transform: translatey(0px);
  animation: float 6s ease-in-out infinite;
  img {
    width: 100%;
    height: auto;
  }
}

@keyframes float {
  0% {
    /* box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6); */
    transform: translatey(0px);
  }
  50% {
    /* box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2); */
    transform: translatey(-20px);
  }
  100% {
    /* box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6); */
    transform: translatey(0px);
  }
}

.total-given-away {
  font-size: 3rem;
  font-weight: bold;
  color: beige;
}
.given-away {
  color: yellow;
  font-size: 4rem;
  margin-top: -20px;
  font-family: Arial, Helvetica, sans-serif;
}
.dollar-signs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.dollar-signs span {
  font-size: 2rem;
  color: #00ff00;
}
.dollar-signs span:nth-child(odd) {
  color: #000000;
}

.givenAwayWrapper {
  background: url("/assets/img/TOTAL\ GIVENAWAY\ final.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
  position: relative;
}

.given-away-text {
  color: #fff;
  font-size: 30px;
  text-align: center;
  position: absolute;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Arial, Helvetica, sans-serif;
}

.given-away-text-dollar {
  color: green;
  font-size: 30px;
  /* text-align: left; */
  position: absolute;
  bottom: 75px;
  left: 42%;
  transform: translateX(-50%);
  font-family: Arial, Helvetica, sans-serif;
}

ul {
  list-style: none;
}

.main {
  max-width: 75rem;
  padding: 3em 1.5em;
}
.main__heading {
  font-weight: 600;
  font-size: 2.25em;
  margin-bottom: 0.75em;
  text-align: center;
  color: #eceff1;
}
.cards {
  position: relative;
}
.cards__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5em;
}
.card {
  --flow-space: 0.5em;
  --hsl: var(--hue), var(--saturation), var(--lightness);
  flex: 1 1 14rem;
  padding: 1.5em 2em;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-items: start;
  gap: 1.25em;
  color: white;
  background-color: #000;
  border: 1px solid #eceff133;
  border-radius: 15px;
}
.card:nth-child(1) {
  --hue: 165;
  --saturation: 82.26%;
  --lightness: 51.37%;
}
.card:nth-child(2) {
  --hue: 291.34;
  --saturation: 95.9%;
  --lightness: 61.76%;
}
.card:nth-child(3) {
  --hue: 338.69;
  --saturation: 100%;
  --lightness: 48.04%;
}
.card__bullets {
  line-height: 1.4;
}
.card__bullets li::before {
  display: inline-block;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='16' title='check' fill='%23dddddd'%3E%3Cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z' /%3E%3C/svg%3E");
  transform: translatey(0.25ch);
  margin-right: 1ch;
}
.card__heading {
  font-size: 1.05em;
  font-weight: 600;
  text-align: center;
}
.card__price {
  font-size: 1em;
  font-weight: 700;
  text-align: center;
}
.flow > * + * {
  margin-top: var(--flow-space, 1.25em);
}
.cta {
  display: block;
  align-self: end;
  margin: 1em 0 0.5em 0;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #0d0d0d;
  padding: 0.7em;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
}
.overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
  opacity: var(--opacity, 0);
  -webkit-mask: radial-gradient(
    25rem 25rem at var(--x) var(--y),
    #000 1%,
    transparent 50%
  );
  mask: radial-gradient(
    25rem 25rem at var(--x) var(--y),
    #000 1%,
    transparent 50%
  );
  transition: 400ms mask ease;
  will-change: mask;
}
.overlay .card {
  background-color: hsla(var(--hsl), 0.15);
  border-color: hsla(var(--hsl), 1);
  box-shadow: 0 0 0 1px inset hsl(var(--hsl));
}
.overlay .cta {
  display: block;
  grid-row: -1;
  width: 100%;
  background-color: hsl(var(--hsl));
  box-shadow: 0 0 0 1px hsl(var(--hsl));
}
:not(.overlay) > .card {
  transition: 400ms background ease;
  will-change: background;
}
:not(.overlay) > .card:hover {
  --lightness: 95%;
  /* background: hsla(var(--hsl), 0.1); */
}

.container-register {
  margin-top: 200px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 200px;
}

.container-register .text {
  font-size: 55px;
  text-align: center;
}

.container-register .text2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  text-align: center;
  color: white;
  margin-top: 15px;
}

.container-register .how-to-register {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  flex-wrap: wrap;
  font-family: Arial, Helvetica, sans-serif;
}

.container-register .how-to-register .line {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.container-register .how-to-register .line > div {
  margin-left: 50px;
  margin-right: 50px;
  color: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
}

.container-register .how-to-register .line div .btn {
  width: 145px;
  /* background: linear-gradient(270deg, #86ea8f 0%, #57a05a 100%); */
  text-align: center;
  line-height: 30px;
  border-radius: 15px;
  margin-top: 25px;
  cursor: pointer;
}

.crew {
  color: #fffb00;
}

@media only screen and (max-width: 900px) {
  .container-register {
    padding: 0px 50px;
  }
  .container-register .text {
    font-size: 40px;
  }
  .container-register .how-to-register .line {
    display: block;
    text-align: center;
  }
  .container-register .how-to-register .line > div:nth-child(2) {
    margin-top: 50px;
  }
  .container-register .how-to-register .line img {
    width: 100%;
    margin-top: 20px;
    margin-bottom: -35px;
  }
}

/* Social Media Cards Section */
.socials-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.social-card {
  width: 100%;
  max-width: 280px;
  background: linear-gradient(135deg, rgba(227, 186, 70, 0.1) 0%, rgba(227, 186, 70, 0.05) 100%);
  border: 1.5px solid rgba(227, 186, 70, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-card:hover {
  transform: translateY(-10px);
  border-color: rgba(227, 186, 70, 0.6);
  background: linear-gradient(135deg, rgba(227, 186, 70, 0.15) 0%, rgba(227, 186, 70, 0.1) 100%);
  box-shadow: 0 15px 40px rgba(227, 186, 70, 0.2);
}

.social-card-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  background: linear-gradient(135deg, rgba(227, 186, 70, 0.15) 0%, rgba(227, 186, 70, 0.05) 100%);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.social-card:hover .social-card-inner {
  background: linear-gradient(135deg, rgba(227, 186, 70, 0.25) 0%, rgba(227, 186, 70, 0.15) 100%);
  transform: scale(1.05);
}

.social-icon {
  color: var(--roo-color);
  transition: all 0.3s ease;
}

.social-card:hover .social-icon {
  color: var(--sunglow);
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px rgba(227, 186, 70, 0.6));
}

.social-card h5 {
  font-family: var(--font-family-inter);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.social-card .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-card .btn-outline-light:hover {
  background-color: var(--roo-color);
  border-color: var(--roo-color);
  color: #000;
  text-shadow: none;
}

@media (max-width: 768px) {
  .socials-section {
    padding: 60px 0;
  }

  .social-card {
    max-width: 100%;
    padding: 35px 25px;
  }

  .social-card-inner {
    height: 120px;
  }

  .social-card h5 {
    font-size: 1.1rem;
  }
}