
@font-face {
  font-family: Stolzl;
  src: url("fonts/Stolzl.4e85d39cdaa4.otf") format('opentype');
}

@font-face {
  font-family: prayuth-black;
  src: url("fonts/prayuth-black.1da0f0d0f4b1.otf") format('opentype');
}

@font-face {
  font-family: prayuth-bold;
  src: url("fonts/prayuth-bold.63fce9f65298.otf") format('opentype');
}

@font-face {
  font-family: prayuth-medium;
  src: url("fonts/prayuth-medium.6383aad21562.otf") format('opentype');
}

@font-face {
  font-family: Dharma-ExBold;
  src: url("fonts/Dharma-ExBold.84afbe0c7e29.ttf") format('opentype');
}

@font-face {
  font-family: Dharma-Regular;
  src: url("fonts/Dharma-Regular.7df8102f8115.ttf") format('opentype');
}

@font-face {
  font-family: rebound;
  src: url("fonts/rebound.bdbf86cef247.otf") format('opentype');
}

*,
*::before,
*::after {
  box-sizing: border-box;
} 

* {
  margin: 0;
  padding: 0;
  outline: 0;
  appearance: none; /* removing default browser styles for elements like buttons*/
  border: 0;
  text-decoration: none;
  list-style: none;
} 

/* Root Variable */
:root {
  --color-primary: #4778D2; /* #7380ec */
  --color-danger: #ff7782; 
  --color-success: #41f1b6;
  --color-warning: #ffbb55;
  --color-font: #EEF1F6;
  --color-accent: #E99A35; /* #EED23A */
  --color-white: #fff;
  --color-info-dark: #7d8da1;
  --color-info-light: #dce1eb;
  --color-dark: #363949;
  --color-light: rgba(132, 139, 200, 0.18); 
  --color-primary-variant: #111e88;
  --color-dark-variant: #677483;
  --color-background: #14161F; /* #f6f6f9*/
  --color-card: #333742; /* none */

  --card-border-radius: 2rem;
  --border-radius-1: 0.4rem;
  --border-radius-2: 0.8rem;
  --border-radius-3: 1.2rem;

  --card-padding: 1.8rem;
  --highlight-padding: 1rem;
  --padding-1: 1.2rem;

  --box-shadow: 0 2rem 3rem var(--color-light);

  --box-border-color: red; /* ??? */
  --box-border-color-accent: #E99A35;
  --box-border-weight: #E99A35;
  --box-border-radius: 1.5rem;
  --box-border-radius-light: 1rem;
  --box-border-radius-heavy: 3rem;

  --box-border: 0.75px solid #4F4F51; /* ???? */

  --box-color-1: #1F1F31;
  --box-color-2: #28283B;

  --funding-next: #010011;
}

html {
  font-size: 14px;
  scroll-behavior: smooth; 
}

body {
  width: 100vw; /* 100vh vw helps avoid scroll bars and helps with responsiveness*/
  height: 100vh;
  font-family: Stolzl, sans-serif;
  font-size: 0.88rem;
  background: #F8F4F1; /* var(--color-background);*/
  user-select: none;
  overflow-x: hidden;
  color: var(--color-font);
}

.container {
  display: grid;
  grid-template-columns: 4rem 1fr;
  grid-template-rows: 60px auto;
  grid-template-areas:
    "topbar topbar"
    "side main";
  width: 96%; /*there will be 4% space left in container*/
  margin: 0 auto; /*auto will centre grid - 2% each side*/
  gap: 0rem 1.8rem;
  /*grid-template-columns: 14rem auto 23rem; middle column will fll left over space*/
}

a {
  color: var(--color-dark);
}

img{
  display: block;
  width: 100%;
}

h1 {
  font-weight: 800;
  font-size:;
}

h2 {
  font-size: 1.4rem;
}

h3 {
  font-size: 0.87rem;
}

h4 {
  font-size: 0.8rem;
}

h5 {
  font-size: 0.77rem;
}


h6 {
  font-weight: 1000;
  font-size: 1.8rem;
}

h7 { /* for highlight text */
  font-size: 1.2rem;
}

small {
  font-size: 0.75rem;
}



/* ================== LANDING ================== */





* =================== LANDING PAGE ================== */

.landing {
  margin: 0 auto;
  background: #0C111D;

 
}

.home-bar {
  background: white;

  display: grid;
  height: 6rem;
  grid-template-columns: 10fr 1fr 1fr;
  grid-template-areas:
    "logo-top buy-top dash-top";
  align-items: center;
  gap: 1.5rem;
  /*position: sticky;*/
  /*top: 0;
  height: 80px;*/
  padding: 1rem;
}

.home-bar img {
  width: 7rem;
}








/*======================= hero sectiin 1 ===================*/


.hero-dash-button {
  padding: 0.8rem 1rem;
  font-size: 1.2rem;
  font-weight: bold;
  background: var(--box-color-2);
  color: white;
  border: 2px solid #E99A35;
  font-weight: bold;
  border-radius: 10px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease-in-out;
}

.hero-dash-button:hover {
  transform: scale(0.90); /* Scale down by 5% */
  cursor: pointer;

}

.hero-dash-button i {
  margin-top: 0.1rem;
}

.v3-hero {


  /* border: var(--box-border); */


  height: 750px;
  background: var(--box-color-1);
  z-index: 3;
 

  /*background-size: cover;  Or contain, or specific pixel dimensions */
  /*background-position: center; Or top left, bottom right, etc. */
 
}

