/* About Us Page Specific Styles */
.about-intro {
  font-size: 1.4rem;
  background: linear-gradient(145deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
  padding: 2.5rem;
  border-radius: 40px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  margin-bottom: 2.5rem;
  border-left: 5px solid var(--gold);
  border-right: 1px solid rgba(212,175,55,0.2);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  line-height: 1.8;
  font-weight: 400;
  color: var(--text-light);
}

.about-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.about-card {
  flex: 1 1 280px;
  background: linear-gradient(145deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 32px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(212,175,55,0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-gold);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(212,175,55,0.25);
  background: linear-gradient(145deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
}

.about-card:hover::before {
  opacity: 1;
}

.about-card:hover::after {
  transform: translateY(0);
}

.about-card i {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  transition: var(--transition-smooth);
  display: inline-block;
}

.about-card:hover i {
  transform: scale(1.1) rotate(5deg);
  color: var(--light-gold);
  text-shadow: 0 0 20px rgba(212,175,55,0.5);
}

.about-card h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: var(--soft-gold);
}

.about-card p {
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 1rem;
}

/* Counter Section */
.counter-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 3rem;
  background: linear-gradient(145deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 60px;
  padding: 3rem 2.5rem;
  margin-top: 2.5rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(212,175,55,0.3);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.counter-item {
  text-align: center;
  position: relative;
  min-width: 150px;
}

.counter-item::after {
  content: '';
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), var(--light-gold), var(--gold), transparent);
}

.counter-item:last-child::after {
  display: none;
}

.counter-num {
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
  text-shadow: 0 0 20px rgba(212,175,55,0.5);
}

.counter-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  font-size: 1rem;
  font-weight: 600;
}

/* Team Rows Layout */
.team-row {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
  place-items: center;
  justify-content: center;
  width: 100%;
}

.founder-row {
  grid-template-columns: repeat(1, 350px);
  margin-bottom: 2rem;
}

.cofounder-row {
  grid-template-columns: repeat(3, 350px);
  margin-bottom: 2rem;
}

.staff-row {
  grid-template-columns: repeat(auto-fit, 350px);
  margin-bottom: 2rem;
}

/* Team Cards */
.team-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03), rgba(0,0,0,0.02));
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 24px;
  padding: 2.5rem 2rem 2.2rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, background 0.45s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.05), inset 0 1px 0 rgba(255,255,255,0.1);
  text-align: center;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 350px;
  min-height: 450px;
  height: auto;
  cursor: pointer;
  will-change: transform, box-shadow;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212,175,55,0.12) 0%, transparent 40%, rgba(212,175,55,0.08) 70%, transparent 100%);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}

.team-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, rgba(212,175,55,0.3), transparent);
  border-radius: 26px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -2;
}

.team-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 24px 60px rgba(0,0,0,0.42), 0 0 32px rgba(212,175,55,0.22), inset 0 1px 0 rgba(255,255,255,0.2);
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.07), rgba(0,0,0,0.04));
}

.team-card:hover::before {
  opacity: 1;
  transform: scale(1.05);
}

.team-card:hover::after {
  opacity: 1;
  animation: diagonalGlow 4.2s ease-in-out infinite;
}

@keyframes diagonalGlow {
  0% {
    background: linear-gradient(135deg, transparent, rgba(212,175,55,0.15), transparent);
    transform: translate(-120%, -120%);
    opacity: 0;
  }
  35% {
    opacity: 0.32;
  }
  50% {
    background: linear-gradient(135deg, transparent, rgba(212,175,55,0.35), transparent);
    transform: translate(0, 0);
    opacity: 0.55;
  }
  65% {
    opacity: 0.32;
  }
  100% {
    background: linear-gradient(135deg, transparent, rgba(212,175,55,0.15), transparent);
    transform: translate(120%, 120%);
    opacity: 0;
  }
}

/* Icon Wrapper for Better Hover Control */
.icon-wrapper {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(212,175,55,0.25), rgba(212,175,55,0.15), rgba(212,175,55,0.1));
  border-radius: 50%;
  border: 3px solid rgba(212,175,55,0.4);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  box-shadow: 0 8px 20px rgba(212,175,55,0.2);
}

.icon-wrapper::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(212,175,55,0.6), rgba(212,175,55,0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card i {
  font-size: 4rem;
  color: var(--gold);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  position: relative;
  z-index: 1;
}

.team-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212,175,55,0.5), rgba(212,175,55,0.3), rgba(212,175,55,0.2));
  box-shadow: 0 12px 30px rgba(212,175,55,0.4);
}

.team-card:hover .icon-wrapper::after {
  opacity: 1;
  animation: pulseGlow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseGlow {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
}

.team-card:hover i {
  transform: rotate(8deg) scale(1.08);
  color: var(--light-gold);
  filter: drop-shadow(0 4px 12px rgba(212,175,55,0.6));
}

.team-card h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.team-card .team-title {
  color: var(--soft-gold);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: auto;
  padding: 0.8rem 0 1rem 0;
  width: 100%;
}

.roles span {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 30px;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
  font-weight: 600;
  letter-spacing: 0.4px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  white-space: nowrap;
}

.roles span::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.roles span:hover {
  background: linear-gradient(135deg, var(--gold), rgba(212,175,55,0.9));
  color: #0B2A34;
  border-color: var(--gold);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}

.roles span:hover::before {
  left: 100%;
}

/* Founder Card Special Styles */
.founder-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
  animation: rotateGlow 20s linear infinite;
  pointer-events: none;
}

