
body, html {
  margin: 0;
  padding: 0;
  font-family: 'DM Sans', sans-serif;
  background: linear-gradient(135deg, #0f2d3f, #141034, #260946);
  color: #fff;
  overflow-x: hidden;
}

/* HERO SECTION */
.about-hero {
  text-align: center;
  padding: 120px 20px 80px;
}

.about-title {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(2rem, 6vw, 3.8rem);
  color: #8cf0ff;
  margin-bottom: 20px;
}

.about-subtitle {
  font-size: clamp(1rem, 2vw, 1.4rem);
  opacity: 0.9;
}

/* MAIN SECTION */
.about-main {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.about-wrapper {
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* TEXT */
.about-text {
  flex: 1;
  min-width: 280px;
}

.section-heading {
  font-family: 'Press Start 2P', monospace;
  font-size: 1.3rem;
  color: #8cf0ff;
  margin-bottom: 10px;
  
}

.about-text p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.highlight {
  font-size: 1.2rem;
  font-weight: bold;
  color: #00ff9c;
}

/* IMAGE */
.about-image img {
  width: 380px;
  max-width: 100%;
  border-radius: 14px;
  border: 2px solid #9036ff;
  box-shadow: 0 0 25px rgba(138, 43, 226, 0.45);
}

/* ALPHABET GRID */
.alphabet-section {
  padding: 10px 20px 120px;
  text-align: center;
}

.alphabet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.alpha-card {
  padding: 22px;
  border: 2px solid #9036ff;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  font-size: 1.05rem;
  transition: 0.3s ease;
}

.alpha-card span {
  font-family: 'Press Start 2P', monospace;
  font-size: 2.1rem;
  color: #50e0ff;
  display: block;
}

.alpha-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.6);
}

/* Footer */
footer {
  text-align: center;
  padding: 30px 10px;
  font-size: 18px;
  background-color: #9036ff;
  color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
/* ABOUT BLOCKZILLAS SECTION */
.about-blockzillas {
  padding: 80px 20px;
  max-width: 1000px;
  margin: auto;
}

.aboutbz-text p {
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.aboutbz-text ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.aboutbz-text ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.sub-heading {
  font-family: 'Press Start 2P', monospace;
  font-size: 1.2rem;
  margin: 30px 0 10px;
  color: #5fefff;
}

.center {
  text-align: center;
}

.closing-line {
  margin-top: 40px;
  font-weight: bold;
  color: #00ff9c;
  text-align: center;
  font-size: 1.3rem;
}
/* === MEDIA QUERIES === */

/* Text under image */
.about-image {
  text-align: center;
}

.about-image img {
  display: block;
  margin: 0 auto;
}

.image-label {
  font-family: 'Press Start 2P', monospace;
  font-size: 1.1rem;
  margin-top: 15px;
  color: #00ff9c;    /* neon cyan */
  text-align: center;
  letter-spacing: 2px;
}
@media (max-width: 425px) {
  .image-label {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (max-width: 375px) {
  .image-label {
    font-size: 1rem;
     line-height: 1.5rem;
  }
}

@media (max-width: 320px) {
  .image-label {
    font-size: 1rem;
     line-height: 1.5rem;
  }
}
/* Mobile adjustments for spacing */
@media (max-width: 768px) {
  .about-hero {
    padding: 60px 15px 40px; /* reduce top & bottom padding */
  }

  .about-main {
    padding: 35px 10px; /* reduce main section padding */
    gap: 30px; /* reduce gap between text and image */
  }

  .about-blockzillas {
    padding: 40px 15px; /* reduce blockzillas section padding */
  }

  .sub-heading {
    margin: 20px 0 8px; /* reduce heading margin */
  }

  .about-text p,
  .aboutbz-text p,
  .aboutbz-text ul li {
    margin-bottom: 12px; /* reduce paragraph spacing */
    line-height: 1.5; /* optional for tighter text */
  }
}
