#fw-section-image-with-text-77bdcf08-9afc-4f10-a810-d6dfd5f5671e {

h4 {
  color:#9ca3af;
}
h5 {
   color: #22C55E;
}
}
#fw-section-custom-html-e7ff8822-b64a-4210-aac1-44f36225734f {

.chaos-about {
    color: #F3F4F6;
    padding: 20px;
}

.chaos-about .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Headings */
.chaos-about h1,
.chaos-about h2 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.chaos-about h1 {
    font-size: 42px;
    margin-bottom: 60px;
}

.chaos-about h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #22C55E;
}

.chaos-about h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Text */
.chaos-about p {
    line-height: 1.7;
    margin-bottom: 16px;
    color: #D1D5DB;
}

.chaos-about .lead {
    font-size: 18px;
    color: #9CA3AF;
}

.chaos-about .highlight {
    color: #22C55E;
    font-weight: 600;
}

.chaos-about .bold-line {
    font-weight: 600;
    color: #F3F4F6;
}

.chaos-about .warning {
    margin-top: 10px;
    font-weight: 600;
    color: #22C55E;
}

/* Feature Grid */
.chaos-about .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 70px 0 90px;
}

.chaos-about .feature-card,
.chaos-about .info-card {
    background: #161B22;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

.chaos-about .feature-card:hover,
.chaos-about .info-card:hover {
    transform: translateY(-5px);
    border-color: #22C55E;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* COMMUNITY + MERCH CARDS SIDE BY SIDE */
.chaos-about .cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 100px;
}

/* Lists */
.chaos-about .values,
.chaos-about .cta-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.chaos-about .values li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.chaos-about .values li::before {
    content: "•";
    color: #22C55E;
    position: absolute;
    left: 0;
}

/* Merch lines */
.chaos-about .merch-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-weight: 600;
    color: #22C55E;
    margin: 15px 0 20px;
}

/* READY / CTA Section */
.chaos-about .ready-cta {
    margin-top: 80px;
    padding: 30px;
    border-radius: 12px;
    background: #161B22;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

/* Hover lift for Ready section */
.chaos-about .ready-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    border-color: #22C55E;
}

/* Two-column layout: text left, button right */
.chaos-about .ready-cta .ready-row {
    display: flex;
    align-items: center;       /* vertical center columns */
    justify-content: flex-start;
    gap: 30px;
}

/* Left column: text */
.chaos-about .ready-cta .ready-text {
    flex: 1;
}

/* Right column: buttons */
.chaos-about .ready-cta .ready-button {
    flex: 1;
    display: flex;
    flex-direction: column;   /* stack multiple buttons vertically */
    gap: 15px;                /* spacing between buttons */
    justify-content: center;  /* vertical alignment */
    align-items: flex-end;    /* right-align on desktop */
}

/* Responsive: stack on mobile and center buttons */
@media (max-width: 768px) {
    .chaos-about h1 {
        font-size: 32px;
    }
    .chaos-about h2 {
        font-size: 22px;
    }
    .chaos-about .ready-cta .ready-row {
        flex-direction: column;
        gap: 20px;
    }
    .chaos-about .ready-cta .ready-button {
        justify-content: center;
        align-items: center;  /* center buttons on mobile */
        flex: 1;
    }
}

/* Responsive: stack Community + Merch cards */
@media (max-width: 1024px) {
    .chaos-about .cards-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

}








#fw-section-custom-html-522bc582-53c5-4e99-a1db-dd84a3edd95f {

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

/* INFO SECTION */
.info-section {
  padding: 60px 20px;
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  color: #F3F4F6;
  line-height: 1.8;
  /* no background color, page background shows */
  position: relative;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* PAGE TITLE */
.page-title {
  text-align: center;
  margin-bottom: 60px;
}

.page-title h1 {
  font-size: 42px;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  color: #22C55E;
  font-weight: 700;
}

.page-title p {
  font-size: 18px;
  color: #9CA3AF;
  margin-bottom: 0;
}

/* CARD ROWS */
.cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

/* Single card full width if only one */
.cards-row > .card:only-child {
  grid-column: 1 / -1;
}

/* CARD STYLE */
.card {
  background: #161B22; /* dark card background */
  padding: 30px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #22C55E;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* CARD HEADINGS */
.card h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #22C55E;
  font-weight: 700;
}

/* CARD LISTS */
.card ul {
  list-style: none;
  padding-left: 20px;
  color: #D1D5DB;
  margin-bottom: 0;
}

.card li {
  margin-bottom: 10px;
  position: relative;
}

.card li::before {
  content: "•";
  color: #22C55E;
  position: absolute;
  left: -20px;
  font-weight: bold;
}

/* BOTTOM SPACER TO PREVENT FOOTER OVERLAP */
.info-end-spacer {
  height: 150px; /* adjust to match footer height */
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .cards-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .page-title h1 {
    font-size: 32px;
  }

  .card h2 {
    font-size: 22px;
  }
}

}