@keyframes rotateGlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.founder-card {
  border: 2px solid var(--gold);
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
  max-width: 450px;
  padding-bottom: 2.4rem;
}

.founder-card .roles {
  padding: 0.8rem 0 2rem 0;
}

.cofounder-card .icon-wrapper i {
  font-size: 3.8rem;
  background: linear-gradient(145deg, #e5c66b, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.founder-card .team-title,
.cofounder-card .team-title {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.2rem;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.4);
  display: inline-block;
  padding-bottom: 0.3rem;
}

.founder-card h3,
.cofounder-card h3 {
  font-size: 1.9rem;
  background: linear-gradient(135deg, #fff, var(--soft-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Staff Cards Styling */
.staff-card {
  opacity: 0.95;
  transition: var(--transition-smooth);
}

.staff-card:hover {
  opacity: 1;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: linear-gradient(145deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  background: linear-gradient(145deg, rgba(0,0,0,0.65), rgba(0,0,0,0.45));
  box-shadow: 0 15px 30px rgba(212,175,55,0.2);
}

.service-card i {
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-block;
  transition: var(--transition-smooth);
}

.service-card:hover i {
  transform: scale(1.1);
  text-shadow: 0 0 15px rgba(212,175,55,0.5);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-light);
  margin: 0;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: linear-gradient(145deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 24px;
  padding: 2rem 1.8rem;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  background: linear-gradient(145deg, rgba(0,0,0,0.65), rgba(0,0,0,0.45));
  box-shadow: 0 10px 25px rgba(212,175,55,0.2);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover i {
  transform: scale(1.1);
  color: var(--light-gold);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.4;
  color: var(--text-light);
  font-weight: 600;
}

/* Professional Join Box */
.join-box {
  background: linear-gradient(145deg, #0A2F38, #052229);
  border-radius: 50px;
  padding: 4rem 3rem;
  border: 2px solid var(--gold);
  box-shadow: 0 0 50px rgba(212,175,55,0.25);
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

.join-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(212,175,55,0.08), transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.join-box > * {
  position: relative;
  z-index: 1;
}

/* Responsive mobile improvements for About Us */
@media (max-width: 1100px) {
  .cofounder-row {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .about-intro {
    font-size: 1.1rem;
    padding: 1.8rem 1.25rem;
  }

  .about-grid {
    gap: 1.2rem;
  }

  .about-card {
    padding: 1.8rem 1.5rem;
  }

  .counter-section {
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .team-row {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .team-card {
    width: 100%;
    max-width: 100%;
    padding: 2rem 1.5rem 2rem;
  }

  .team-card:hover {
    transform: none;
    box-shadow: 0 14px 30px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.12);
  }

  .team-card:hover::after {
    opacity: 0;
    animation: none;
  }

  .team-card i {
    font-size: 3.2rem;
  }

  .icon-wrapper {
    width: 90px;
    height: 90px;
    margin-bottom: 1.2rem;
  }

  .roles {
    gap: 0.45rem;
    padding: 0.6rem 0 0.8rem 0;
  }

  .roles span {
    font-size: 0.72rem;
    padding: 0.35rem 0.7rem;
  }

  .team-card h3 {
    font-size: 1.6rem;
  }

  .team-card .team-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .about-intro {
    font-size: 1rem;
    padding: 1.4rem 1rem;
  }

  .team-card {
    padding: 1.6rem 1rem 1.8rem;
  }

  .team-card h3 {
    font-size: 1.45rem;
  }

  .team-card .team-title {
    font-size: 1rem;
  }

  .team-row {
    gap: 1rem;
  }
}

.join-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.join-header i {
  font-size: 4rem;
  color: var(--gold);
  animation: bounce 3s infinite;
  background: rgba(212,175,55,0.1);
  padding: 1rem;
  border-radius: 50%;
}

.join-header h2 {
  display: block;
  margin-bottom: 0;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #fff, var(--soft-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.join-header h2:after {
  display: none;
}

.join-description {
  color: var(--text-dim);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 1rem;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.server-details {
  background: linear-gradient(145deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 2rem;
  margin: 2rem 0;
  border-left: 4px solid var(--gold);
  border-right: 1px solid rgba(212,175,55,0.2);
}

.server-details h3 {
  color: var(--gold);
  margin: 1.5rem 0 1rem;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.server-details h3:first-of-type {
  margin-top: 0;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
  margin: 1rem 0;
}

.service-list span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-dim);
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 12px;
  transition: var(--transition-default);
}

.service-list span:hover {
  background: rgba(212, 175, 55, 0.15);
  transform: translateX(5px);
}

.service-list span i {
  color: var(--gold);
  font-size: 1rem;
  width: 20px;
}

.features-list {
  list-style: none;
  margin: 1rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: var(--text-dim);
  font-size: 0.95rem;
  padding: 0.5rem;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 12px;
  transition: var(--transition-default);
}

.features-list li:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateX(5px);
}

.features-list li i {
  color: var(--gold);
  font-size: 0.9rem;
  width: 20px;
}

/* Leadership List in Join Box */
.leadership {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
  justify-content: flex-start;
}

.leader-card {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border-radius: 20px;
  padding: 1rem 1.5rem;
  text-align: center;
  min-width: 180px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: var(--transition-default);
}

.leader-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.2);
}

.leader-card strong {
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.leader-card span {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.founder-leader {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.1));
  border: 1px solid var(--gold);
}

.founder-leader strong {
  color: var(--gold);
  font-size: 1.1rem;
}

.cofounder-leader {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.08));
}

.links-section {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.link-item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(212, 175, 55, 0.1);
  padding: 0.8rem 1.5rem;
  border-radius: 40px;
  text-decoration: none;
  color: var(--text-light);
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.link-item:hover {
  background: var(--gold);
  color: var(--deep-teal);
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}

.link-item i {
  font-size: 1.2rem;
}

.contacts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(212, 175, 55, 0.08);
  padding: 0.7rem 1.2rem;
  border-radius: 40px;
  color: var(--text-dim);
  font-size: 0.9rem;
  transition: var(--transition-default);
}

.contact-item:hover {
  background: rgba(212, 175, 55, 0.15);
  transform: translateX(5px);
}

.contact-item i {
  color: var(--gold);
  font-size: 1rem;
}

.welcome-message {
  font-size: 1.1rem;
  color: var(--soft-gold);
  text-align: center;
  margin: 2rem 0 1.5rem;
  font-style: italic;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 2rem;
}

.welcome-message i {
  color: var(--gold);
  margin: 0 0.5rem;
}

.join-box .btn {
  margin-top: 1rem;
  padding: 16px 48px;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .about-intro {
    font-size: 1.1rem;
    padding: 1.5rem;
  }
  
  .counter-section {
    padding: 2rem 1.5rem;
    gap: 2rem;
  }
  
  .counter-item::after {
    display: none;
  }
  
  .counter-num {
    font-size: 2.5rem;
  }
  
  .counter-label {
    font-size: 0.85rem;
  }
  
  .team-row {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .staff-row {
    flex-direction: column;
    align-items: center;
  }
  
  .team-card {
    padding: 2rem 1.5rem;
    max-width: 100%;
  }
  
  .icon-wrapper {
    width: 75px;
    height: 75px;
  }
  
  .team-card i {
    font-size: 2.8rem;
  }
  
  .team-card h3 {
    font-size: 1.5rem;
  }
  
  .founder-card .icon-wrapper i {
    font-size: 3.2rem;
  }
  
  .cofounder-card .icon-wrapper i {
    font-size: 3rem;
  }
  
  .founder-card h3,
  .cofounder-card h3 {
    font-size: 1.5rem;
  }
  
  .founder-card .team-title,
  .cofounder-card .team-title {
    font-size: 1rem;
  }
  
  .join-box {
    padding: 2rem 1.5rem;
  }
  
  .join-header {
    flex-direction: column;
    text-align: center;
  }
  
  .join-header h2 {
    font-size: 1.8rem;
  }
  
  .server-details {
    padding: 1.5rem;
  }
  
  .service-list {
    grid-template-columns: 1fr;
  }
  
  .leadership {
    flex-direction: column;
    align-items: stretch;
  }
  
  .leader-card {
    text-align: center;
  }
  
  .links-section {
    flex-direction: column;
    align-items: stretch;
  }
  
  .link-item {
    justify-content: center;
  }
  
  .contacts-list {
    flex-direction: column;
    align-items: stretch;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .about-card {
    padding: 1.8rem 1.2rem;
  }
  
  .about-card h3 {
    font-size: 1.5rem;
  }
  
  .about-card p {
    font-size: 0.9rem;
  }
  
  .team-card {
    padding: 1.5rem;
  }
  
  .icon-wrapper {
    width: 65px;
    height: 65px;
  }
  
  .team-card i {
    font-size: 2.2rem;
  }
  
  .team-card h3 {
    font-size: 1.3rem;
  }
  
  .founder-card .icon-wrapper i {
    font-size: 2.6rem;
  }
  
  .cofounder-card .icon-wrapper i {
    font-size: 2.5rem;
  }
  
  .founder-card h3,
  .cofounder-card h3 {
    font-size: 1.4rem;
  }
  
  .join-header h2 {
    font-size: 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .service-card {
    padding: 1.2rem;
  }
  
  .service-card i {
    font-size: 2rem;
  }
  
  .service-card h3 {
    font-size: 0.9rem;
  }
  
  .feature-card {
    padding: 1.2rem;
  }
  
  .feature-card i {
    font-size: 2rem;
  }
  
  .feature-card h3 {
    font-size: 1rem;
  }
}