@font-face {
  font-family: stolzl-100;
  src: url(../fonts/stolzl-100.woff2);
  font-display: swap;
}

@font-face {
  font-family: stolzl-300;
  src: url(../fonts/stolzl-300.woff2);
  font-display: swap;
}

@font-face {
  font-family: stolzl-400;
  src: url(../fonts/stolzl-400.woff2);
  font-display: swap;
}

@font-face {
  font-family: stolzl-500;
  src: url(../fonts/stolzl-500.woff2);
  font-display: swap;
}

@font-face {
  font-family: stolzl-700;
  src: url(../fonts/stolzl-700.woff2);
  font-display: swap;
}

@font-face {
  font-family: stolzl-b;
  src: url(../fonts/stolzl-book.woff2);
  font-display: swap;
}

.stol-100 {
  font-family: stolzl-100;
  font-weight: 100;
}

.stol-300 {
  font-family: stolzl-300;
  font-weight: 300;
}

.stol-400 {
  font-family: stolzl-400;
  font-weight: 400;
}

.stol-500 {
  font-family: stolzl-500;
  font-weight: 500;
}

.stol-700 {
  font-family: stolzl-700;
  font-weight: 700;
}

.stol-b {
  font-family: stolzl-b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-color: #000000 !important;
  scroll-behavior: smooth;
}

body {
  font-family: stolzl-400, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: white;
  background-color: #131313 !important;
  min-height: 100vh;
}

/* Hero Section */
.hero-section {
  background-color: #000000 !important;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Background Image */
.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px;
  position: relative;
  z-index: 10;
}

.logo-img {
  height: 150px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(174, 152, 0, 0.3);
}

.nav-item {
  text-decoration: none;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 400;
  font-size: 1rem;
}

.nav-item.active {
  background: linear-gradient(135deg, 
      #FFED78, #FFD84B, #FCD248, #F4C13E, 
      #E8A62F, #D57E18, #D68019, #D9871D, 
      #E49E2A, #F6C540, #FFD84B
  );
  color: #000000;
  font-weight: 600;
}

.nav-item:hover {
  background: linear-gradient(135deg, 
      #FFED78, #FFD84B, #FCD248, #F4C13E, 
      #E8A62F, #D57E18, #D68019, #D9871D, 
      #E49E2A, #F6C540, #FFD84B
  );
  color: #000000;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background: linear-gradient(90deg, #F3A324 0%, #ECB536 22.64%, #E9BC3E 39.34%, #F4DA62 64%, #FCF17C 86.6%, #FFF986 100%);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Decorative Elements */
.decorative-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.arrow-top-right {
  position: absolute;
  top: 180px; /* Moved down from 140px */
  right: 120px;
  width: 150px;
  height: auto;
  opacity: 0.8;
}

.arrow-left {
  position: absolute;
  bottom: 80px; /* stays near bottom */
  left: 100px;
  width: 150px;  /* increased from 60px */
  height: auto;
  opacity: 0.8;
}


/* Hero Content */
.hero-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 5;
  padding: 0 50px;
  margin-top: -50px;
}

.hero-text {
  max-width: 1400px;
  margin: 0 auto;
}

