@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Global Styles for Gaming VDS Satın Al */
:root {
  --accent-color: #ec4899;
  --accent-hover: #db2777;
  --bg-color: #0b0f19;
  --card-bg: #111827;
  --text-color: #f3f4f6;
  --text-muted: #9ca3af;
  --border-color: #1f2937;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

/* ==========================================
   MIGRATED INLINE STYLES
   ========================================== */
:root {
      --accent-color: #ec4899;
      --accent-hover: #db2777;
      --bg-color: #0b0f19;
      --card-bg: #111827;
      --text-color: #f3f4f6;
      --text-muted: #9ca3af;
      --border-color: #1f2937;
    }

    body {
      background-color: var(--bg-color);
      color: var(--text-color);
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      margin: 0;
      padding: 0;
      line-height: 1.7;
    }

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

    /* Sticky Header */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
      background-color: rgba(11, 15, 25, 0.9);
      backdrop-filter: blur(12px);
      position: sticky;
      top: 0;
      z-index: 999;
      border-bottom: 1px solid var(--border-color);
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .logo-dot {
      width: 12px;
      height: 12px;
      background-color: var(--accent-color);
      border-radius: 50%;
      box-shadow: 0 0 10px var(--accent-color);
    }
    .logo-text {
      font-weight: 800;
      font-size: 1.3rem;
      letter-spacing: -0.5px;
      color: #fff;
    }
    nav {
      display: flex;
      gap: 24px;
    }
    nav a {
      color: var(--text-muted);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.9rem;
      transition: color 0.3s;
    }
    nav a:hover {
      color: var(--accent-color);
    }

    /* Hero Section */
    .hero-intro {
      padding: 100px 20px 60px 20px;
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }
    .hero-tag {
      background-color: rgba(236, 72, 153, 0.1);
      color: var(--accent-color);
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 700;
      border: 1px solid rgba(236, 72, 153, 0.2);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      display: inline-block;
    }
    .hero-intro h1 {
      font-size: 2.8rem;
      font-weight: 900;
      margin-top: 24px;
      margin-bottom: 16px;
      line-height: 1.25;
      color: #fff;
    }
    .hero-intro h1 span {
      color: var(--accent-color);
      text-shadow: 0 0 15px rgba(236, 72, 153, 0.3);
    }
    .hero-intro .subtitle {
      font-size: 1.15rem;
      color: var(--text-muted);
      max-width: 700px;
      margin: 0 auto 40px auto;
      line-height: 1.6;
    }
    .hero-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }
    .stat-card {
      background-color: var(--card-bg);
      padding: 24px;
      border-radius: 12px;
      border: 1px solid var(--border-color);
      transition: border-color 0.3s;
    }
    .stat-card:hover {
      border-color: rgba(236, 72, 153, 0.4);
    }
    .stat-number {
      font-size: 2rem;
      font-weight: 800;
      color: var(--accent-color);
    }
    .stat-label {
      font-size: 0.8rem;
      color: var(--text-muted);
      text-transform: uppercase;
      margin-top: 6px;
      letter-spacing: 0.5px;
    }

    /* Content Layout */
    .content-block {
      max-width: 900px;
      margin: 40px auto;
      padding: 0 20px;
    }
    
    /* Section Container */
    .section {
      background-color: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 40px;
      margin-bottom: 50px;
      position: relative;
    }
    .section-number {
      display: inline-block;
      background-color: rgba(236, 72, 153, 0.1);
      color: var(--accent-color);
      font-size: 0.8rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border: 1px solid rgba(236, 72, 153, 0.2);
    }
    .section h2 {
      font-size: 1.8rem;
      font-weight: 850;
      margin-top: 0;
      margin-bottom: 24px;
      color: #fff;
    }
    .section img {
      width: 100%;
      height: auto;
      max-height: 450px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 28px;
      border: 1px solid var(--border-color);
    }
    .section-content {
      font-size: 1rem;
      color: var(--text-color);
      margin-bottom: 30px;
    }
    .section-content p {
      margin-bottom: 20px;
      color: #d1d5db;
    }
    .section-content p:last-child {
      margin-bottom: 0;
    }
    .section-content a {
      color: var(--accent-color);
      text-decoration: underline;
      font-weight: 600;
      transition: color 0.3s;
    }
    .section-content a:hover {
      color: var(--accent-hover);
    }

    /* Winner Box Component */
    .winner-box {
      background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(17, 24, 39, 0.8) 100%);
      border: 2px solid var(--accent-color);
      border-radius: 12px;
      padding: 24px;
      margin: 24px 0;
      position: relative;
      box-shadow: 0 4px 25px rgba(236, 72, 153, 0.1);
    }
    .winner-box::before {
      content: "🏆 EDİTÖR SEÇİMİ";
      position: absolute;
      top: -12px;
      left: 20px;
      background-color: var(--accent-color);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 800;
      padding: 4px 14px;
      border-radius: 20px;
      letter-spacing: 0.5px;
    }

    /* Compare Table Component */
    .compare-table {
      width: 100%;
      border-collapse: collapse;
      margin: 24px 0;
      background-color: rgba(17, 24, 39, 0.5);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border-color);
    }
    .compare-table th {
      background-color: rgba(236, 72, 153, 0.08);
      color: #fff;
      font-weight: 600;
      padding: 16px;
      text-align: left;
      border-bottom: 2px solid var(--border-color);
    }
    .compare-table td {
      padding: 16px;
      border-bottom: 1px solid var(--border-color);
      color: var(--text-muted);
    }
    .compare-table tr:hover td {
      color: #fff;
      background-color: rgba(255, 255, 255, 0.02);
    }
    .compare-table tr:last-child td {
      border-bottom: none;
    }

    /* Feature List Component */
    .feature-list {
      list-style: none;
      padding: 0;
      margin: 24px 0;
    }
    .feature-list li {
      position: relative;
      padding-left: 28px;
      margin-bottom: 12px;
      color: var(--text-muted);
    }
    .feature-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--accent-color);
      font-weight: bold;
      font-size: 1.1rem;
    }

    /* Tip Box Component */
    .tip-box {
      background-color: rgba(17, 24, 39, 0.6);
      border-left: 4px solid var(--accent-color);
      padding: 16px;
      border-radius: 0 8px 8px 0;
      margin: 24px 0;
    }
    .tip-box-title {
      font-weight: 700;
      color: var(--accent-color);
      margin-bottom: 6px;
    }

    /* Rating Bar Component */
    .rating-bar-container {
      background-color: var(--border-color);
      border-radius: 8px;
      height: 8px;
      width: 100%;
      margin: 12px 0 24px 0;
    }
    .rating-bar-fill {
      background-color: var(--accent-color);
      height: 100%;
      border-radius: 8px;
      box-shadow: 0 0 10px var(--accent-color);
    }

    /* FAQ Item Component */
    .faq-item {
      background-color: rgba(17, 24, 39, 0.6);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 16px;
      transition: border-color 0.3s;
    }
    .faq-item:hover {
      border-color: var(--accent-color);
    }
    .faq-question {
      font-size: 1.05rem;
      font-weight: 600;
      color: #fff;
      margin: 0 0 10px 0;
    }
    .faq-answer {
      color: var(--text-muted);
      margin: 0;
      font-size: 0.95rem;
    }

    /* CTA Primary Button */
    .cta-primary {
      display: inline-block;
      background-color: var(--accent-color);
      color: #fff;
      font-weight: 600;
      padding: 12px 28px;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 14px rgba(236, 72, 153, 0.3);
      text-align: center;
    }
    .cta-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(236, 72, 153, 0.5);
      background-color: var(--accent-hover);
    }
    .section-cta {
      display: flex;
      justify-content: center;
      margin-top: 10px;
    }

    /* Footer Styles */
    footer {
      background-color: #060911;
      border-top: 1px solid var(--border-color);
      padding: 60px 40px 20px 40px;
      margin-top: 80px;
    }
    .footer-container {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-col h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: #fff;
      margin-top: 0;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 8px;
    }
    .footer-col h3::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background-color: var(--accent-color);
    }
    .footer-col p {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.6;
    }
    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-col ul li {
      margin-bottom: 12px;
    }
    .footer-col ul li a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s;
    }
    .footer-col ul li a:hover {
      color: var(--accent-color);
    }
    .footer-bottom {
      border-top: 1px solid var(--border-color);
      padding-top: 20px;
      text-align: center;
      color: var(--text-muted);
      font-size: 0.85rem;
    }
    .footer-bottom a {
      color: var(--accent-color);
      text-decoration: none;
    }

