<style>
    /* DÜZELTME: Video için aspect ratio eklendi */
    .video-container {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%; /* 16:9 aspect ratio */
      height: 0;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: var(--shadow);
    }
    
    .video-container video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: block;
    }
    
    /* DÜZELTME: Terminoloji bölümü için düzeltmeler */
    .term-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    
    /* DÜZELTME: Nav için sabit yükseklik */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 2px solid var(--primary-red);
      z-index: 999;
      padding: 10px 0;
      transition: all 0.3s ease;
      height: 60px; /* Sabit yükseklik */
    }
    
    /* Diğer stiller aynı kalacak şekilde... */
    
    :root {
      --primary-red: #ff3333;
      --dark-red: #cc1a1a;
      --gold: #ffd700;
      --dark-gold: #b8860b;
      --bg-dark: #0a0a0a;
      --bg-card: #1a1a1a;
      --text-light: #ffffff;
      --text-gray: #cccccc;
      --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
      --glow: 0 0 20px rgba(255, 51, 51, 0.3);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Orbitron', monospace;
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
      color: var(--text-light);
      line-height: 1.6;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
      pointer-events: none;
      z-index: -1;
    }

    .skip-link {
      position: absolute;
      top: -40px;
      left: 6px;
      background: var(--primary-red);
      color: white;
      padding: 8px;
      text-decoration: none;
      border-radius: 4px;
      z-index: 1000;
    }

    .skip-link:focus {
      top: 6px;
    }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 2px solid var(--primary-red);
      z-index: 999;
      padding: 10px 0;
      transition: all 0.3s ease;
    }

    nav.scrolled {
      background: rgba(10, 10, 10, 0.98);
      box-shadow: var(--shadow);
    }

    nav ul {
      display: flex;
      justify-content: center;
      list-style: none;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
    }

    nav li {
      margin: 0 15px;
    }

    nav a {
      color: var(--text-light);
      text-decoration: none;
      padding: 10px 20px;
      position: relative;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      border-radius: 25px;
    }

    nav a::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 100%;
      background: linear-gradient(45deg, var(--primary-red), var(--gold));
      border-radius: 25px;
      transition: width 0.3s ease;
      z-index: -1;
    }

    nav a:hover::before,
    nav a.active::before {
      width: 100%;
    }

    nav a:hover {
      color: var(--bg-dark);
      transform: translateY(-2px);
      box-shadow: var(--glow);
    }

    /* Main Container */
    .wrapper {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
      padding-top: 80px;
    }

    /* Header */
    header {
      text-align: center;
      padding: 60px 0 80px;
      position: relative;
    }

    header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(255, 51, 51, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      z-index: -1;
    }

    #logo {
      margin-bottom: 30px;
    }

    #logo img {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      border: 4px solid var(--gold);
      box-shadow: var(--shadow), var(--glow);
      transition: transform 0.3s ease;
    }

    #logo img:hover {
      transform: scale(1.05) rotate(5deg);
    }

    h1 {
      font-family: 'Cinzel', serif;
      font-size: 4rem;
      font-weight: 700;
      background: linear-gradient(45deg, var(--primary-red), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    #header-subtitle {
      font-size: 1.2rem;
      color: var(--text-gray);
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 30px;
    }

    .language-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }

    .language-buttons button {
      background: linear-gradient(45deg, var(--bg-card), var(--primary-red));
      color: var(--text-light);
      border: 2px solid var(--gold);
      padding: 12px 24px;
      border-radius: 30px;
      cursor: pointer;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      font-family: 'Orbitron', monospace;
    }

    .language-buttons button:hover {
      background: linear-gradient(45deg, var(--primary-red), var(--gold));
      transform: translateY(-2px);
      box-shadow: var(--glow);
    }

    /* Sections */
    section {
      background: rgba(26, 26, 26, 0.8);
      margin: 40px 0;
      padding: 40px;
      border-radius: 20px;
      border: 2px solid var(--primary-red);
      box-shadow: var(--shadow);
      backdrop-filter: blur(10px);
      position: relative;
      overflow: hidden;
    }

    section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(255, 51, 51, 0.02), transparent);
      animation: shimmer 4s ease-in-out infinite;
      z-index: -1;
    }

    @keyframes shimmer {
      0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(0deg); }
      50% { transform: translateX(0%) translateY(0%) rotate(180deg); }
    }

    section h2 {
      font-family: 'Cinzel', serif;
      font-size: 2.5rem;
      color: var(--gold);
      margin-bottom: 20px;
      text-align: center;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    /* Stats Section */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .stat-card {
      background: linear-gradient(135deg, var(--bg-card), rgba(255, 51, 51, 0.1));
      padding: 30px;
      border-radius: 15px;
      border: 1px solid var(--primary-red);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .stat-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--glow);
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 900;
      color: var(--gold);
      display: block;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .stat-label {
      color: var(--text-gray);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 10px;
    }

    /* Member Profiles */
    .member-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .member-card {
      background: linear-gradient(135deg, var(--bg-card), rgba(255, 215, 0, 0.05));
      padding: 25px;
      border-radius: 15px;
      border: 1px solid var(--gold);
      text-align: center;
      transition: all 0.3s ease;
    }

    .member-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
    }

    .member-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      border: 3px solid var(--gold);
      margin: 0 auto 15px;
      background: linear-gradient(45deg, var(--primary-red), var(--gold));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      font-weight: bold;
    }

    .member-name {
      font-size: 1.3rem;
      color: var(--gold);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .member-role {
      color: var(--primary-red);
      text-transform: uppercase;
      font-size: 0.9rem;
      letter-spacing: 1px;
    }

    .member-might {
      color: var(--text-gray);
      margin-top: 10px;
    }

    /* Terminology */
    .term-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .term-card {
      background: rgba(26, 26, 26, 0.6);
      padding: 20px;
      border-radius: 10px;
      border-left: 4px solid var(--primary-red);
    }

    .term-title {
      color: var(--gold);
      font-weight: bold;
      font-size: 1.1rem;
      margin-bottom: 8px;
    }

    .term-desc {
      color: var(--text-gray);
      line-height: 1.5;
    }

    /* News & Updates */
    .news-item {
      background: rgba(26, 26, 26, 0.6);
      padding: 25px;
      border-radius: 10px;
      border-left: 4px solid var(--gold);
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }

    .news-item:hover {
      transform: translateX(10px);
      box-shadow: -5px 0 20px rgba(255, 215, 0, 0.2);
    }

    .news-date {
      color: var(--primary-red);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .news-title {
      color: var(--gold);
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 10px;
    }

    /* Video Section */
    /* DÜZELTME: Video için aspect ratio eklendi */
    .video-container {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%; /* 16:9 aspect ratio */
      height: 0;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: var(--shadow);
    }

    .video-container video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: block;
    }

    /* Contact Form */
    .contact-form {
      max-width: 600px;
      margin: 30px auto;
    }

    .form-group {
      margin-bottom: 25px;
    }

    .contact-form label {
      display: block;
      color: var(--gold);
      margin-bottom: 8px;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 15px;
      border: 2px solid var(--primary-red);
      border-radius: 10px;
      background: rgba(26, 26, 26, 0.8);
      color: var(--text-light);
      font-family: 'Orbitron', monospace;
      transition: all 0.3s ease;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    }

    .contact-form button {
      background: linear-gradient(45deg, var(--primary-red), var(--gold));
      color: var(--text-light);
      border: none;
      padding: 15px 40px;
      border-radius: 30px;
      font-family: 'Orbitron', monospace;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: block;
      margin: 0 auto;
    }

    .contact-form button:hover {
      transform: translateY(-2px);
      box-shadow: var(--glow);
    }

    .honeypot {
      position: absolute !important;
      left: -9999px !important;
      width: 1px !important;
      height: 1px !important;
      opacity: 0 !important;
    }

    /* Footer */
    footer {
      text-align: center;
      padding: 60px 0 40px;
      border-top: 2px solid var(--primary-red);
      margin-top: 60px;
      background: rgba(10, 10, 10, 0.8);
    }

    .social-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .social-buttons a {
      display: inline-block;
      padding: 15px;
      background: linear-gradient(45deg, var(--bg-card), var(--primary-red));
      border-radius: 50%;
      border: 2px solid var(--gold);
      transition: all 0.3s ease;
    }

    .social-buttons a:hover {
      transform: translateY(-5px) scale(1.1);
      box-shadow: var(--glow);
    }

    .social-buttons img {
      width: 32px;
      height: 32px;
      filter: brightness(1.2);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .wrapper {
        padding: 0 15px;
        padding-top: 70px;
      }

      nav ul {
        flex-direction: row;
        justify-content: space-around;
        padding: 0 10px;
      }

      nav li {
        margin: 0 5px;
      }

      nav a {
        padding: 8px 12px;
        font-size: 0.8rem;
      }

      h1 {
        font-size: 2.5rem;
      }

      section {
        padding: 25px 20px;
        margin: 20px 0;
      }

      section h2 {
        font-size: 2rem;
      }

      .stats-grid,
      .member-grid,
      .term-grid {
        grid-template-columns: 1fr;
      }

      #header-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
      }

      .language-buttons {
        flex-direction: column;
        align-items: center;
      }

      .language-buttons button {
        width: 120px;
      }
      
      /* DÜZELTME: Mobilde nav yüksekliği */
      nav {
        height: auto;
        padding: 5px 0;
      }
    }

    /* Light Theme */
    body.light {
      --bg-dark: #f5f5f5;
      --bg-card: #ffffff;
      --text-light: #333333;
      --text-gray: #666666;
      background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #f5f5f5 100%);
    }

    body.light::before {
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ddd" stroke-width="0.5" opacity="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    }

    body.light nav {
      background: rgba(255, 255, 255, 0.95);
      border-bottom-color: var(--primary-red);
    }

    body.light section {
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in {
      animation: fadeInUp 0.6s ease-out forwards;
    }

    /* Loading Animation */
    .loading {
      display: inline-block;
      width: 20px;
      height: 20px;
      border: 3px solid rgba(255, 215, 0, 0.3);
      border-radius: 50%;
      border-top-color: var(--gold);
      animation: spin 1s ease-in-out infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* Success/Error Messages */
    .message {
      padding: 15px;
      border-radius: 10px;
      margin: 20px 0;
      text-align: center;
      font-weight: bold;
    }

    .message.success {
      background: rgba(0, 255, 0, 0.1);
      border: 2px solid #00ff00;
      color: #00ff00;
    }

    .message.error {
      background: rgba(255, 0, 0, 0.1);
      border: 2px solid #ff0000;
      color: #ff0000;
    }
  </style>
