body {
  background-color: #141516;
  z-index: 1;
}

/* Section-01 */

.section-01 {
  display: flex;
  width: 100%;
  box-sizing: border-box;
}

.logo-and-words {
  display:flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: 40%;
  padding-right: 80px;
  
}
.btn-div {
  padding-right: 40px;
}

.main-banner {
  width: 60%;
}

/* Section-02 */

.section-02 {
  text-align: center;
  margin-top: 50px;
}

.div-container {
  display:flex;
  justify-content: center;
  
  
}

.styling-div {
  width: 25%;
  
  display: flex;
  position: relative;
  z-index: 2;
  
}

.styling-div:nth-of-type(1) {
  justify-content: flex-end;
}

.title {
  padding: 0 20px;
  
  position: relative;
  z-index: 2;
}

.styling-p {
  border-bottom: 3px solid red;
  width: 90%;
  height: 30%;
  position: relative;
  z-index: 2;
}

.words-container p {
  margin-left: 25%;
  margin-right: 20%;
  text-align: left;
  white-space: pre-wrap;
}

.words-container ol {
  margin-left: 25%;
  margin-right: 20%;
  text-align: left;
}

.dont-want {
  color: #FB5E3A;
}

.want {
  color: #59EAFF;
}

.words-container {
  margin-bottom: 80px;
}

.pitch-your-game {
  background-color: #A91418;  
  transition: background-color 0.3s;
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.pitch-your-game:hover {
  background-color: #A40305;   /* Slight color change on hover */
}


.section-02 {
  padding-bottom: 90px;
}


/* Section-03 */

.section-03 {
  background-image: url('../pics/homepage/background-02.jpg');
  position: relative;
  z-index: 2;
  padding-bottom: 50px;
}

.section-03::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(57, 60, 51, 0.9); /* Dark overlay */
  z-index: 0;
}

.section-03-div {
  display:flex;
  justify-content: center;
  position:relative;

}

.surgent-studios-pic {
  margin-top: 20px;
  margin-right: 50px;
  border-radius: 8px;
}

.coming-soon {
  margin-top: 50px;
  padding: 10px 30px;
  border-radius: 5px;
  border: none;
  transition: background-color 0.3s ease;
}

.coming-soon:hover {
  cursor: pointer;
  background-color: #44494C;
  
}

.last-btn-div {
  
  text-align: center;
  margin: 50px 0;
}

/* Media Queries */

@media (max-width: 2000px) {
  
}

@media (max-width: 1440px) {


}

@media (max-width: 1024px) {

}

@media (max-width: 768px) {
  .logo-and-words{
    margin-left: 8%;
  }
  .main-banner{
    margin-left: -8%;
  }
  .words-container ol {
    font-size: 1rem;
    padding-bottom: 5%;
  }
  .surgent-studios-pic{
    width: 80%;
  }
  .section-03-words{
    margin-left: -20%;
  }
}
@media (max-width: 425px) {
  .section-01{
    display: flex;
    flex-direction: column-reverse;
  }
  .logo-and-words{
    margin-left: 33%;
    margin-top: 10%;
  }
  .logo-and-words img {
    margin-left: 20%;
  }
  .main-banner{
    margin-left: 3%;
    width: 90%;
  }
  .top-game{
    font-size: 0.6rem;
    margin-left: -15%;
    margin-top: 10%;
    padding-left: 10%;
    padding-right: 8%;
    width: 150%;

  }

  .section-02{
    margin-top: 5%;
  }
  .words-container{
    margin-left: -40%;
    margin-right: -30%;
    padding-right: 0%;
    font-size: 0.8rem;
  }
  .words-container p{
    margin-bottom: 5%;
  }
  .words-container ol {
    font-size: 1rem;
    padding-bottom: 5%;
  }
  .funded-title {
    margin-left: -3%;
    font-size: 1.3rem;
    width: 90%;
  }

  .section-03-div{
    display: flex;
    flex-direction: column;
  }
  .surgent-studios-pic{
    width: 90%;
    margin-left: 4%;
  }
  .section-03-words{
    margin-left: 16%;
  }

  .coming-soon-div{
    margin-top: -20%;
  }
  .coming-soon{
    margin-left: 50%;

  }
}






