.discord-section {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: #0a0f0e;
}

.discord-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.discord-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10, 15, 14, 0.78);
}

.discord-diag {
  position: absolute;
  inset: 0 0 0 auto;
  width: 55%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.discord-diag svg {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.discord-inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 72px 80px;
  text-align: center;
}

.discord-left {
  width: min(100%, 640px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.discord-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 800;
  font-style: italic;
  color: rgba(255, 255, 255, 0.08);
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  display: block;
}

.discord-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.discord-text {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 36px;
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  padding: 13px 28px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
}

.discord-btn:hover {
  background: #fff;
  color: #0a0f0e;
  transform: translateY(-2px);
}

.discord-btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

@media (max-width: 860px) {
  .discord-inner {
    padding: 56px 40px;
  }
}

@media (max-width: 640px) {
  .discord-inner {
    padding: 48px 24px;
  }

  .discord-num {
    font-size: 72px;
  }

  .discord-overlay {
    background: rgba(10, 15, 14, 0.82);
  }
}