.hero-flex-master {
  display: flex;

}


.hero-top {
  padding: 0rem 6rem 0rem 4rem;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
 
  margin: 0 auto;
  height: 5.5rem;
  align-items: center;
  font-size: 1.1rem;
  display: flex;
  color: white;
  background: white;
  position: relative;
  z-index: 5;

}

.nav-container {
  display: flex; 
  align-items: center; /* Vertically center items within the container */
  gap: 3rem;
  font-size: 1.25rem;

}

.hero-dash-right {
  color: var(--box-color-1);
  transition: all 0.3s ease-in-out;
}


.hero-dash-right:hover {
  transform: scale(0.90); /* Scale down by 5% */
  cursor: pointer;

}

.hero-top img {
  filter: invert(0%);
  width: 14rem;
}

.v3-hero-flex-master {
  display: flex;
  flex-direction: row;  
  justify-content: space-between;
  height: 100%;
  max-width: 1525px;
  margin: 0 auto;
  
}

.v3-hero-flex {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-left: 5rem;
  padding-top: 8rem;
  min-width: 750px;
  flex: 1;
 
}

.v3-hero-flex-img {
  flex: 1.5;
  overflow: hidden;
    
}

.v3-hero-flex-picture {
  position: relative;

  height: 100%;
  width: 100%;
}

.v3-hero-flex-picture img {
  width: 60rem;
  z-index: 3;
}

.hero-stars {
  display: flex;

  width: 100%;
  font-size: 1rem;
  color: var(--box-color-1);

}

.stars {
  display: flex;
  gap: 0.7rem;
}

.stars img {
  width: 1.5rem;
}



.feedback {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.video-container {
 display: flex; /* display: flex; */
 justify-content: center;
 width: 100%;
}

.landing-video {
  display: flex;
  justify-content: center;
  border-radius: 10px; 
  height: 500px; 
 
  filter: brightness(0.5);"

}


.hero-title-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-git .hero-text {
  margin-top: 230px; /* Adjust the value as needed */
}

.hero-container-1 {
  border: var(box-border);
  background: #050C26;
  width: 90%;
  margin: 0 auto;
  border-radius: 3rem;
  height: 40rem;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin-bottom: 6rem;
}

.hero-text-1 {
  font-size: 4.75rem;
  font-family: rebound;
  color: white;

}

.hero-text-1-alt {
  font-size: 4.75rem;
  font-family: rebound;
  color: white;
  display: none;  
}

.hero-text-2 {
  font-size: 1.5rem;
  color: white;
}

.hero-text-2-alt {
  font-size: 1.5rem;
  color: white;
  display: none;  
}

.hero-text-3 {
  font-size: 1.25rem;
}

.hero-button-start1 {
  display: inline-block;
  width: 16rem;
  height: 4rem;
  vertical-align: middle;
  text-align: center;
  line-height: 3.5rem;
  border-radius: 8px;
  
  font-size: 1.5rem;
  background: #181629; /*#383649 #EC603D #3346CEmore subtle option*/
  color: var(--box-border-color-accent);
  font-weight: bold;
  border: 2px solid #E99A35;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);

  transition: all 0.3s ease-in-out;
}

.hero-button-start1:hover {
  transform: scale(0.95); /* Scale down by 5% */
  cursor: pointer;

}


.hero-button-start2 {
  display: inline-block;
  width: 16rem;
  height: 4rem;
  vertical-align: middle;
  text-align: center;
  line-height: 3.5rem;
  border-radius: 8px;
  margin-right: ;
  font-size: 1.5rem;
  font-weight: bold;
  background: #181629;
  color: #6DB7E6;
  border: 2px solid #6DB7E6;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.hero-button-start2:hover {
  transform: scale(0.95); /* Scale down by 5% */
  cursor: pointer;

}

.hero-button-flex {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.hero-video {
  width: 1300px;
  height: 700px;
  border: var(--box-border);
  border-radius: 4rem;
}

.hero-grid-title-2 {
  font-size: 0.85rem;
  overflow-y: auto;
}

.hero-container-2 {
  display: flex;
  gap: 2.5rem;
 
}

.hero-grid-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1.25rem;
  text-align: left;

}

.img {
  width: 50;
}

.hero-grid-title-1 {
  color: white;


}



/*======================= hero sectiin 2 ===================*/

.v3-section2 {
  display: hidden;
  height: auto;
  background: var(--funding-next);
  padding: 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: 
    "hero-left hero-right";

}

.hero-grid-left {
  grid-area: hero-right;
  padding: 3.5rem;

}

.hero-grid-right{
  grid-area: hero-left;
  padding: 3.5rem;
  padding: 2rem;
}

.hero-grid-right img {
  vertical-align: top;
  position: sticky;
  top: 100px;



}

#feature1 {
  /* CSS styles for the first image */
}

#feature2 {
  display: none;
}

#feature3 {
  display: none;
}

.hero-platform-top {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--box-border-color-accent);
}

.hero-platform-title1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  font-family: rebound;
}

.hero-platform-title2 {
  font-size: 1.25rem;
  margin-bottom: 20rem;
  color: #a0a0aa;
}








.hero-text {
  font-family: Dharma-ExBold;
  font-size: 6rem;
  color: white;
  margin: 0 auto; /* Center the text horizontally */
  text-align: center;
  margin-bottom: 2rem;
}

