* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Sora';
    src: url('/fonts/Sora-Regular.woff') format('woff'),
         url('/fonts/Sora-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Sora', Arial, sans-serif;
    background-color: #000;
    color: white;
    min-width: 1440px;
}

.header-container, .container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allows wrapping for smaller screens */
    align-items: center;
  
}
.header-container{
    height: 60px;
}
header {
    background-color: #000;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    width:240px;
}

.logo img {
    height: 23.97px; /* Adjust based on your logo size */
    margin-right: 10px;
}


nav ul {
    display: flex;
    gap: 45px;
    list-style: none;
}

nav a {
    font-size: 1rem;
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    border-radius: 10px;
    text-align:end;
    padding: 5px 20px;
}

nav a:hover {
    background: #242424;
    color: #73ef96;
    padding: 5px 20px;
}

.banner {
 
    display: flex; 
  
}

.banner-content::before {

    content: '';
    
    position: absolute;
    
    top: -50%;
    
    left: -50%;
    
    width: 200%;
    
    height: 200%;

    background-color: #000;
    
    background-image: url('image/banner-bg-10deg.png');
    
    background-repeat: repeat;

    transform: rotate(-10deg);
    min-height: 710px;
    z-index: -1;
    background-position: 82px -108px; /* 20°旋转补偿后的坐标 */
    }

.banner-content {
    width: 1440px;
    max-width: 1440px;
    position: relative;
    overflow: hidden;
    display: flex;
    margin: 0 auto;
    justify-content: space-evenly;
    align-items: center;
    min-height: 710px;
}

.banner-text {
    width: 543px;
}

.banner h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #73ef96;
}

.banner p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    width:260px;
}

.banner-image {
    padding-top:77px;
    padding-right:30px
}
.banner-image img {
    max-width: 100%;
    max-height: 573px;
    margin-right:22px;
}

.features {
    background-color: #000;
    padding-top:165px;
}

.feature h2{
   width: 8em;
   text-align: left;
   display: flex;
   flex-direction: column;
   font-size: 2rem;
   font-weight: normal;
}

.feature {
    display: flex;
    flex-direction: column;
    width: 29%;
}

.highlight {
    display: flex;
    padding-bottom: 3px;
}

.highlight span{
    background-color: #73ef96;
    color: #000;
    display: flex;
    align-self: flex-end;
    vertical-align: bottom;
    height: 1em;
    overflow: hidden;
    line-height: 1.4em;
    padding: 0 0.3em 0 0.3em;
}

.description {
    font-size: 1rem;
    margin-top: 30px;
    text-align: left;
    color: #98b0ac;
    width: 62%;
    line-height: 1.5;
}

.about {
    background-color: #000;
    padding-top:100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
  
.about .container {
    background-image: url('image/about-bg.png');
    background-repeat: no-repeat;
    background-size: 911px;
    background-position: calc(100% + 10px) 0; 
    height: 700px;
    padding: 0px 0 50px 20px;
}

.about h2 {
    background-color: #73ef96;
    font-size: 4rem;
    color: #000;
    width: 8.2em;
    padding:30px 0px 10px 30px ;
    font-weight: normal;
    margin-bottom: 110px;
}

.about-des-section{

    display: flex;
    justify-content: flex-start;
    align-items:flex-start;
    gap:70px
}

.about-des-section p{
    width:28%;
    line-height: 1.5;
    color: #98b0ac;
}

footer {
    padding: 30px 0;
    text-align: left;
    background-color: #000;
    border-top: 1px solid #fff;
}



footer div {
    margin-top: 22px;
}

.footer-container {
    display: flex;
    justify-content:flex-start;
    align-items: center;
    gap: 20px;
    padding: 50px 50px;
  }
  
  .btn {
    background-color: #1a1a1a;
    color: white;
    padding: 10px 20px;
    border: 1px solid white;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    background-color: white;
    color: #1a1a1a;
  }
  
  .download-btn {
    background-color: #73ef96;
    color: #000;
    padding: 12px 15px;
    font-size: 16px;
    border-radius: 20px;
    border-color: #000;
  }

  .download-btn[title] {
    position: relative;
}

.download-btn[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s;
}

.download-btn[title]::after {
    opacity: 0;
    pointer-events: none;
}
  
  .google-play-btn {
    display: inline-block;

    color: white;
   
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
    border-color: 1px solid #fff;
  }
  
  .google-play-btn img {
    width: 180px;
    vertical-align: middle;
  }
  
  .google-play-btn:hover {
    background-color: #1a1a1a;;
    color: #1a1a1a;
  }
