/* Reset and basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

::-webkit-scrollbar{
  display: none;
}

  html{
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
  }
  
  /* Header Section */
  .header {
    background: linear-gradient(135deg, #222121, #000000); /* Red gradient background */
    color: #fff;
    text-align: center;
    padding: 100px 20px; /* Increased padding for better visual spacing */
    position: relative;
    overflow: hidden;
  }
  
  .header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
  }
  
  .header h1 {
    font-size: 4rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 1.5s ease-in-out;
  }
  
  .header .brand {
    color: #ffd6d6;
    font-weight: 900;
    font-style: italic;
  }
  
  .header p {
    font-size: 1.5rem;
    margin-top: 15px;
    font-weight: 400;
    color: #ffd6d6;
    animation: fadeIn 2s ease-in-out;
  }
  
  .cta-button {
    text-align: center;
    display: inline-block;
    margin-top: 15px;
    padding: 15px 35px;
    background-color: black;
    color: white;
    border: 1px solid red;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s , box-shadow 0.4s;
  }
  
  .cta-button:hover {
    box-shadow: 0px 0px 20px 0px red;
    color: black;
    background-color: rgb(255, 254, 254);
    transform: scale(1.1);
  }
  
  .header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: rgba(235, 12, 12, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes pulse {
    0% {
      transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
      transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
      transform: translate(-50%, -50%) scale(0.8);
    }
  }
  

section{
  display: flex;
  justify-content: space-around;
  width: 100%;
  background: black;
  max-height: 300px;
  margin: 10px 0;
}


.big-container{
  width: 65%;
    display: grid;
    place-content: center;
    padding: 15px;
    gap: 15px;
}

.big-container h2{
  font-size: 2rem;
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.big-container {
  font-size: 1.2rem;
  font-family:Arial, Helvetica, sans-serif
}

.small-container{
  display: flex;
  justify-content: center;
  width: 30%;
}

.small-container img{
  height: 100%;
  object-fit: cover;
max-width: 100%;
}

#availablesoon{
font-size: 15px;
margin: -15px 0;
}

#android{
  padding-bottom: 10px;
}

 #choose{
  margin: 20px auto;
    font-size: 1.2rem;
 }

 .seperater{
  height: 1px;
  background: white;
  width: 75%;
  margin: auto;
  margin-top: 10px;
  box-shadow: 0px 0px 4px red;
 }
  
  
  /* Buttons */
  .buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
  }
  
  .cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
    width: 65%;
  }
  
  /* iOS Install Instructions Section */
  .install-ios {
    background-color: #0e0e0e;
    text-align: center;
    color: #fff;
    max-height: fit-content;
    padding: 10px 5%;
  }
  
  .install-ios h3 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .install-ios ol {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  .install-ios li {
    margin: 20px 0;
    padding-left: 20px;
    position: relative;
  }
  
  /* Responsive Design for Smaller Devices */
  @media (max-width: 1024px) {
    .header h1 {
      font-size: 3.5rem;
    }
  
    .download-section h2 {
      font-size: 2.5rem;
    }
  
    .download-section p {
      font-size: 1.1rem;
    }
  
    .buttons {
      gap: 20px;
    }
  
    .cta-button {
      padding: 14px 28px;
      font-size: 1rem;
    }
  
    .install-ios ol {
      font-size: 1rem;
    }
  }
  
  /* Mobile Devices */
  @media (max-width: 768px) {
    .header {
      padding: 80px 20px;
    }
  
    .header h1 {
      font-size: 2.8rem;
    }
  
    .header p {
      font-size: 1.2rem;
    }
  


    .big-container{
      width: 65%;
    }
    
    .big-container h2{
      font-size: 1.4rem;
    }
    
    .big-container p {
      font-size: 1rem;
    }  
   
    
    #availablesoon{
    font-size: 12px;
    margin: -12px 0;
    }


    .cta-button {
      font-size: .8rem;
      width: 55%;
    }
  
    .download-section h2 {
      font-size: 2rem;
    }
  
    .download-section p {
      font-size: 1rem;
    }
  
    .install-ios h3 {
      font-size: 2rem;
    }
  
    .install-ios ol {
      font-size: 1rem;
      padding-left: 0;
    }
  
    .install-ios li {
      font-size: 1rem;
      padding-left: 15px;
    }
  }
  
  /* Extra Small Mobile Devices */
  @media (max-width: 550px) {
    .header h1 {
      font-size: 2.5rem;
    }
  
    .header p {
      font-size: 1rem;
    }
  

section{
  max-height: 250px;
}

    .big-container{
      width: 65%;
    }
    
    .big-container h2{
      font-size: 1.2rem;
    }
    
    .big-container p {
      font-size: .9rem;
    }  
   
    
    #availablesoon{
    font-size: 10px;
    margin: -10px 0;
    }


    .cta-button {
      font-size: .6rem;
      width: 80%;
    }
  
  
    .install-ios h3 {
      font-size: 1.8rem;
    }
  
    .install-ios ol {
      font-size: 0.9rem;
    }
  
    .install-ios li {
      font-size: 0.95rem;
      padding-left: 10px;
    }
  }
  

  @media (max-width:450px) {
    section{
      max-height: fit-content;
      padding: 5px 2%;
      flex-direction: column-reverse;
    }

#Tv{
  flex-direction: column;
}

    .small-container{
      width: 100%;
    }
    
        .big-container{
          width: 100%;
          text-align: center;
        }
        
        .big-container h2{
          font-size: 1rem;
        }
        
        .big-container p {
          font-size: .65rem;
        }  
       
        
        #availablesoon{
        font-size: 10px;
        margin: -10px 0;
        }
    
    
        .cta-button {
          font-size: .6rem;
          width: 80%;
          margin: auto;
        }
  }

  @media (max-width:310px) {

        
        .big-container h2{
          font-size: .9rem;
        }
        
        .big-container p {
          font-size: .55rem;
        }  
       
        
        #availablesoon{
        font-size: 8px;
        }
    
    
        .cta-button {
          font-size: .6rem;
          width: 90%;
          
        }
  }