.screen-mockup-hero {
  height: 700px;
  z-index: 10;
  position: relative;
  z-index: 2;
}

.step1 {
  height: 1000px;
  /*background: #080945;*/

  background-size: cover; /* Or contain, or specific pixel dimensions */
  background-position: center; /* Or top left, bottom right, etc. */
  display: flex;
  flex-direction: column;
  align-content: center;
  z-index: 10;
  position: relative;
  z-index: 2;
}

.step1-text {
  font-family: Dharma-ExBold;
  font-size: 3.75rem;
  color: white;
  margin-top: 225px;
  margin-bottom: 50px;


  text-align: center;
  
}

.step1-screen {
  border: var(--box-border);
  margin: 2rem;
  height: 100%;
  border-radius: 2rem;
  background: grey;
  opacity: 20%;





}

.hero-text2 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}


.hero2 {
  height: 800px;

  background-size: cover; /* Or contain, or specific pixel dimensions */
  background-position: center; /* Or top left, bottom right, etc. */
  padding-top: 39rem;
 
}

.hero-flex {
  display: flex;
  gap: 1rem;
  justify-content: center;
  

}



.landing .section-1 {
  height: 600px;
   /*background: linear-gradient(to bottom, #1F1F31, #3C4462);*/
}

.screen-mock {
  height: 50rem;
  background-color: white; /* Dark blue background */

  padding: 100px 0;
 
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;

}

.screen-mock img {
  width: 22rem;
  justify-self: center;

}

.screen-mock-right-title {
  font-size: 2.5rem;
  background-image: linear-gradient(to right, darkblue, orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}


.top-button {
  display: flex;
  padding: 1rem 1rem;
  height: 40px;
  width: 170px;
  background: var(--box-border-color-accent);
  border-radius: var(--box-border-radius-light);
  font-weight: bold;
  align-items: center;
  gap: 0.25rem;
  font-size: 13px;
}

.top-button a {
  color: black;
}

.top-button i {
  font-size: 25px;
  color: white;
}

.top-dash {
  display: flex;
  padding: 1rem 1rem;
  height: 4rem;
  width: 12rem;
  border-radius: var(--box-border-radius-light);
  font-weight: bold;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  background: #181629;
  color: var(--box-border-color-accent);
  border: 1px solid orange;
}

.top-dash i {
  font-size: 20px;
  color: white;
}

.top-dash a {
  color: var(--box-border-color-accent);
  font-weight: bold;
}

.landing .section-2 {
  height: auto;


}

.section-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "top-hero pic-hero";
  align-items: center;

  /*background-size: cover;*/
  /*background-position: center center;*/
  margin-left: 1rem;
}


.section-1-content {
  display: grid;
  grid-area: top-hero;
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "ab1"
    "ab2"
    "ab3";
  height: 200px;
  text-align: left;
  padding: 0rem 3rem 0rem 8rem ;
  color: white;
  gap: 1rem;
  margin-bottom: 20rem;
}

.section-1 img {
  grid-area: pic-hero;
}

.hero-title {
  font-size: 5.5rem;
  font-weight: 900;
}

.hero-title span {
  color: var(--box-border-color-accent);
}

.hero-button-start { 
  padding: 1rem 2rem;
  height: 55px;
  width: 190px;
  background: var(--box-border-color-accent);
  border-radius: var(--box-border-radius-light);
  color: black;
  font-family: prayuth-medium;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 0.5rem;
 }

.hero-button-start:hover {
  background: white;
} 

 .hero-button-discord { 
  padding: 1rem 2rem;
  height: 55px;
  width: 190px;
  font-family: prayuth-medium;
  border-radius: var(--box-border-radius-light);
  color: black;
  font-size: 1.2rem;
  font-weight: bold;
 }


 .league-grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "leagues"
    "league-text";
  text-align: center;
  margin-left: 10rem;
  margin-right: 10rem;
  margin-bottom: 4rem;
  background: white;


 }

.leagues {
  grid-area: leagues;
  display: flex;
  justify-content: start;
  height: 150px;
  gap: 3rem;

}