.hero-title {
  font-size: 4.25rem;
  font-family: stolzl-500;
  font-weight: 500;
  margin-bottom: 30px;
 background: linear-gradient(90deg, #F3A324 0%, #ECB536 22.64%, #E9BC3E 39.34%, #F4DA62 64%, #FCF17C 86.6%, #FFF986 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  text-align: center;
  letter-spacing: -1px;
  
}

.hero-subtitle {
  font-size: 3rem;
  color: #cccccc;
  font-weight: 400;
  text-align: center;
}

.gold-text {
  background: linear-gradient(90deg, #F3A324 0%, #ECB536 22.64%, #E9BC3E 39.34%, #F4DA62 64%, #FCF17C 86.6%, #FFF986 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
}

/* Info Section */
.info-section {
  background-color: #131313 !important;
  min-height: 50vh;
  position: relative;
  padding: 80px 20px;
}

.info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.info-title {
  font-size: 2.5rem;
  font-family: stolzl-400;
  font-weight: 400;
  margin-bottom: 10px;
  text-align: center;
  grid-column: 1 / -1;
  background: linear-gradient(90deg, #F3A324 0%, #ECB536 22.64%, #E9BC3E 39.34%, #F4DA62 64%, #FCF17C 86.6%, #FFF986 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.question {
  font-size: 2rem;
  color: #D6D6D6;
  margin-bottom: 30px;
  font-family: stolzl-400;
}

.description {
  font-size: 1.2rem;
  font-family: stolzl-300;
  color: #D6D6D6;
  margin-bottom: 25px;
  line-height: 1.8;
}

.cta-button {
  background: linear-gradient(135deg, 
      #FFED78, #FFD84B, #FCD248, #F4C13E, 
      #E8A62F, #D57E18, #D68019, #D9871D, 
      #E49E2A, #F6C540, #FFD84B
  );
  color: #000;
  border: none;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-top: 25px;
  font-size: 1rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 237, 120, 0.4);
}

.phone-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-image {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  margin-left: 80px; /* shifted to the right */
}


/* Responsive Design */
@media (max-width: 1200px) {
  .info-container {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .hero-title {
      font-size: 4rem;
  }
  
  .info-title {
      font-size: 2.5rem;
  }
  
  .header {
      padding: 25px 40px;
  }
}

@media (max-width: 768px) {
  .header {
      padding: 20px 25px;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
  }
  
  .hamburger-menu {
      display: flex;
  }
  
  logo-img {
    height: 100px; /* This is what you increase */
    width: auto;
}
  
  .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(174, 152, 0, 0.3);
      border-radius: 0 0 20px 20px;
      flex-direction: column;
      padding: 20px;
      gap: 10px;
      display: none;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
  
  .nav-menu.active {
      display: flex;
  }
  
  .hero-title {
      font-size: 3.2rem;
  }
  
  .hero-subtitle {
      font-size: 1.6rem;
  }
  
  .info-title {
      font-size: 2rem;
  }
  
  .arrow-top-right,
  .arrow-left {
      display: none;
  }
  
  .hero-content {
      padding: 0 25px;
      margin-top: -30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
      font-size: 2.5rem;
  }
  
  .hero-subtitle {
      font-size: 1.3rem;
  }
  
  .hero-content {
      padding: 0 20px;
  }
  
  .nav-item {
      padding: 15px 20px;
      font-size: 1rem;
      text-align: center;
      border-radius: 10px;
      margin: 5px 0;
  }
  
  .header {
      padding: 20px;
  }
  
  .logo-img {
      height: 50px; /* Smaller for very small screens */
  }
}

.about-section {
  width: 100%;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 40px;
  background-color: #000000;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
      linear-gradient(45deg, transparent 0%, rgba(255, 237, 120, 0.05) 25%, transparent 50%),
      linear-gradient(-45deg, transparent 0%, rgba(255, 216, 75, 0.03) 25%, transparent 50%);
  pointer-events: none;
}

.about-title {
  font-size: 3.2rem;
  font-family: stolzl-400;
  font-weight: 400;
  margin-bottom: 2rem;
  background: linear-gradient(
      135deg,
      #FFED78 0%,
      #FFD84B 10%,
      #FCD248 20%,
      #F4C13E 30%,
      #E8A62F 40%,
      #D68019 50%,
      #D57E18 60%,
      #D9871D 70%,
      #E49E2A 80%,
      #F6C540 90%,
      #FFD84B 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.about-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: #D6D6D6;
  max-width: 1200px;
  font-family: stolzl-300;
  position: relative;
  z-index: 2;
}

.read-more-btn {
  display: inline-block;
  padding: 18px 60px;
  border: 1.5px solid #FFD84B;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: #FFD84B;
  background: transparent;
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
  z-index: 2;
}

.read-more-btn:hover {
  background: linear-gradient(
      135deg,
      #FFED78 0%,
      #FFD84B 10%,
      #FCD248 20%,
      #F4C13E 30%,
      #E8A62F 40%,
      #D68019 50%,
      #D57E18 60%,
      #D9871D 70%,
      #E49E2A 80%,
      #F6C540 90%,
      #FFD84B 100%
  );
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 216, 75, 0.4);
  border-color: transparent;
}

@media (max-width: 768px) {
  .about-title {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
  }
  
  .about-description {
      font-size: 1rem;
      margin-bottom: 2rem;
      padding: 0 20px;
  }
  
  .read-more-btn {
      padding: 15px 35px;
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-title {
      font-size: 2rem;
      letter-spacing: 2px;
  }
  
  .about-description {
      font-size: 0.9rem;
      padding: 0 15px;
  }
  
  .grid-overlay {
      background-size: cover;
  }
}

/* feature section */ 
.features-section {
  padding: 80px 40px 40px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.top-content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 80px;
  margin-left: 0;
}

.left-content {
  flex: 1;
  max-width: 600px;
  min-width: 0; /* Prevents flex overflow */
}

.main-title {
  font-size: 2.5rem;
  font-family: stolzl-500;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #D6D6D6;
  line-height: 1.2;
  margin-left: 0;
}

.main-description {
  font-size: 1.2rem;
  line-height: 1.7;
  font-family: 'stolzl-300', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #D6D6D6;
  margin-left: 0;
}

.right-content {
  flex: 0 0 500px;   /* make the container wider */
  display: flex;
  justify-content: center;
  align-items: center;
}


.flower-image {
  width: 500px;      
  height: auto;
  object-fit: contain;
  margin-left: 80px;
  margin-top: -40px;   /* move it 40px up */
  max-width: 100%;
}


.how-it-works-title {
  font-size: 2.5rem;
  font-family: stolzl-400;
  font-weight: 400;
  background: linear-gradient(90deg, #F3A324 0%, #ECB536 22.64%, #E9BC3E 39.34%, #F4DA62 64%, #FCF17C 86.6%, #FFF986 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 4rem;
}

.feature-section {
  margin-bottom: 60px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-section:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 2rem;
}

.feature-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(90deg, #F3A324 0%, #ECB536 22.64%, #E9BC3E 39.34%, #F4DA62 64%, #FCF17C 86.6%, #FFF986 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 1.4rem;
  color: #000000;
  flex-shrink: 0;
  position: relative;
  border: 3px solid transparent;
  background-clip: padding-box;
}

.feature-border{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0px 20px 0px 0px;
  border-radius: 50px;
  border: 2px solid transparent;
  background: linear-gradient(#000, #000) padding-box, linear-gradient(90deg, #FFED78 0%, #FFD84B 13.64%, #FCD248 19.89%, #F4C13E 56.22%, #E8A62F 67.49%, #D68019 79.68%, #D57E18 80.2%, #D9871D 83.8%, #E49E2A 89.6%, #F6C540 96.83%, #FFD84B 100%) border-box;
}
.feature-number::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: linear-gradient(90deg, #F3A324 0%, #ECB536 22.64%, #E9BC3E 39.34%, #F4DA62 64%, #FCF17C 86.6%, #FFF986 100%);
  z-index: -1;
}

.feature-title {
  font-size: 1.5rem;
  font-family: stolzl-400;
  font-weight: 400;
  color: #D6D6D6;
  line-height: 1.3;
}

.feature-description {
  font-size: 1.375rem;
  line-height: 1.7;
  font-family: stolzl-300;
  font-weight: 300;
  color: #D6D6D6;
  margin-bottom: 2rem;
}

.prize-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 10px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.prize-box {
  padding: 15px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 300;
  text-align: center;
  color: #000;
  white-space: nowrap;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  background: linear-gradient(#000, #000) padding-box, linear-gradient(90deg, #FFED78 0%, #FFD84B 13.64%, #FCD248 19.89%, #F4C13E 56.22%, #E8A62F 67.49%, #D68019 79.68%, #D57E18 80.2%, #D9871D 83.8%, #E49E2A 89.6%, #F6C540 96.83%, #FFD84B 100%) border-box;
  position: relative;
}

.bronze-box {
  background: linear-gradient(0deg, #C8592A 0%, #CC6030 2.09%, #E2874E 14.26%, #F2A264 25.48%, #FCB371 35.34%, #FFB976 42.75%, #FFB976 62.78%, #FBB370 67.74%, #F1A161 74.5%, #E18548 82.25%, #D46E33 87.39%, #B85B23 100%) padding-box, linear-gradient(90deg, #FFED78 0%, #FFD84B 13.64%, #FCD248 19.89%, #F4C13E 56.22%, #E8A62F 67.49%, #D68019 79.68%, #D57E18 80.2%, #D9871D 83.8%, #E49E2A 89.6%, #F6C540 96.83%, #FFD84B 100%) border-box;
  border: 2px solid transparent;
  
}

.silver-box {
  background: linear-gradient(135deg, #C0C0C0, #E8E8E8) padding-box, linear-gradient(90deg, #FFED78 0%, #FFD84B 13.64%, #FCD248 19.89%, #F4C13E 56.22%, #E8A62F 67.49%, #D68019 79.68%, #D57E18 80.2%, #D9871D 83.8%, #E49E2A 89.6%, #F6C540 96.83%, #FFD84B 100%) border-box;
  border: 2px solid transparent;
}

.gold-box {
  background: linear-gradient(135deg, #FFD700, #FFED4A) padding-box, linear-gradient(90deg, #FFED78 0%, #FFD84B 13.64%, #FCD248 19.89%, #F4C13E 56.22%, #E8A62F 67.49%, #D68019 79.68%, #D57E18 80.2%, #D9871D 83.8%, #E49E2A 89.6%, #F6C540 96.83%, #FFD84B 100%) border-box;
  border: 2px solid transparent;
}

.diamond-box {
  background: linear-gradient(135deg, #B9F2FF, #E0F7FF) padding-box, linear-gradient(90deg, #FFED78 0%, #FFD84B 13.64%, #FCD248 19.89%, #F4C13E 56.22%, #E8A62F 67.49%, #D68019 79.68%, #D57E18 80.2%, #D9871D 83.8%, #E49E2A 89.6%, #F6C540 96.83%, #FFD84B 100%) border-box;
  border: 2px solid transparent;
}

.wallet-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  max-width: 1200px;
}

.wallet-feature {
  flex: 1;
}

.wallet-feature-title {
  font-family: stolzl-400;
  font-weight: 5400;
  margin-bottom: 10px;
  color: white;
  font-size: 1.5rem;
}

.wallet-feature-desc {
  font-size: 1.5rem;
  color: #D6D6D6;
  line-height: 1.6;
  font-weight: 300;
  font-family: stolzl-300;
}

/* Ultra-wide screens (1920px+) */
@media (min-width: 1920px) {
  .features-section {
    max-width: 1200px;
    padding: 100px 60px 60px;
  }
  
  .main-title {
    font-size: 3rem;
  }
  
  .how-it-works-title {
    font-size: 2.5rem;
  }
  
  .flower-image {
    width: 400px;
  }
}

/* Large desktops (1200px - 1919px) */
@media (max-width: 1919px) and (min-width: 1200px) {
  .features-section {
    padding: 80px 50px 50px;
  }
}

/* Medium screens and tablets landscape (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .features-section {
    padding: 70px 40px 40px;
  }
  
  .top-content {
    gap: 40px;
    margin-left: 0;
  }
  
  .main-title {
    font-size: 2.2rem;
    margin-left: 0;
  }
  
  .main-description {
    margin-left: 0;
  }
  
  .flower-image {
    width: 300px;
    margin-left: 40px;
  }
  
  .prize-boxes {
    width: 80%;
    margin-left: 20px;
  }
}

/* Tablets portrait (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .features-section {
    padding: 60px 30px 30px;
  }
  
  .top-content {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
    margin-left: 0;
  }
  
  .right-content {
    flex: none;
    order: -1;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .flower-image {
    width: 280px;
    margin-left: 0;
  }
  
  .main-title {
    font-size: 2rem;
    margin-left: 0;
    text-align: center;
  }
  
  .main-description {
    margin-left: 0;
    text-align: center;
  }
  
  .how-it-works-title {
    font-size: 1.8rem;
  }
  
  .prize-boxes {
    width: 90%;
    margin-left: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .prize-box {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

/* Mobile landscape and small tablets (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  .features-section {
    padding: 50px 25px 25px;
  }
  
  .top-content {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
    margin-left: 0;
  }
  
  .right-content {
    flex: none;
    order: -1;
    width: 100%;
  }
  
  .flower-image {
    width: 250px;
    margin-left: 0;
  }
  
  .main-title {
    font-size: 1.8rem;
    margin-left: 0;
    text-align: center;
  }
  
  .main-description {
    margin-left: 0;
    text-align: center;
    font-size: 0.95rem;
  }
  
  .how-it-works-title {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }
  
  .feature-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .feature-title {
    font-size: 1.3rem;
  }
  
  .feature-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .prize-boxes {
    grid-template-columns: 1fr;
    width: 100%;
    margin-left: 0;
    gap: 12px;
  }
  
  .prize-box {
    white-space: normal;
    padding: 15px 20px;
    font-size: 0.9rem;
  }
  
  .wallet-features {
    gap: 25px;
  }
}

/* Mobile portrait (up to 575px) */
@media (max-width: 575px) {
  .features-section {
    padding: 40px 15px 20px;
  }
  
  .top-content {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    margin-left: 0;
  }
  
  .right-content {
    flex: none;
    order: -1;
    width: 100%;
  }
  
  .flower-image {
    width: 200px;
    margin-left: 0;
  }
  
  .main-title {
    font-size: 1.6rem;
    margin-left: 0;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .main-description {
    margin-left: 0;
    text-align: center;
    font-size: 0.9rem;
  }
  
  .how-it-works-title {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
  }
  
  .feature-section {
    margin-bottom: 40px;
    padding: 30px 0;
  }
  
  .feature-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .feature-title {
    font-size: 1.2rem;
  }
  
  .feature-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .feature-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .prize-boxes {
    grid-template-columns: 1fr;
    width: 100%;
    margin-left: 0;
    gap: 10px;
    margin: 20px 0;
  }
  
  .prize-box {
    white-space: normal;
    padding: 12px 15px;
    font-size: 0.85rem;
    border-radius: 20px;
  }
  
  .wallet-features {
    gap: 20px;
    margin-top: 25px;
  }
  
  .wallet-feature-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .wallet-feature-desc {
    font-size: 0.9rem;
  }
}

/* Extra small devices (up to 374px) */
@media (max-width: 374px) {
  .features-section {
    padding: 30px 10px 15px;
  }
  
  .flower-image {
    width: 180px;
  }
  
  .main-title {
    font-size: 1.4rem;
  }
  
  .main-description {
    font-size: 0.85rem;
  }
  
  .how-it-works-title {
    font-size: 1.3rem;
  }
  
  .prize-box {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
  
  .feature-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}
/*experince the digital gold section */
.gold-benefits-container {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gold-main-heading {
  text-align: center;
  font-size: 2.5rem;
  font-family: stolzl-400;
  font-weight: 400;
  margin-bottom: 80px;
  background: linear-gradient(90deg, #F3A324 0%, #ECB536 22.64%, #E9BC3E 39.34%, #F4DA62 64%, #FCF17C 86.6%, #FFF986 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.advantage-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.advantage-text {
  flex: 1;
}

.advantage-heading {
  font-size: 1.5rem;
  font-family: stolzl-400;
  font-weight: 400;
  margin-bottom: 15px;
  color: #FFC700;
  line-height: 1.2;
}

.advantage-details {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-weight: 300;
  font-family: stolzl-300;
}

/* Large Desktop */
@media (min-width: 1200px) {
  .gold-benefits-container {
      padding: 100px 40px;
      max-width: 1200px;
  }
  
  .gold-main-heading {
      font-size: 3.2rem;
      margin-bottom: 100px;
  }
  
  .gold-advantages-grid {
      gap: 80px 100px;
  }
  
  .advantage-heading {
      font-size: 2rem;
  }
  
  .advantage-details {
      font-size: 1.2rem;
  }
}

/* Medium Desktop */
@media (max-width: 1199px) and (min-width: 992px) {
  .gold-advantages-grid {
      gap: 50px 70px;
  }
  
  .advantage-heading {
      font-size: 1.6rem;
  }
  
  .advantage-details {
      font-size: 1.05rem;
  }
}

/* Tablet Landscape */
@media (max-width: 991px) and (min-width: 768px) {
  .gold-benefits-container {
      padding: 70px 30px;
  }
  
  .gold-main-heading {
      font-size: 2.4rem;
      margin-bottom: 60px;
  }
  
  .gold-advantages-grid {
      gap: 40px 50px;
  }
  
  .advantage-icon {
      width: 60px;
      height: 60px;
  }
  
  .advantage-icon img {
      width: 60px;
      height: 60px;
  }
  
  .advantage-heading {
      font-size: 1.5rem;
      margin-bottom: 12px;
  }
  
  .advantage-details {
      font-size: 1rem;
  }
}

/* Tablet Portrait and Small Tablets */
@media (max-width: 767px) and (min-width: 576px) {
  .gold-benefits-container {
      padding: 60px 25px;
  }
  
  .gold-main-heading {
      font-size: 2.2rem;
      margin-bottom: 50px;
  }
  
  .gold-advantages-grid {
      grid-template-columns: 1fr;
      gap: 40px;
      max-width: 600px;
  }
  
  .advantage-item {
      gap: 20px;
  }
  
  .advantage-icon {
      width: 55px;
      height: 55px;
  }
  
  .advantage-icon img {
      width: 55px;
      height: 55px;
  }
  
  .advantage-heading {
      font-size: 1.4rem;
      margin-bottom: 10px;
  }
  
  .advantage-details {
      font-size: 0.95rem;
  }
}

/* Mobile Phones */
@media (max-width: 575px) {
  .gold-benefits-container {
      padding: 50px 20px;
  }
  
  .gold-main-heading {
      font-size: 1.8rem;
      margin-bottom: 40px;
      line-height: 1.3;
  }
  
  .gold-advantages-grid {
      grid-template-columns: 1fr;
      gap: 35px;
      max-width: 100%;
  }
  
  .advantage-item {
      gap: 18px;
  }
  
  .advantage-icon {
      width: 50px;
      height: 50px;
  }
  
  .advantage-icon img {
      width: 50px;
      height: 50px;
  }
  
  .advantage-heading {
      font-size: 1.3rem;
      margin-bottom: 8px;
      line-height: 1.2;
  }
  
  .advantage-details {
      font-size: 0.9rem;
      line-height: 1.5;
  }
}

/* Very Small Phones */
@media (max-width: 374px) {
  .gold-benefits-container {
      padding: 15px 15px 40px 15px;
  }
  
  .gold-main-heading {
      font-size: 1.6rem;
      margin-bottom: 35px;
  }
  
  .advantage-item {
      gap: 15px;
  }
  
  .advantage-icon {
      width: 45px;
      height: 45px;
  }
  
  .advantage-icon img {
      width: 45px;
      height: 45px;
  }
  
  .advantage-heading {
      font-size: 1.2rem;
  }
  
  .advantage-details {
      font-size: 0.85rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.advantage-item {
  animation: fadeInUp 0.6s ease forwards;
}

.advantage-item:nth-child(1) { animation-delay: 0.1s; }
.advantage-item:nth-child(2) { animation-delay: 0.2s; }
.advantage-item:nth-child(3) { animation-delay: 0.3s; }
.advantage-item:nth-child(4) { animation-delay: 0.4s; }

/* Hover Effects for Desktop */
@media (min-width: 768px) {
  .advantage-item {
      transition: transform 0.3s ease;
  }
  
  .advantage-item:hover {
      transform: translateY(-5px);
  }
  
  .advantage-icon {
      transition: transform 0.3s ease;
  }
  
  .advantage-item:hover .advantage-icon {
      transform: scale(1.1);
  }
}
.footer-section {
  background-color: #000000;
  color: white;
  padding: 60px 20px 30px;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand-logo {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}

.quick-links {
  display: flex;
  flex-direction: column;
}

.quick-links h3 {
  background: linear-gradient(45deg, #F3A324, #ECB536, #E9BC3E, #F4DA62, #FCF17C, #FFF986);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 18px;
  font-family: stolzl-500;
  font-weight: 500;
  margin-bottom: 20px;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.quick-links ul {
  list-style: none;
}

.quick-links ul li {
  margin-bottom: 12px;
}

.quick-links ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18.25px;
  font-family: stolzl-300;
  transition: all 0.3s ease;
}

.quick-links ul li a:hover {
  color: #F3A324;
  padding-left: 5px;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info h3 {
  background: linear-gradient(45deg, #F3A324, #ECB536, #E9BC3E, #F4DA62, #FCF17C, #FFF986);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 18px;
  font-family: stolzl-500;
  font-weight: 500;
  margin-bottom: 20px;
  animation: gradientShift 3s ease-in-out infinite;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-details p {
  color: #ffffff;
  font-size: 18.25px;
  font-family: stolzl-300;
  line-height: 1.6;
  margin-bottom: 10px;
}

.social-media {
  margin-top: 20px;
}

.social-media h4 {
  color: #F3A324;
  font-size: 16px;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #333333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-icon:hover {
  background-color: #F3A324;
  transform: translateY(-3px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  max-width: 1200px;
}

.footer-bottom p {
  color: #cccccc;
  font-size: 12px;
}

.footer-bottom .social-media {
  margin-top: 0;
}

.footer-bottom .social-media h4 {
  margin-bottom: 10px;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
      grid-template-columns: 1fr;
      gap: 30px;
      text-align: center;
  }

  .footer-brand {
      align-items: center;
  }

  .footer-brand-logo {
      width: 120px;
  }

  .quick-links h3,
  .contact-info h3 {
      font-size: 16px;
  }

  .footer-bottom {
      flex-direction: column;
      gap: 20px;
      text-align: center;
  }

  .social-icons {
      justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-section {
      padding: 40px 15px 20px;
  }

  .footer-container {
      gap: 25px;
  }

  .footer-brand-logo {
      width: 100px;
  }

  .quick-links h3,
  .contact-info h3 {
      font-size: 14px;
  }

  .quick-links ul li a,
  .contact-details p {
      font-size: 13px;
  }

  .social-icon {
      width: 35px;
      height: 35px;
  }

  .social-icon svg {
      width: 18px;
      height: 18px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .footer-container {
      grid-template-columns: 1fr 1fr;
      gap: 35px;
  }

  .footer-brand {
      grid-column: 1 / -1;
      text-align: center;
  }
}
