/* ================================================================
   WEBHOSTINGSATINAL.ORG — Güvenlik / Koruma Teması
   Konsept: Shield Purple + Dark — SSL, yedekleme, güvenlik
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg:       #07050f;
  --bg2:      #0b0818;
  --panel:    #110e22;
  --panel2:   #17132c;
  --accent:   #7c3aed;
  --accent2:  #a855f7;
  --accent3:  #c084fc;
  --green:    #10b981;
  --text:     #ede9fe;
  --text-dim: #6b5a8a;
  --border:   rgba(124,58,237,0.15);
  --radius:   16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Urbanist', sans-serif;
  line-height: 1.8; overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(124,58,237,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(16,185,129,0.04) 0%, transparent 50%);
  pointer-events: none; z-index: 0;
}

.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
  z-index: 9999; width: 0;
  box-shadow: 0 0 15px var(--accent2);
}

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,5,15,0.93);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.header-container {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 10px; }
.logo-dot {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(124,58,237,0.3);
}
.logo-dot::before { content: '🛡'; }

.logo-text {
  font-size: 1.1rem; font-weight: 800; color: #fff; letter-spacing: 0.5px;
}

.nav-links { display: flex; gap: 0.3rem; }
.nav-links a {
  color: var(--text-dim); text-decoration: none;
  padding: 0.4rem 0.9rem; border-radius: 8px;
  font-size: 0.9rem; font-weight: 600; transition: all 0.2s;
}
.nav-links a:hover { color: var(--accent3); background: rgba(124,58,237,0.1); }

.cta-button {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff !important; -webkit-text-fill-color: #fff;
  padding: 0.55rem 1.4rem; border-radius: 10px;
  text-decoration: none; font-size: 0.9rem; font-weight: 700;
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(124,58,237,0.3);
}
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,58,237,0.5); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }

.hero-intro { text-align: center; padding: 7rem 2rem 5rem; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.35);
  color: var(--accent3); padding: 0.4rem 1.2rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 2rem;
}

.hero-intro h1 {
  font-size: clamp(1.8rem, 4.8vw, 3.3rem); font-weight: 900; color: #fff;
  line-height: 1.2; margin-bottom: 1.5rem;
}
.hero-intro h1 span {
  background: linear-gradient(135deg, var(--accent2), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.subtitle { color: var(--text-dim); font-size: 1.05rem; max-width: 620px; margin: 0 auto 2.5rem; font-weight: 500; }

/* Shield badge stats */
.hero-stats {
  display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--border);
}
.stat-item {
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.2); border-radius: 12px;
  padding: 1.2rem 1.8rem; text-align: center; min-width: 130px;
  transition: all 0.3s;
}
.stat-item:hover { border-color: rgba(124,58,237,0.4); background: rgba(124,58,237,0.12); }
.stat-num {
  font-size: 1.9rem; font-weight: 900;
  background: linear-gradient(135deg, var(--accent2), var(--accent3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block;
}
.stat-label { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.3rem; font-weight: 600; }

.content-block { margin: 2rem 0 6rem; }

.section {
  background: linear-gradient(135deg, var(--panel), var(--panel2));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 3rem; margin-bottom: 2rem;
  position: relative; overflow: hidden; transition: all 0.3s;
}
.section::before {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(ellipse at bottom right, rgba(16,185,129,0.04) 0%, transparent 70%);
}
.section::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.section:hover { border-color: rgba(124,58,237,0.3); box-shadow: 0 12px 50px rgba(124,58,237,0.08); }
.section:hover::after { opacity: 1; }

.section-number {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700;
  color: var(--green); margin-bottom: 0.5rem; letter-spacing: 2px; text-transform: uppercase;
}
.section-number::before { content: '✓'; font-size: 0.9rem; }

.section h2 {
  font-size: 1.65rem; font-weight: 800; color: #fff;
  margin-bottom: 1.5rem; line-height: 1.3;
}

.section img { width: 100%; height: 320px; object-fit: cover; border-radius: 12px; margin: 1.5rem 0; border: 1px solid var(--border); transition: transform 0.4s; }
.section img:hover { transform: scale(1.01); }
.section p { color: var(--text-dim); font-size: 0.98rem; margin-bottom: 1.1rem; line-height: 1.85; text-align: justify; }

a { color: var(--accent3); text-decoration: none; font-weight: 600; }
a:hover { color: #fff; }

.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 4rem 2rem 2rem; margin-top: 4rem; }
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.footer-col h4 { color: var(--accent3); font-size: 0.9rem; font-weight: 800; margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; color: var(--text-dim); text-decoration: none; margin-bottom: 0.5rem; font-size: 0.88rem; transition: all 0.2s; font-weight: 400; }
.footer-col a:hover { color: var(--accent3); padding-left: 4px; }
.footer-desc { color: var(--text-dim); font-size: 0.88rem; line-height: 1.7; margin-top: 0.8rem; }
.footer-bottom { text-align: center; font-size: 0.82rem; color: var(--text-dim); }

@media (max-width: 768px) {
  .header-container { flex-direction: column; gap: 1rem; }
  .section { padding: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .nav-links { display: none; }
}

/* ==========================================
   MIGRATED INLINE STYLES
   ========================================== */
:root {
      --primary-color: #ef4444;
      --primary-hover: #dc2626;
      --bg-color: #f8fafc;
      --text-color: #1e293b;
      --heading-color: #0f172a;
      --card-bg: #ffffff;
      --border-color: #e2e8f0;
      --max-width: 1200px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--bg-color);
    }

    /* Reading Progress Bar */
    .progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      height: 4px;
      background-color: var(--primary-color);
      width: 0%;
      z-index: 1000;
      transition: width 0.1s ease-out;
    }

    /* Header */
    header {
      position: sticky;
      top: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(5px);
      border-bottom: 1px solid var(--border-color);
      z-index: 999;
    }

    .header-container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .brand {
      display: flex;
      align-items: center;
      text-decoration: none;
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--heading-color);
    }

    .logo-dot {
      width: 12px;
      height: 12px;
      background-color: var(--primary-color);
      border-radius: 50%;
      margin-right: 8px;
    }

    .nav-links {
      display: flex;
      gap: 20px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: 500;
      font-size: 0.95rem;
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: var(--primary-color);
    }

    .header-cta {
      background-color: var(--primary-color);
      color: #fff;
      padding: 10px 20px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      transition: background-color 0.2s;
    }

    .header-cta:hover {
      background-color: var(--primary-hover);
    }

    /* Hero Section */
    .hero-intro {
      max-width: var(--max-width);
      margin: 60px auto 40px;
      padding: 0 20px;
      text-align: center;
    }

    .hero-tag {
      display: inline-block;
      background-color: rgba(239, 68, 68, 0.1);
      color: var(--primary-color);
      padding: 6px 16px;
      border-radius: 20px;
      font-weight: 700;
      font-size: 0.85rem;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .hero-intro h1 {
      font-size: 2.8rem;
      line-height: 1.2;
      color: var(--heading-color);
      margin-bottom: 20px;
      font-weight: 800;
    }

    .hero-intro h1 span {
      color: var(--primary-color);
    }

    .hero-intro .subtitle {
      font-size: 1.25rem;
      color: #64748b;
      max-width: 800px;
      margin: 0 auto 40px;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 40px;
    }

    .stat-item {
      background: var(--card-bg);
      padding: 20px;
      border-radius: 8px;
      border: 1px solid var(--border-color);
      box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    }

    .stat-val {
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary-color);
      margin-bottom: 5px;
    }

    .stat-lbl {
      font-size: 0.9rem;
      color: #64748b;
      font-weight: 500;
    }

    /* Main Container */
    .content-block {
      max-width: var(--max-width);
      margin: 40px auto;
      padding: 0 20px;
    }

    article {
      display: flex;
      flex-direction: column;
      gap: 60px;
    }

    /* Section Layout */
    .section {
      background: var(--card-bg);
      border-radius: 12px;
      padding: 40px;
      border: 1px solid var(--border-color);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.02);
      scroll-margin-top: 100px;
    }

    .section-number {
      font-size: 0.9rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--primary-color);
      margin-bottom: 10px;
      letter-spacing: 1px;
    }

    .section h2 {
      font-size: 1.8rem;
      color: var(--heading-color);
      margin-bottom: 25px;
      font-weight: 700;
    }

    .section img {
      width: 100%;
      max-height: 450px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 25px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .section-text {
      font-size: 1.05rem;
      color: var(--text-color);
      margin-bottom: 25px;
      text-align: justify;
    }

    .section-text p {
      margin-bottom: 20px;
    }

    .section-text p:last-child {
      margin-bottom: 0;
    }

    .section-text a {
      color: var(--primary-color);
      text-decoration: underline;
      font-weight: 600;
    }

    .section-text a:hover {
      color: var(--primary-hover);
    }

    .section-cta {
      display: flex;
      justify-content: flex-start;
      margin-top: 25px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero-intro h1 {
        font-size: 2rem;
      }
      .hero-stats {
        grid-template-columns: repeat(2, 1fr);
      }
      .header-container {
        flex-direction: column;
        gap: 15px;
      }
      .nav-links {
        flex-wrap: wrap;
        justify-content: center;
      }
      .section {
        padding: 20px;
      }
    }

    /* Footer */
    footer {
      background-color: #0f172a;
      color: #94a3b8;
      padding: 60px 0 30px;
      margin-top: 80px;
      border-top: 1px solid #1e293b;
    }

    .footer-container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }

    .footer-col h3 {
      color: #fff;
      font-size: 1.2rem;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .footer-col p {
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col ul li {
      margin-bottom: 10px;
    }

    .footer-col ul li a {
      color: #94a3b8;
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.2s;
    }

    .footer-col ul li a:hover {
      color: #fff;
    }

    .footer-bottom {
      max-width: var(--max-width);
      margin: 40px auto 0;
      padding: 20px 20px 0;
      border-top: 1px solid #1e293b;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85rem;
    }

    .footer-bottom p {
      color: #64748b;
    }