.leagues img {
  width: 12%;
  object-fit: contain;
  border-radius: var(--box-border-radius-light);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

 .leagues-title {
  margin: auto;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: white;
  text-align: center;
  color: #a0a0aa;
 }

 .leagues-title span {
  color: var(--box-border-color-accent);
 }

 .screen-mockup2 {
  height: 900px;

  background-size: cover; /* Or contain, or specific pixel dimensions */
  background-position: center; /* Or top left, bottom right, etc. */
  padding-top: 39rem;
 }


 .payout-carousel-title {
  margin-top: 6rem;
  text-align: center;
  font-size: 3em;
  font-family: rebound;
  color: var(--box-color-1);
 }

 .payout-carousel {
  max-width: 1525px;
  height: 15rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  width: 100%;
  justify-content: space-evenly;
  overflow: hidden;
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
  scrollbar-width: none; /* For Firefox */
  margin: 0rem auto 6rem auto;

  /* Safari-specific styles */
  &::-webkit-scrollbar {
    display: none; 
  }



 }

 

 .payoutbox {
  display: flex;
  background: var(--box-color-1);;

  gap: 0rem;
  font-size: 1.15rem;
  min-width: 19.6rem;
  height: 8rem;
  border: 0.4px solid #606060;
  border-radius: 12px;

  transition: all 0.3s ease-in-out;
  /* background: #1C203C; */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);


 }

 .payout-left {
  min-width: 9rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

 }

 .payout-right {
  display: flex;
  
  align-items: center;
 }



 .payout-right img {
  margin-top: 1.5rem;
  width: 11.5rem; 
  height: auto; 


 }

 .payout-top {
  color: grey;
  font-size: 0.9rem;
 }

 .payout-bottom {
  display: flex;
  gap: 0.25rem;
  flex-direction: column;

 }

 .payout-league-flex {
  display: flex;
  gap: 0.5rem;
  align-items: center;
 }

 .payout-bottom img {
  width: 0.9rem;
 }

 .payout-name {
  font-size: 0.75rem;
  color: #d3d3d3;
 }

 .payout-country  {
  font-size: 0.65rem;
  color: #999999; 
 }

 .payoutbox:hover {
  scale: 110%;
  box-shadow: 0 0 5px rgba(109, 183, 230, 0.4), 
             0 0 10px rgba(109, 183, 230, 0.2); 
 }

 .payout-lastrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
 }

 .payout-lastrow img {
  filter: invert(100%);
  width: 6rem;

 }

 .challenge-options {
  max-width: 1525px;
  margin: 0 auto;
  padding: 5rem 9rem 7rem;
  position: relative;
  
  overflow: hidden;

 }

 .picture-container {
  width: 32rem; /* 18rem */
  height: auto; /* 25rem */

  position: absolute;
  z-index: 3;
  bottom: -30px; /* Position at the bottom of the parent */
  right: -170px; /* -80px */
  transform: matrix(1, 0, 0, 1, 0, 0)

 }


 .picture-container2 {
  width: 26rem; /* 18rem */
  height: auto; /* 25rem */
 

  position: absolute;
  z-index: 1;
  bottom: -30px; /* Position at the bottom of the parent */
  left: -150px; /* -80px */

 }

 .picture-container img {

 }

 .platform-display {
  position: relative;
  height: 56rem;
  background: #FAFBFF;
  display: flex;
  justify-content: center;


 }

 .platform-title-flex {
  margin-top: 9rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;


 }

 .platform-text-rule {
  color: var(--box-color-1);
  font-weight: bold;
  font-size: 1.3rem;

 }

 .platform-rule-flex {
  display: flex;
  gap: 6rem;
 }

 .platform-picture-container {
  position: absolute;
  bottom: 0rem;
  height: 35rem;
  width: 75rem;
  background: grey;
  border-top-right-radius: 2rem;
  border-top-left-radius: 2rem;
  overflow: hidden;
  border: 6px solid #808080; /* Add thick grey border */
  box-shadow: 
    /*0px 5px 15px rgba(0, 0, 0, 0.2), /* Outer shadow */
    /*0px -5px 15px rgba(0, 0, 0, 0.1); /* Inner shadow */
    0 0 15px rgba(109, 183, 230, 0.3), /* #6DB7E6 outer shadow */
    0 3px 8px rgba(109, 183, 230, 0.2); /* #6DB7E6 inner shadow */
  ; 

 }

 .platform-text-title {
  color: var(--box-color-2);
  font-size: 4.5rem;
  font-family: rebound;
 }

 .platform-display-extra {
  height: 0rem;
  background: white;
 }


 .process-headflex {
  display: flex;
  justify-content: space-between; 
  

 }

 .process-title-flex-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
 }

 .process-title-flex-buttons-inner {
  display: flex;

  gap: 1rem;

 }

 .option-process-button1 {
  /* display: inline-block; */
  padding: 1rem;
  vertical-align: middle;
  text-align: center;
  border-radius: 10px;

  font-size: 1.7rem;
  font-weight: bold;
  background: #181629; 
  color: var(--box-border-color-accent);
  border: 2px solid #E99A35; /* #6DB7E6 */
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
 }

 .option-process-button2{
  /* display: inline-block; */
  padding: 1rem;
  vertical-align: middle;
  text-align: center;
  border-radius: 10px;

  font-size: 1.7rem;
  font-weight: bold;
  background: #181629; 
  color: #6DB7E6;
  border: 2px solid #6DB7E6; /* #6DB7E6 */
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
 }

 .option-process-button1:hover, .option-process-button2:hover{
  transform: scale(0.95); /* Scale down by 5% */
  cursor: pointer;

 }


 .challenge-options-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 5rem;
  width: 100%;
  z-index: 2;
 }

 .challenge-options-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--box-color-1); /* #2B2B2B */
  border-top-right-radius: 40px; 
  border-bottom-left-radius: 40px; 
  padding: 2rem;
  height: auto;
 }

 .challenge-options-item-funded {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  border: 3px solid #E99A35;
  border-top-right-radius: 40px; 
  border-bottom-left-radius: 40px; 
  padding: 2rem; 
 }

 .options-item-1 {
  font-size: 3.5rem;
  font-weight: bold;
 }

 .options-item-1-funded {
  color: var(--box-color-1);
  font-size: 3.5rem;
  font-weight: bold;
 }

 .options-item-2 {
  font-size: 2.5rem;
  font-family: rebound;
  font-weight: bold;
  color: var(--box-border-color-accent);
 }

 .options-item-3 {
  font-size: 1.1rem;
 }

 .options-item-3-funded {
  font-size: 1.1rem; 
  color: var(--box-color-1);

 }

 .options-item-3b {
  display: none;
  font-size: 1.1rem;
 }

