:root {
        --bg: #0b0b14;
        --bg2: #12122a;
        --card: #171a33;
        --card2: #0e1030;
        --neon: #b355ff;
        --blue: #00c8ff;
        --gold: #ffd60b;
        --pink: #ff4bed;
        --txt: #e9e9f4;
        --mut: #bfc2d6;
        --max: 1200px;
        --rad: 12px;
        --sh: 0 4px 12px rgba(0,0,0,0.3);
      }
      
      /* --- NEON HOVER BANNER (800x400 SABİT) --- */
      .neon-banner-wrapper {
        margin: 2rem auto;
        width: 100%;
        max-width: 800px; 
        aspect-ratio: 2 / 1; 
        background-color: #1a1a1a;
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        border: 3px solid var(--neon);
        box-shadow: 0 0 15px rgba(179, 85, 255, 0.4); 
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        cursor: pointer;
      }
      
      .neon-banner-wrapper:hover {
        box-shadow: 0 0 30px var(--neon), 0 0 60px var(--neon);
        border-color: #fff;
        transform: translateY(-5px);
      }
      
      .neon-banner-wrapper img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.6s ease;
      }

      .neon-banner-wrapper:hover img {
        transform: scale(1.05);
      }
      
      /* --- İÇERİK STİLLERİ --- */
      .content-box {
        background: var(--card2);
        padding: 30px;
        border-radius: var(--rad);
        margin-bottom: 35px;
        border-left: 4px solid var(--gold);
        box-shadow: var(--sh);
      }
      .content-box h2 {
        color: var(--neon);
        margin-top: 0;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(179, 85, 255, 0.3);
        font-size: 1.8rem;
      }
      .content-box h3 {
        color: var(--pink);
        font-size: 1.4rem;
        margin-top: 20px;
        margin-bottom: 10px;
      }
      .content-box p {
          font-size: 1.1rem;
          line-height: 1.8;
          color: var(--mut);
          margin-bottom: 20px;
      }
      .gold-link {
          color: var(--gold);
          text-decoration: none;
          font-weight: bold;
          border-bottom: 1px dashed var(--gold);
          transition: color 0.3s;
      }
      .gold-link:hover {
          color: #fff;
          border-bottom-color: #fff;
      }
      
      /* --- KUTULU TOC --- */
      .toc-box {
        background: #12121a;
        padding: 25px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        margin-bottom: 40px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      }
      .toc-title {
        text-align: center;
        color: #fff;
        font-weight: 800;
        margin-bottom: 20px;
        font-size: 1.3rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 214, 11, 0.1), transparent);
        padding: 10px;
        border-radius: 8px;
      }
      .toc-title span { color: var(--gold); }

      .toc-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
      }

      .toc-link {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background: rgba(255, 255, 255, 0.03);
        padding: 20px 15px;
        border-radius: 12px;
        text-decoration: none;
        color: #e0e0e0;
        font-weight: 500;
        font-size: 0.95rem;
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        height: 100%;
      }

      .toc-link:hover {
        background: rgba(179, 85, 255, 0.15);
        border-color: var(--neon);
        color: #fff;
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(179, 85, 255, 0.2);
      }
      .toc-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }

      /* --- GÖRSEL HİZALAMA --- */
      .img-float-right {
        float: right;
        margin: 5px 0 25px 30px;
        max-width: 350px;
        border-radius: var(--rad);
        box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        border: 1px solid rgba(255,255,255,0.1);
      }
      .clearfix::after { content: ""; clear: both; display: table; }

      /* --- MODERN FAQ --- */
      .faq details {
        background: var(--card);
        border-radius: var(--rad);
        margin-bottom: 15px;
        box-shadow: var(--sh);
        border: 1px solid rgba(0, 200, 255, 0.2);
        transition: all 0.3s ease;
      }
      .faq details[open] {
        background: var(--card2);
        border-color: var(--neon);
      }
      .faq summary {
        font-weight: 600;
        cursor: pointer;
        color: var(--gold);
        outline: none;
        padding: 18px 20px;
        position: relative;
        list-style: none;
        font-size: 1.05rem;
      }
      .faq summary::-webkit-details-marker { display: none; }
      .faq summary::after {
          content: '+';
          font-size: 1.5rem;
          position: absolute;
          right: 20px;
          top: 50%;
          transform: translateY(-50%);
          color: var(--neon);
          font-weight: 300;
          transition: transform 0.3s ease;
      }
      .faq details[open] summary::after {
          content: '\2212';
          transform: translateY(-50%) rotate(180deg);
          color: var(--pink);
      }
      .faq details p {
          padding: 0 20px 20px 20px;
          margin: 0;
          color: var(--txt);
          line-height: 1.6;
          border-top: 1px solid rgba(255,255,255,0.05);
          padding-top: 15px;
      }

      /* --- TABLO --- */
      .table {
        width: 100%;
        margin-bottom: 1rem;
        color: var(--txt);
        border-collapse: separate;
        border-spacing: 0;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--rad);
        overflow: hidden;
      }
      .table th, .table td {
        padding: 1.2rem;
        vertical-align: middle;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        text-align: left;
      }
      .table thead th {
        border-bottom: 2px solid var(--neon);
        color: var(--neon);
        background: rgba(179, 85, 255, 0.05);
        font-weight: bold;
        text-transform: uppercase;
        font-size: 0.9rem;
      }
      .table tbody tr:hover { background-color: rgba(255, 214, 11, 0.05); }
      .table tbody td:first-child { font-weight: bold; color: var(--gold); }
