.about-container {
  max-width: 1200px;
  margin: 80px auto 40px;
  padding: 0 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

.about-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-header h1 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  font-size: 2.5rem;
  color: #333;
  font-weight: 600;
}

.about-content {
  line-height: 1.6;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

.about-content section {
  margin-bottom: 40px;
}

.mission-statement {
  background: #f0f8f0;
  padding: 35px;
  border-radius: 12px;
  margin-bottom: 40px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  border-left: 4px solid #27ae60;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.mission-statement:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.mission-statement h2 {
  color: #1e8449;
  margin-bottom: 20px;
}

.features {
  margin: 40px 0;
}

.features ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.features li {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.features li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.features li:hover::before {
  opacity: 1;
}

.features li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Individual feature colors - soft solid colors */
.features li:nth-child(1) {
  background: #f8f0ff;
  color: #2c3e50;
  border-left-color: #9b59b6;
}

.features li:nth-child(1) h3 {
  color: #8e44ad;
}

.features li:nth-child(2) {
  background: #f0f8ff;
  color: #2c3e50;
  border-left-color: #3498db;
}

.features li:nth-child(2) h3 {
  color: #2980b9;
}

.features li:nth-child(3) {
  background: #fff8f0;
  color: #2c3e50;
  border-left-color: #e67e22;
}

.features li:nth-child(3) h3 {
  color: #d35400;
}

.mascot-section {
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  padding: 40px;
  border-radius: 12px;
  margin: 40px 0;
  color: white;
}

/* Main Mascot Content - Text and Image Side by Side */
.mascot-main-content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.mascot-info {
  flex: 1;
}

.mascot-main-image {
  flex-shrink: 0;
}

.mascot-main-img {
  width: 200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.mascot-main-img:hover {
  transform: scale(1.05);
}

.mascot-info h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.mascot-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.95;
}

.mascot-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.mascot-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.feature-icon {
  font-size: 1.2rem;
}

.mascot-gallery-section {
  margin-top: 40px;
  text-align: center;
}

.mascot-gallery-section h4 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
}

/* Carousel Container */
.carousel-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.carousel-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.design-image-item {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.9);
  justify-content: center;
  height: 100%;
}

.design-image-item.active {
  opacity: 1;
  transform: scale(1);
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 24px;
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 15px;
  flex-wrap: wrap;
  max-width: 100%;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.dot.active {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.design-img-link {
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.design-img-link:hover {
  transform: scale(1.05);
  text-decoration: none;
}

.design-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  display: block;
}

.design-img-link:hover .design-img {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.design-image-item span {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.contribute {
  margin: 40px 0;
}

.contribute-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.contribute-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

.community {
  background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
  padding: 40px;
  border-radius: 12px;
  margin: 0 0 40px 0;
  color: white;
  text-align: center;
}

.discord-invite {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.discord-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 30px;
  max-width: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.discord-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.discord-icon {
  flex-shrink: 0;
  color: white;
  opacity: 0.9;
}

.discord-content {
  flex: 1;
  text-align: left;
}

.discord-content h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.discord-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  background: white;
  color: #5865F2;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.discord-btn:hover {
  background: #f8f9fa;
  color: #4752C4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.discord-btn:active {
  transform: translateY(0);
}

h2 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

/* Section titles outside of blocks */
.about-content > h2 {
  margin-top: 50px;
  margin-bottom: 30px;
  font-size: 2.2rem;
  text-align: left;
}

.community-title {
  text-align: center !important;
  margin-top: 50px;
  margin-bottom: 30px;
  font-size: 2.2rem;
}

h3 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  color: #444;
  margin-bottom: 10px;
  font-weight: 500;
}

a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .about-container {
    margin-top: 60px;
    padding: 0 15px;
  }

  .about-header h1 {
    font-size: 2rem;
  }

  .features ul {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .features li {
    padding: 20px;
  }

  .contribute-options {
    grid-template-columns: 1fr;
  }

  .mascot-main-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .mascot-main-img {
    width: 150px;
  }

  .mascot-features {
    justify-content: center;
  }

  .mascot-section {
    padding: 30px 20px;
  }

  .mascot-gallery-section {
    margin-top: 30px;
  }

  .mascot-gallery-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .carousel-container {
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
  }

  .carousel-wrapper {
    height: 350px;
    padding: 15px;
    max-width: 100%;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .design-img {
    width: 200px;
    height: 200px;
  }

  .design-img-link:hover {
    transform: scale(1.02);
  }

  .community {
    padding: 30px 20px;
  }

  .discord-card {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .discord-content {
    text-align: center;
  }

  .discord-content h3 {
    font-size: 1.3rem;
  }

  .discord-content p {
    font-size: 0.95rem;
  }

  .discord-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
} 