.section-challenge-select {
  max-width: 1525px;
  margin: 13rem auto 2rem auto;
  background: ;

}


.select-challenge-flex-top {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  margin: 0 auto;
  margin-bottom: 5rem;
  align-items: center;
}




.selection-challenge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 0.5fr;
  margin: 0 auto;
  gap: 2rem;
  width: 85%;
}

.select-options-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--box-color-1); /* #2B2B2B */ /*  var(--box-color-1) */
  border-top-right-radius: 40px; 
  border-bottom-left-radius: 40px; 
  padding: 2rem;
  height: auto;
  border: 2px solid grey;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.select-challenge-size {
  font-size: 3.8rem;
  font-weight: bold;
}

.select-challenge-title {
  font-size: 2.25rem;

  color: var(--box-border-color-accent);
  margin-bottom: 1.2rem;
  font-family: rebound;
}

.select-challenge-fee-title {
  font-size: 1rem;
  font-family: rebound;
  color: grey;
}

.select-challenge-fee {
  font-size: 2.5rem;
  font-weight: bold; 
  margin-bottom: 1.2rem;

}

.select-challenge-flex {
  display: flex;
  gap: 0.5rem;

  

}



.option-process-button-challenge1 {
  /* display: inline-block; */
  padding: 1rem;
  vertical-align: middle;
  text-align: center;
  border-radius: 10px;
  font-size: 1.25rem;
  font-weight: bold;
  background: var(--box-color-1);
  color: white;
  border: 2px solid #E99A35;
  transition: all 0.3s ease-in-out;
 }

.option-process-button-challenge2 {
  /* display: inline-block; */
  padding: 1rem;
  vertical-align: middle;
  text-align: center;
  border-radius: 10px;
  font-size: 1.25rem;
  font-weight: bold;
  background: #181629;
  color: white;
  border: 2px solid #323246;
  transition: all 0.3s ease-in-out;
 }

  .option-process-button-challenge1:hover {
  transform: scale(0.95); /* Scale down by 5% */
  cursor: pointer;

 }



.section-2 {
  padding-top: 2rem;
  font-size: 0.88rem;
  background: #F8F4F1; /* #0C111D */
  max-width: 1525px;
  margin: 0 auto;
}


.section-2-title span {
  color: var(--box-border-color-accent); 
}


.compare-grid {
  display: grid;
  grid-template-rows: 350px;
  grid-template-areas:
    "main-grid";
  border-radius: var(--box-border-radius);
  border: var(--box-border);
  width: 60rem;
  padding: 1.5rem 1.5rem 1.5rem 2.5rem;
  margin: auto;
  background: var(--box-color-1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  gap: 3rem;

}

.top-compare {
  grid-area: top-grid;
  display: flex;
  justify-content: center;
  padding: 0.5rem;
  color: var(--box-color-1);
  gap: 1.15rem;
  align-items: center;
  font-size: 1.4rem;
  border-radius: ;
  
  width: 80%;
  margin: 0 auto 4rem auto;
  height: 5.5rem;

}

.top-compare span {
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid grey;


  text-align: center;

  width: 9rem;
  transition: all 0.3s ease-in-out;
}



.top-compare span:hover {
  cursor: pointer;
  /* background: #3346CE; */
  /* border: 2px solid #E99A35; */
 


}

.active1 {
  color: white;
  background: var(--box-color-1);
  /* background: #3346CE; */
  /* border: 2px solid #E99A35; */
 

}



.process-title-pre {
  font-size: 1rem;
  color: #6DB7E6;
  border: 0.75px solid #6DB7E6;
  border-radius: 8rem;
  padding: 0.75rem;
}


.process-title-flex {
  display: flex;

 
  color: var(--box-color-1);
  flex-direction: column;
  gap: 1rem;
  justify-content: start;
  align-items: start;
  margin-bottom: 2rem;




}

.process-title-flex-section-2 {
  display: flex;
  color: var(--box-color-1);
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  margin: 0 auto 2rem;
  width: 60%;
}

.process-title-2 {
  font-size: 1.4rem;
  color: var(--box-color-1);
}

.challenge-flex {
  display: flex;

  justify-content: flex-start;
  gap: 2rem;
  margin: 0 auto;
  width: 80%;
  overflow: auto;
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
  scrollbar-width: none; /* For Firefox */

}

.step {
  color: black;
  display: flex;
  /*gap: 2rem;*/
  flex-direction: column;
  padding: 1rem 0;
  width: 30rem;
  min-width: 25rem;
  height: auto;
  border-top-right-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  background: var(--box-color-1); /* #151533 */
  margin-bottom: 15rem;
  /* border: 1px solid silver; */

}

.last-challenge {
  background: none;
  border: 2px solid #E99A35;

}

.last-challenge-title {
  color: var(--box-border-color-accent);
}

.step span {
  color: var(--box-border-color-accent);
}

.step-title {
  color: var(--box-border-color-accent);
  font-size: 2.5rem;
  font-family: rebound;
  padding: 1rem 1.5rem 2.5rem 1.5rem;

}

.step-funded {

  color: var(--box-color-1);
}

.step-right {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: white;
  font-size: 0.5rem;

}



.step-process-flex {
  display: flex;
  color: black;
  gap: 1.5rem;
  font-size: 1rem;
  padding: 0.75rem 1.5rem 1rem 1.5rem; /* added for the alternative shade */
}

.step-left {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3rem;
  width: 3rem;
  border: var(--box-border);
  border-radius: 0.75rem;
  background: var(--box-color-1);
  padding-top: 0.25rem;

}

.step-left i {
  color: white;
  font-size: 1.5rem;
}

.challenge-button-flex {
  background: #0C111D; /*#EC603D #0C111D*/
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  height: 20rem;

}

.button-fee {
  font-size: 2rem;
  font-family: rebound;

}

.button-text-fee {
  font-weight: bold;
  font-size: 1.7rem;

}

.challenge-button i {
  margin-top: 0.2rem;

}

.challenge-button {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;

  border-radius: 8rem;
  border: var(--box-border);
  color: white;
  background: #3346CE; /* #3346CE; */
  width: 18rem;
  height: 4.4rem;
  font-size: 1.5rem;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);

}

