@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  background-color: #000000;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Loader */
.loader-container {
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  color: #ed751f;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 99999;
  position: fixed;
}

.loader-container p {
  display: inline-block;
  text-transform: uppercase;
  text-align: center;
  font-size: 38px;
  font-weight: 400;
  transform: scale(0.5);
  color: #121212;
  -webkit-text-stroke: 2px gray;
}

.loader-container p:nth-child(1) { animation: hover 1s linear infinite; }
.loader-container p:nth-child(2) { animation: hover 1s linear infinite 0.125s; }
.loader-container p:nth-child(3) { animation: hover 1s linear infinite 0.25s; }
.loader-container p:nth-child(4) { animation: hover 1s linear infinite 0.375s; }
.loader-container p:nth-child(5) { animation: hover 1s linear infinite 0.5s; }
.loader-container p:nth-child(6) { animation: hover 1s linear infinite 0.675s; }
.loader-container p:nth-child(7) { animation: hover 1s linear infinite 0.75s; }
.loader-container p:nth-child(8) { animation: hover 1s linear infinite 0.875s; }
.loader-container p:nth-child(9) { animation: hover 1s linear infinite 1s; }
.loader-container p:nth-child(10) { animation: hover 1s linear infinite 1.125s; }
.loader-container p:nth-child(11) { animation: hover 1s linear infinite 1.25s; }
.loader-container p:nth-child(12) { animation: hover 1s linear infinite 1.375s; }
.loader-container p:nth-child(13) { animation: hover 1s linear infinite 1.5s; }
.loader-container p:nth-child(14) { animation: hover 1s linear infinite 1.625s; }
.loader-container p:nth-child(15) { animation: hover 1s linear infinite 1.75s; }

@keyframes hover {
  0% {
    transform: scale(0.5);
    color: #121212;
    -webkit-text-stroke: 2px rgb(0, 0, 0);
  }
  20% {
    transform: scale(1);
    color: #ed751f;
    -webkit-text-stroke: 2px #ed751f;
  }
  50% {
    transform: scale(0.5);
    color: #fff;
    -webkit-text-stroke: 2px white;
  }
}

/* Reveal Animation */
.reveal {
  position: relative;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.reveal.active {
  opacity: 1;
  transform: translate(0);
}

.active.fade3 {
  animation: fade3 1.4s ease-in-out;
}

@keyframes fade3 {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}



/* Hero Section */
.legal-hero {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  padding: 100px 20px 60px;
  text-align: center;
  border-bottom: 2px solid #ed751f;
}

.legal-hero h1 {
  font-size: 48px;
  color: #ed751f;
  margin-bottom: 20px;
  font-weight: 700;
}

.legal-hero h1 i {
  margin-right: 15px;
}

.legal-hero p {
  font-size: 20px;
  color: #dcdcdc;
  max-width: 700px;
  margin: 0 auto 15px;
}

.legal-hero .last-updated {
  font-size: 14px;
  color: #888;
  margin-top: 20px;
}

.legal-hero .last-updated span {
  color: #ed751f;
  font-weight: 600;
}

/* Legal Container */
.legal-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
}

/* Sidebar */
.legal-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.table-of-contents {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 25px;
  position: sticky;
  top: 100px;
}

.table-of-contents h3 {
  color: #ed751f;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

.table-of-contents h3 i {
  margin-right: 10px;
}

.table-of-contents ul {
  list-style: none;
  padding: 0;
}

.table-of-contents ul li {
  margin-bottom: 12px;
}

.table-of-contents ul li a {
  color: #dcdcdc;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.table-of-contents ul li a i {
  margin-right: 8px;
  font-size: 10px;
  color: #ed751f;
}

.table-of-contents ul li a:hover {
  background: #2a2a2a;
  color: #ed751f;
  padding-left: 16px;
}

/* Legal Content */
.legal-content {
  background: #0a0a0a;
  border-radius: 8px;
  padding: 50px;
}

.legal-section {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2a2a2a;
}

.legal-section:last-child {
  border-bottom: none;
}

.section-header {
  margin-bottom: 25px;
}

.section-header h2 {
  font-size: 32px;
  color: #ed751f;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.section-header h2 i {
  margin-right: 15px;
  font-size: 28px;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #dcdcdc;
  margin-bottom: 20px;
}

.link {
  color: #ed751f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.link:hover {
  color: #ff8c42;
  text-decoration: underline;
}

/* Important Box */
.important-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 2px solid #ed751f;
  border-radius: 8px;
  padding: 25px;
  margin: 25px 0;
  display: flex;
  align-items: flex-start;
}

.important-box i {
  color: #ed751f;
  font-size: 32px;
  margin-right: 20px;
  margin-top: 5px;
}

.important-box p {
  margin: 0;
  font-size: 17px;
  color: #ffffff;
}

.important-box strong {
  color: #ed751f;
}

/* Acceptance List */
.acceptance-list {
  margin: 25px 0;
}

.acceptance-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: #1a1a1a;
  border-radius: 8px;
  border-left: 4px solid #ed751f;
}

.acceptance-item i {
  color: #ed751f;
  font-size: 20px;
  margin-right: 15px;
  margin-top: 3px;
}

.acceptance-item p {
  margin: 0;
  color: #dcdcdc;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.service-item {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-item:hover {
  border-color: #ed751f;
  transform: translateY(-5px);
}

.service-item i {
  font-size: 32px;
  color: #ed751f;
  margin-bottom: 10px;
}

.service-item h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.note {
  background: #1a1a1a;
  border-left: 4px solid #ed751f;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
}

.note i {
  color: #ed751f;
  margin-right: 10px;
  margin-top: 3px;
}

/* Link Box */
.link-box {
  background: #1a1a1a;
  border-left: 4px solid #ed751f;
  padding: 20px;
  margin: 25px 0;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
}

