/* New Styles for Home Content */
#home-section,
#about-section,
#contact-section,
#payment-section,
#terms-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 4rem; /* Add padding to account for fixed header if any */
    position: relative; /* Needed for z-index */
    z-index: 1; /* Ensure it's above background */
}

.home-content {
    max-width: 900px;
    width: 100%;
    background: rgba(26, 26, 47, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.1s ease-out; /* Add transition for mouse effect */
    will-change: transform; /* Hint for performance */
}

.home-content .section-title {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #00ffaa, #00aaff, #00ffaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 170, 0.2);
    font-weight: 700;
}

.home-content .tagline {
    font-size: 1.2rem;
    color: #aab;
    font-style: italic;
    margin-bottom: 2rem;
}

.home-content .subtitle {
    font-size: 1.8rem;
    color: #fff;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.home-content p {
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    text-align: left;
}

.home-content p:last-of-type {
    margin-bottom: 0;
}

.points-section {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    text-align: left;
}

.points-section .subtitle {
    font-size: 1.4rem;
    color: #00ffaa;
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-shadow: none;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    font-weight: 600;
    text-align: center;
}

.points-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.points-section li {
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.points-section li::before {
    content: '✨'; /* Use a simple emoji or custom icon */
    position: absolute;
    left: 0;
    color: #00aaff; /* Adjust icon color */
    font-size: 0.9rem;
    top: 0.2rem;
}

.terms-section li::before {
     content: '⚠️'; /* Use a warning emoji for terms */
     color: #ffcc00; /* Adjust icon color */
}

.payment-section { 
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left; /* Ensure text within sections is left aligned */
  position: relative; /* For pseudo-elements */
  overflow: hidden; /* Hide overflow from pseudo-elements */
  box-shadow: 0 4px 15px rgba(0, 255, 170, 0.1); /* Add a subtle shadow */
}

.payment-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(0, 255, 170, 0.05) 50%,
        rgba(0, 170, 255, 0.05) 60%,
        transparent 70%
    );
    background-size: 30px 30px; /* Smaller pattern size */
    opacity: 0.6;
    z-index: 0; /* Below content */
    animation: patternMove 20s linear infinite; /* Reuse pattern animation */
}

.payment-section h3 {
  color: #00ffaa;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.8rem;
  position: relative; /* Above pseudo-element */
  z-index: 1;
}

.payment-section p {
  margin-bottom: 1rem;
  color: #ccc;
  font-size: 1rem;
  position: relative; /* Above pseudo-element */
  z-index: 1;
}

.payment-info-box {
  background: rgba(0, 0, 0, 0.4); /* Darker background for contrast */
  border: 1px solid rgba(0, 255, 170, 0.2); /* Highlight border */
  border-radius: 8px;
  padding: 1rem 1.2rem; /* Slightly more padding */
  margin-bottom: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative; /* Above pseudo-element */
  z-index: 1;
  box-shadow: inset 0 0 8px rgba(0, 255, 170, 0.1); /* Inner glow effect */
  transition: background 0.3s ease, border-color 0.3s ease;
}

.payment-info-box:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 255, 170, 0.4);
}

.info-label {
  font-weight: 600;
  color: #aaff;
  flex-shrink: 0;
  margin-right: 1rem;
  position: relative; z-index: 1;
}

.info-value {
  color: #fff;
  word-break: break-all;
  flex-grow: 1;
  text-align: right; /* Align values to the right */
  position: relative; z-index: 1;
}

/* Footer Styles */
.footer {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    color: #aab;
    font-size: 0.9rem;
    background: rgba(26, 26, 47, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .home-content {
        padding: 2rem;
    }

    .home-content .section-title {
        font-size: 2rem;
    }

    .home-content .tagline {
        font-size: 1rem;
    }

    .home-content .subtitle {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .home-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .points-section {
        margin-top: 2rem;
        padding-top: 1rem;
    }

    .points-section .subtitle {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .points-section li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        padding-left: 1.3rem;
    }

     .points-section li::before,
     .terms-section li::before {
         font-size: 0.8rem;
         top: 0.15rem;
     }

     .payment-section h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        padding-bottom: 0.6rem;
     }

    .payment-info-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-label {
        margin-right: 0;
        margin-bottom: 0.3rem;
    }

    .info-value {
        text-align: left;
        width: 100%;
    }

    .footer {
        margin-top: 3rem;
        padding: 1.5rem;
        font-size: 0.8rem;
    }
}