.challenge-button:hover {
  transform: scale(0.95); /* Scale down by 5% */
  cursor: pointer;
}

.white-space {

  height: auto;
  background: white;
  padding: 4rem 8rem 2rem;
  /*border-top-left-radius: 2rem;*/
  /*border-top-right-radius: 2rem;*/

}



.hero-product-flex {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  color: var(--box-color-1);
  height: 100%;
  gap: 3rem;

}

.hero-product-flex-left {

  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2rem;
  height: 100%;
  width: 100%;
 
  border-radius: 15px;
}

.hero-product-flex-right {
  height: 100%;
  width: 100%;
  border-radius: 15px;

}

.hero-product-flex-right img {
  width: 40rem;
  height: auto;
}

.hero-product-title {
  color: var(--box-color-1);
  font-size: 3rem;
  font-family: rebound;

  text-align: center;

}

.benefit-flex-item {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  background: #f2f2f2; /* Light gray background */
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;  
  padding: 1rem;
  height: 16rem;
 

}

.hero-product-flex-title2 {
  font-size: 1.1rem;
  overflow: hidden;
}

.hero-product-flex-title1 {
  font-family: rebound;
  font-size: 1.9rem;
}


.rule-text {

  font-size: 1.1rem;
  color: white;
}

.funded {
  color: var(--box-color-1);
}

.rule-value {
  font-size: 1.3rem;
}



.process-flex {
  display: flex;
  justify-content: space-between;
}

.process-home {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas:
    "process-box1 process-box2 process-box3";

  text-align: center;
  align-items: center;
  gap: 1rem;
  margin: 0 1rem;
  margin-bottom: 5rem;
}


.process-title {
  grid-area: process-title;
  font-size: 4rem;
  color: var(--box-color-1);
  font-family: rebound;
  text-align: center;
}

.option-value {
  text-align: right;
  margin-bottom: 1.75rem;

}

.process-buy {
  grid-area: process-title;
  font-size: 4rem;
  font-weight: bold;
  color: #3346CE;
  text-align: center;
  font-weight: bold;

}

.process-button {
  padding: 2rem 3rem;
  color: white;
  font-weight: bold;
  background: #3346CE;
  border-radius: 4rem;
  font-size: 1.5rem;
  margin: 0 auto;
  text-align: center;
}

.process-buy-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;

}


.process-box1 {
  border-radius: 2rem;
  height: 100%;
  padding: 3rem 3rem 4rem 3rem;
  display: grid;
  grid-template-rows: 2rem 2rem 1fr;
  background: linear-gradient(to bottom, #141655, #232562);
  gap: 0.5rem;
  display: grid;
  border: 0.5px solid #666;

  grid-template-rows: 1fr 1.5fr 1fr 1fr 1fr 1fr 1fr;
  font-size: 1.4rem;

  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);

}

.funded {

}

