/* SUPIRE - İletişim sayfası stilleri
   Not: Bu kurallar önceden contact-discord.html içinde satır içi <style>
   bloğundaydı. Sıkı CSP (style-src 'self') için ayrı dosyaya taşındı. */
:root {
      --bg-main: #0a0908;
      --card-bg: #120f0d;
      --card-border: #221812;
      --card-hover-border: #3d2314;
      --accent-orange: #ff6600;
      --accent-hover: #ff771a;
      --accent-glow: rgba(255, 102, 0, 0.25);
      --text-main: #f3f4f6;
      --text-muted: #9e8d83;
      --text-dim: #63564d;
      --inner-bg: #181310;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
    }

    body {
      background-color: var(--bg-main);
      color: var(--text-main);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 30px 16px;
    }

    /* Header Alanı */
    header {
      width: 100%;
      max-width: 960px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px;
      padding: 0 4px;
    }

    .brand {
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--accent-orange);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-shadow: 0 0 16px var(--accent-glow);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .brand-bar {
      width: 4px;
      height: 20px;
      background: var(--accent-orange);
      border-radius: 2px;
      box-shadow: 0 0 10px var(--accent-orange);
    }

    .back-btn {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 8px;
      transition: all 0.2s ease;
    }

    .back-btn:hover {
      color: var(--text-main);
      border-color: var(--accent-orange);
    }

    /* Layout ve Kartlar */
    .container {
      width: 100%;
      max-width: 960px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 12px;
      padding: 24px;
      transition: all 0.25s ease;
      position: relative;
    }

    .card:hover {
      border-color: var(--card-hover-border);
    }

    .card-title {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--accent-orange);
      font-size: 1.1rem;
      font-weight: 800;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .card-title i {
      font-size: 1.2rem;
    }

    .hero-layout {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .icon-box {
      width: 60px;
      height: 60px;
      background: rgba(255, 102, 0, 0.08);
      border: 1px solid rgba(255, 102, 0, 0.2);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-orange);
      font-size: 1.8rem;
      flex-shrink: 0;
      box-shadow: inset 0 0 12px rgba(255, 102, 0, 0.1);
    }

    .hero-content {
      flex: 1;
    }

    .hero-content p {
      color: var(--text-muted);
      font-size: 0.92rem;
      line-height: 1.6;
      margin-bottom: 18px;
    }

    /* Buton Grubu */
    .actions-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 16px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 20px;
      border-radius: 8px;
      font-size: 0.88rem;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: all 0.2s ease;
    }

    .btn-orange {
      background: var(--accent-orange);
      color: #000;
      box-shadow: 0 0 14px var(--accent-glow);
    }

    .btn-orange:hover {
      background: var(--accent-hover);
      transform: translateY(-1px);
    }

    .btn-dark {
      background: var(--inner-bg);
      color: var(--text-main);
      border: 1px solid var(--card-border);
    }

    .btn-dark:hover {
      border-color: var(--accent-orange);
      color: var(--accent-orange);
      transform: translateY(-1px);
    }

    /* Özel Link Kutusu */
    .link-box {
      background: var(--inner-bg);
      border: 1px solid var(--card-border);
      padding: 12px 16px;
      border-radius: 8px;
      font-size: 0.85rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .link-box span {
      color: var(--accent-orange);
      font-weight: 600;
      font-family: monospace;
      font-size: 0.95rem;
    }

    /* Şart Listesi */
    .requirements-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .requirements-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--inner-bg);
      border: 1px solid var(--card-border);
      padding: 12px 16px;
      border-radius: 8px;
      font-size: 0.9rem;
      color: var(--text-main);
    }

    .requirements-list li i {
      color: var(--accent-orange);
      font-size: 1rem;
    }

    /* Toast Bildirimi */
    .toast {
      position: fixed;
      bottom: 24px;
      right: 24px;
      background: var(--card-bg);
      color: var(--text-main);
      border: 1px solid var(--accent-orange);
      padding: 12px 22px;
      border-radius: 8px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.8), 0 0 15px var(--accent-glow);
      font-size: 0.88rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      pointer-events: none;
      z-index: 9999;
    }

    .toast i {
      color: var(--accent-orange);
    }

    .toast.show {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 640px) {
      .hero-layout {
        flex-direction: column;
      }
      .actions-grid {
        flex-direction: column;
      }
      .btn {
        width: 100%;
        justify-content: center;
      }
      .link-box {
        flex-direction: column;
        align-items: flex-start;
      }
    }

/* ==========================================================================
   Üretim sürümü eklemeleri (eski satır içi style="" değerlerinin karşılığı)
   ========================================================================== */

.card-lead {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.contact-mail {
  color: var(--text-main);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dotted var(--accent-orange);
}

.contact-mail:hover {
  color: var(--accent-orange);
}

.card-note {
  color: var(--text-dim);
  font-size: 0.82rem;
  margin-top: 12px;
  line-height: 1.5;
}

.card-note .fa-circle-info {
  color: var(--accent-orange);
}

/* Başlıklar artık h1/h2; başlık varsayılanlarını sıfırlıyoruz */
h1.card-title,
h2.card-title {
  font-size: 1.05rem;
  font-weight: 700;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-orange);
  outline-offset: 3px;
}

/* Clipboard API kullanılamadığında devreye giren gizli kopyalama alanı */
.visually-hidden-copy {
  position: fixed;
  top: -1000px;
  left: -1000px;
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
