* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html,
body {
    /* 不显式允许 pinch-zoom，多数 Chromium 内核下可抑制双指缩放 */
    touch-action: pan-x pan-y;
}

body {
    background-color: #19222b;
    color: white;
}

.container {
    /*max-width: 414px;*/
    margin: 0 auto;
    padding: 20px;
    background-color: #19222b;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}

.logo {
    height: 30px;
}

.whatsapp-icon {
    height: 24px;
}

.hero-section {
    position: relative;
    margin-bottom: 20px;
}

.hero-image {
    width: 100%;
    border-radius: 10px;
}

.floating-coins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.coin {
    width: 30px;
    position: absolute;
    animation: float 3s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.phone-overlay {
    position: absolute;
    bottom: -50px;
    right: 20px;
    width: 150px;
}

.phone-screen {
    width: 100%;
}

.earning-section {
    text-align: center;
    margin-bottom: 50px;
}

.earning-text {
    font-size: 18px;
    margin-bottom: 10px;
}

.highlight {
    color: #FFD700;
    font-weight: bold;
}

.earn-button {
    background-color: #FFA500;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
}

.advantages-section {
    margin-bottom: 30px;
}

.advantages-section h2 {
    margin-bottom: 20px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.advantage-box img {
    width: 100%;
    height: auto;
}

.steps-section {
    margin-bottom: 30px;
}

.steps-section h2 {
    margin-bottom: 20px;
    color: white;
}


.step-item {
    background-color: #001F3F;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.2);
}

.step-number {
    background: linear-gradient(to bottom, #0088ff, #0066ff);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 16px;
}

.step-item p {
    color: white;
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
}

.step-item a {
    color: #0088ff;
    text-decoration: underline;
}

.about-section {
    margin-bottom: 30px;
}

.about-section h2 {
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 10px;
    line-height: 1.5;
    text-align: start;
}


/*@media screen and (min-width: 415px) {*/
/*    body {*/
/*        display: flex;*/
/*        justify-content: center;*/
/*        align-items: center;*/
/*        min-height: 100vh;*/
/*        background-color: #000;*/
/*    }*/
/*    */
/*    .container {*/
/*        width: 414px;*/
/*        border: 1px solid #333;*/
/*        border-radius: 20px;*/
/*        overflow: hidden;*/
/*    }*/
/*}*/

.earn-link {
    display: block;
    margin-top: 15px;
}

.earn-image {
    width: 200px;
    height: auto;
}

.advantages-section h2,
.steps-section h2,
.about-section h2 {
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    font-weight: bold;
}

.advantages-section h2::after {
    content: 'ADVANTAGES';
    position: absolute;
    top: -20px;
    left: -10px;
    color: rgba(255, 255, 255, 0.08);
    font-size: 8px;
    z-index: -1;
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: blur(5px);
    pointer-events: none;
    font-weight: bold;
}


.steps-section h2::after {
    content: 'WORKS';
    position: absolute;
    top: -20px;
    left: -10px;
    color: rgba(255, 255, 255, 0.08);
    font-size: 8px;
    z-index: -1;
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: blur(5px);
    pointer-events: none;
    font-weight: bold;
}

.about-section h2::after {
    content: 'ABOUT US';
    position: absolute;
    top: -20px;
    left: -10px;
    color: rgba(255, 255, 255, 0.08);
    font-size: 72px;
    z-index: -1;
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: blur(5px);
    pointer-events: none;
    font-weight: bold;
}

.title-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.title-bg {
    position: absolute;
    top: -8px;
    left: -5px;
    font-size: 45px;
    color: rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    filter: blur(0.5px);
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

h2 {
    position: relative;
    color: white;
    font-size: 24px;
    font-weight: bold;
    z-index: 1;
}

.gradient-6,
.gradient-7 {
  background-size: 130% auto;
}
.gradient-6 {
  background-image: linear-gradient(to right, #2ba9d7, #80d0c7);
}
.btn-gradient {
  color: #fff !important;
  border: 0;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
  letter-spacing: -0.01rem;
  box-shadow: none;
}
.rounded {
  border-radius: 0.4rem !important;
}
.me-2 {
  margin: 20px 0;
  width: 80%;
  font-size: 18px !important;
  text-decoration: none;
}
.btn {
  --bs-btn-padding-x: 1.2rem;
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 0.8rem;
  --bs-btn-font-weight: 700;
  --bs-btn-line-height: 1.7;
  --bs-btn-color: #60697b;
  --bs-btn-bg: transparent;
  --bs-btn-border-width: 2px;
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: 0.4rem;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem
    rgba(var(--bs-btn-focus-shadow-rgb), 0.5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: var(--bs-btn-bg);
  border-radius: 50px !important;
  transition: all 0.2s ease-in-out;
}
.step-number {
  background: linear-gradient(to bottom, #2ba9d7, #2dbbab);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 16px;
}
.header {
  background-color: #152739;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  gap: 10px;
  margin-bottom: 0px;
}
.earning-text {
  font-size: 16px;
  margin-bottom: 10px;
}
.step-item p {
  color: white;
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}
.step-number {
  text-align: center;
  width: 25%;
}
h2 {
  text-align: start;
}