.link-box i {
  color: #ed751f;
  font-size: 24px;
  margin-right: 15px;
  margin-top: 3px;
}

.link-box p {
  margin: 0;
  color: #dcdcdc;
}

/* Payment Info */
.payment-info {
  margin: 30px 0;
}

.payment-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 20px;
  background: #1a1a1a;
  border-radius: 8px;
  border-left: 4px solid #ed751f;
}

.payment-item i {
  color: #ed751f;
  font-size: 28px;
  margin-right: 20px;
  margin-top: 5px;
}

.payment-item h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.payment-item p {
  color: #dcdcdc;
  margin: 0;
  font-size: 14px;
}

/* IP Box */
.ip-box {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 25px;
  margin: 25px 0;
}

.ip-box h4 {
  color: #ed751f;
  font-size: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.ip-box h4 i {
  margin-right: 10px;
}

.ip-box p {
  color: #dcdcdc;
  margin: 0;
}

/* Warning Box */
.warning-box {
  background: #1a1a1a;
  border-left: 4px solid #ff6b6b;
  padding: 20px;
  margin: 25px 0;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
}

.warning-box i {
  color: #ff6b6b;
  font-size: 24px;
  margin-right: 15px;
  margin-top: 3px;
}

.warning-box p {
  margin: 0;
  color: #dcdcdc;
}

.warning-box strong {
  color: #ff6b6b;
}

/* Disclaimer Grid */
.disclaimer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.disclaimer-item {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.disclaimer-item:hover {
  border-color: #ed751f;
  transform: translateY(-5px);
}

.disclaimer-item i {
  font-size: 36px;
  color: #ed751f;
  margin-bottom: 15px;
}

.disclaimer-item h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.disclaimer-item p {
  color: #dcdcdc;
  font-size: 14px;
  margin: 0;
}

/* Termination List */
.termination-list {
  margin: 25px 0;
}

.termination-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: #1a1a1a;
  border-radius: 8px;
  border-left: 4px solid #ed751f;
}

.termination-item i {
  color: #ed751f;
  font-size: 20px;
  margin-right: 15px;
  margin-top: 3px;
}

.termination-item p {
  margin: 0;
  color: #dcdcdc;
}

/* Jurisdiction Box */
.jurisdiction-box {
  display: flex;
  align-items: flex-start;
  margin: 25px 0;
  padding: 20px;
  background: #1a1a1a;
  border-radius: 8px;
  border-left: 4px solid #ed751f;
}

.jurisdiction-box i {
  color: #ed751f;
  font-size: 28px;
  margin-right: 20px;
  margin-top: 5px;
}

.jurisdiction-box h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.jurisdiction-box p {
  color: #dcdcdc;
  margin: 0;
  font-size: 14px;
}

/* Contact Info */
.contact-info {
  margin: 30px 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  background: #1a1a1a;
  border-radius: 8px;
  border-left: 4px solid #ed751f;
}

.contact-item i {
  color: #ed751f;
  font-size: 28px;
  margin-right: 20px;
  margin-top: 5px;
}

.contact-item h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-item p {
  color: #dcdcdc;
  margin: 0;
}

.contact-item a {
  color: #ed751f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #ff8c42;
  text-decoration: underline;
}

/* Footer */
.footer {
  padding: 30px 10px 0px 10px;
  z-index: 999;
  color: #2f2f2f;
  background-color: #202020;
  border-top: 1px solid #000000;
  width: 100%;
  margin: 0;
}

.footer_nav {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}

.nav_con {
  width: 30%;
  display: flex;
  flex-direction: column;
}

.nav_con img {
  width: 180px;
  cursor: pointer;
}

.nav_con h2 {
  margin-top: 30px;
  font-size: 24px;
  font-weight: 400;
  color: white;
}

.nav_ul.extra {
  column-count: 2;
  column-gap: 40px;
}

.nav_item {
  margin-top: 20px;
}

.nav_item h2 {
  font-weight: 400;
  font-size: 26px;
  color: white;
}

.nav_con a {
  color: #e3ab23;
  margin: 5px 0;
}

.footer p {
  margin: 10px 0;
  font-style: normal;
  color: #dcdcdc;
}

.footer .nav_item a {
  margin: 10px 0;
  color: #efefef;
}

.footer .nav_item a:hover {
  color: #ed751f;
}

.footer ul {
  margin-top: 30px;
  list-style: none;
  padding-left: 0;
}

.footer li {
  line-height: 32px;
}

.footer a {
  text-decoration: none;
}

.footer .legal {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 40px;
  padding: 10px 30px;
}

.footer .legal p {
  color: #eeeeee;
}

.footer .legal .links {
  display: flex;
  flex-direction: row;
}

.footer .legal .links a {
  font-size: 22px;
  background-color: #000000;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0 2px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s;
}

.footer .legal .links a:hover {
  background-color: #ed751f;
  transition: background-color 0.3s;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .legal-container {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .table-of-contents {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  

  .legal-hero {
    padding: 80px 20px 40px;
  }

  .legal-hero h1 {
    font-size: 32px;
  }

  .legal-hero p {
    font-size: 16px;
  }

  .legal-content {
    padding: 30px 20px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .services-grid,
  .disclaimer-grid {
    grid-template-columns: 1fr;
  }

  .footer_nav {
    flex-flow: column;
  }

  .nav_con {
    width: 100%;
  }

  .nav_ul.extra {
    column-count: 1;
  }

  .footer .legal {
    flex-direction: column-reverse;
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .legal-hero h1 {
    font-size: 28px;
  }

  .section-header h2 {
    font-size: 20px;
  }

  .legal-content {
    padding: 20px 15px;
  }
}