.process-box1-head {
  font-size: 1.7rem;
  background-image: linear-gradient(to right, #E99A35, white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.process-step {
  justify-self: left;
  font-size: 1.4rem;
  color: #919AB3;
  align-self: end;
 
}

.process-stage {
  justify-self: left;
  font-size: 2rem;
}

.option-title {
  color: #919AB3;
  justify-self: left;
  margin-bottom: 1.75rem;
}

.process-img {

  background-size: contain; /* Adjust to fit your needs */
  background-position: top center;
}

.main-compare {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas:
    "top-logo top-1 top-2 top-3"
    "fit-1 fit-2 fit-3 fit-4"
    "te-1 te-2 te-3 te-4"
    "pick-1 pick-2 pick-3 pick-4"
    "ml-1 ml-2 ml-3 ml-4"
    "dl-1 dl-2 dl-3 dl-4"
    "ps-1 ps-2 ps-3 ps-4";

  text-align: center;
  align-items: center;
  height: 100%;
  margin-bottom: 2rem;
  font-size: 1.1rem;

}



.top-logo {
  grid-area: top-logo;
  text-align: left;
}

.top-1 {
  grid-area: top-1;
  background-image: linear-gradient(to right, #E99A35, white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



.top-2 {
  grid-area: top-2;
  background-image: linear-gradient(to right, #E99A35, white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.top-3 {
  grid-area: top-3;
  background-image: linear-gradient(to right, #E99A35, white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fit-1 {
  grid-area: fit-1;
  text-align: left;
}

.fit-2 {
  grid-area: fit-2;
}

.fit-3 {
  grid-area: fit-3;
}

.fit-4 {
  grid-area: fit-4;
}


.te-1 {
  grid-area: te-1;
  text-align: left;
}

.te-2 {
  grid-area: te-2;
}

.te-3 {
  grid-area: te-3;
}

.te-4 {
  grid-area: te-4;
}


.pick-1 {
  grid-area: pick-1;
  text-align: left;
}

.pick-2 {
  grid-area: pick-2;
}

.pick-3 {
  grid-area: pick-3;
}

.pick-4 {
  grid-area: pick-4;
}

.ml-1 {
  grid-area: ml-1;
  text-align: left;
}

.ml-2 {
  grid-area: ml-2;
}

.ml-3 {
  grid-area: ml-3;
}

.ml-4 {
  grid-area: ml-4;
}

.dl-1 {
  grid-area: dl-1;
  text-align: left;
}

.dl-2 {
  grid-area: dl-2;
}

.dl-3 {
  grid-area: dl-3;
}

.dl-4 {
  grid-area: dl-4;
}

.ps-1 {
  grid-area: ps-1;
  text-align: left;
}

.ps-2 {
  grid-area: ps-2;
}

.ps-3 {
  grid-area: ps-3;
}

.ps-4 {
  grid-area: ps-4;
}

.pay-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "left-pay right-pay";
  width: 450px;
  height: auto;
  margin: auto;
  padding: 2rem;
  gap: 1rem;
  margin-bottom: 8rem;
}

.pay-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--box-border-color-accent);
}

.pay-amount-container {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.pay-amount {
  font-size: 3.5rem;
  font-weight: 900;
}

.pay-amount span {
  font-size: 1rem;
  text-align: top;
}

.pay-text {
  font-size: 1rem;
}

.pay-button {
  padding: 1rem 2rem;
  height: 65px;
  width: 225px;
  background: var(--box-border-color-accent);
  border-radius: var(--box-border-radius-light);
  color: black;
  font-size: 1.2rem;
}

.section-4 {
  display: flex;
  flex-direction: column;
  justify-content: center;

  height: 28rem;
  gap: 1rem;
  background: var(--box-color-1);



}

.section-4 img {
  filter: invert(100%);
  width: 14rem;
  text-align: center;
  margin: 0 auto;
}



.section-links {

  display: flex;
  justify-content: center;
  gap: 3rem;
  height: 200px;
  margin: 0rem auto;
  color: white;
  background: var(--box-color-1);


}

.privacy-link {
  color: white;
}


.section-5 {
  padding: 0rem 2rem;
  color: white;
  background: var(--box-color-1);
}

.section-5-container {
  max-width: 1300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0rem auto;
  border-top: 0.5px solid white;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.hero-disclaimer {
  font-size: 1.2rem;
}

.section-5 p {
  line-height: 1.5;

}

/*
.logo-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1; 
}

*/


.section-4-title {
  font-family: rebound;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 5.25rem;

}

.section-4-title2 {
  text-align: center;
  width: 30%;
  margin: 0 auto;
  font-size: 1rem;
  color: grey;



  align-self: center;
}


.section-3 {
  background-color: var(--box-color-1);
  height: 800px;
}

.section3-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "left-3 right-3";
  margin: auto;
  text-align: center;
  padding: 6rem;
  height: 600px;
  text-align: left;
  align-items: center;
  gap: 2rem;

}

.right3-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.right3-title span {
  color: var(--box-border-color-accent);
}

.right3-main {
  font-size: 1.1rem;
  line-height: 1.75;
}



.grid4 {
}




/* ================= MEDIA =============== */





/* Landing Page */
@media only screen and (max-width: 768px) {

  html body .hero-top {
    justify-content: space-between;
    padding: 0rem 1.5rem;

    gap: 0rem;

  }

  .hero-top img {
    width: 12rem;
  }



  .hero-top .hero-dash-right {
    display: none;
  }

  .landing .v3-hero {
    padding: 2rem;
    height: auto;

  }

  .v3-hero .v3-hero-flex {
    padding: 1rem;
    padding-top: 3rem;
    min-width: auto;
    align-items: center;
    text-align: center;
  }

  .v3-hero-flex .hero-stars .feedback:first-child,   .v3-hero-flex .hero-stars .feedback:last-child {
    display: none;
  }

  .v3-hero-flex-img {
    display: none;
  }

  .v3-hero-flex .hero-text-1 {
    font-size: 3rem;
    display: none;
  }

  .v3-hero-flex .hero-text-1-alt {
    font-size: 3.5rem;
    display: block;
  }

  .v3-hero-flex .hero-text-2 {
    font-size: 1.25rem;
    display: none;

  }


  .v3-hero-flex .hero-text-2-alt {
    font-size: 1.25rem;
    display: block;
    
  }

  .v3-hero-flex-master .v3-hero-flex .hero-button-flex {
    flex-direction: column;
  }

  .hero-button-flex .hero-button-start1, .hero-button-flex .hero-button-start2 {
    width: 12rem;
  }

  .v3-hero-flex .hero-video {
    height: 400px;
    width: 100%;
    background: grey;
    border-radius: 14px;
  }

  .video-container .landing-video {
    width: 100%;
    height: auto;

  }


  .landing .payout-carousel-title {
    font-size: 2.5rem;    
  }






  .process-headflex .process-title-flex .process-title {
    font-size: 2.5rem;
  }


  .process-headflex .process-title-flex .process-title-2 {
    font-size: 1rem;
  }

  .landing .challenge-options {

  }




  .challenge-options .process-headflex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }



  .picture-container2 img {
    display: none;
  }

  .platform-title-flex .platform-text-title {
    font-size: 3rem;

  }

  .platform-title-flex .platform-rule-flex {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  body .landing .platform-display {
    height: 60rem;
   
  }

 

  .landing .challenge-options .challenge-options-grid {
    padding: 0rem 1rem 10rem;

  }






  .landing .challenge-options {
    padding: 1rem;

  }






  .section-challenge-select .selection-challenge-grid {
    display: flex;
    flex-direction: column;
    margin-bottom: 10rem;

  }

  .selection-challenge-grid .select-options-item {
    align-items: center;

  }

  .select-options-item .select-challenge-size {
    font-size: 2.75rem;

  }

  .select-options-item .select-challenge-title {
    font-size: 2rem;   
  }



  .select-challenge-flex .option-process-button-challenge1, .select-challenge-flex .option-process-button-challenge2 {
    font-size: 1rem;
  }


  .section-challenge-select .process-title {
    font-size: 2.5rem;
  }

  .select-options-item .select-challenge-flex {
    gap: 1.25rem;
  }





  .section-2 .process-title-flex-section-2 {
    width: 75%;
  }


  .section-2 .process-title-flex {
    width: 90%;

  }

  .section-2 .process-title {
    font-size: 2.5rem;
  }

  .section-2 .process-title-2 {
    font-size: 1rem;
  }

  .section-2 .top-compare {
    font-size: 1.2rem;
    gap: 0.5rem;
  }

  .section-2 .top-compare span{
    border-radius: 50%;
    padding: 0;
    width: 4.5rem;
    height: 4rem;
    display: flex; /* Make the span a flex container */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */ 


  }

  .section-2 .challenge-flex {
    width: 95%;


  }

  .step .step-process-flex {
  
    padding: 0.7rem 1.5rem 0.75rem 1.5rem;

  }

  .challenge-flex .step {
    height: auto;
  }

  .step .step-title {
    font-size: 2rem;

  }

  .step .rule-text {
    font-size: 1rem;
 

  }

  .step .rule-value {
    font-size: 1.2rem;


  }


  .challenge-button .button-text {
    font-size: 1.25rem;
  }

  .section-4 .section-4-title {
    width: auto;
    font-size: 4rem;
  }

  .landing .section-5 {
    padding: 0rem 0.5rem;
  }

  .section-5 .section-5-container {
   
  }


  .challenge-options .process-title-flex {
    width: 100%;
    margin: 0 auto;
    

  }

  
  .challenge-options .process-title {
    font-size: 2.75rem;

  }

  .challenge-options .process-title-2 {
    font-size: 1.1rem;

  }







}








/* landing page - phone */




@media only screen and (max-width: 768px) {


  .hero-product-flex .hero-product-flex-left {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    padding: 2rem;
  }


  .white-space .hero-product-flex .hero-product-flex-right {
    margin-top: 0rem;
    overflow: hidden;
  }

  .picture-container-end {
  
  }
  .picture-container-end img {
    width: 100%;
    height: auto;
  }

  .white-space .hero-product-flex .hero-product-flex-right img {
    display: none;
  }
  .landing .section-links {
    gap: 1.5rem;
  }


}

/* landing page - very small ipad */
@media only screen and (max-width: 850px) {

  .hero-product-flex {
    flex-direction: column;
 
  }
}



/* landing page - small ipad */
@media only screen and (max-width: 1000px) {

  .process-headflex .process-title-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }





  .challenge-options .challenge-options-grid {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 1fr;
    height: auto;
    padding: 0rem 1rem;

  }


  .section-challenge-select .selection-challenge-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 0.5fr;
    margin-bottom: 8rem;
  }



}

/* landing page - large ipad */
@media only screen and (max-width: 1200px) {

  body .hero-top {
    padding: 0rem 2rem 0rem 4rem;
    gap: 1rem;

  }

  .hero-top .nav-container {
    gap: 2rem;
  }



  .process-headflex .process-title-flex-buttons {
    display: none;
  }

  .platform-title-flex .platform-picture-container {
    left: 20px;

  }




  body .white-space {
    padding: 1rem;
  }

  .white-space .hero-product-flex {
    gap: 0rem;
    padding: ;

  }


  .hero-product-flex .hero-product-flex-left {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    padding: 2rem 0rem 1rem 1rem;
 
  }



  .hero-product-flex-left .benefit-flex-item {
    height: auto;


    display: grid;
    grid-template-rows: 2.2rem 4.2rem;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "img1 title1"
      "img1 title2";
  }

 .hero-product-flex .hero-product-flex-right {
    margin-top: 7rem;


 }

  .hero-product-flex .hero-product-flex-right img {
    grid-area: img1;
    width: auto;
  }

  .benefit-flex-item .hero-product-flex-title1 {
    grid-area: title1;
  }

  .benefit-flex-item .hero-product-flex-title2 {
    grid-area: title2;
    
  }

  .landing .challenge-options {
    
  }

  .landing .platform-display {
    overflow: hidden;
  }


  .challenge-options .picture-container {
    display: none;
    width: 27rem; /* 18rem */
    bottom: -30px; /* Position at the bottom of the parent */
    right: -134px; /* -80px */
  

  }

  .challenge-options .picture-container2 {
    display: none;
  }

}