body.body-bg {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    background: linear-gradient(to bottom, #000000 0%, #1a1a1a 33%, #2e2e2e 66%, #3f3f3f 100%);
    color: white;
  }

  
  /* Header */
  .header {
    background-color: rgba(20, 20, 20, 0.85);
    padding: 24px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    backdrop-filter: blur(6px); 
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  .header-container {
    max-width: 1300px;
    max-height: 50px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
  }
  .header-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
  }
  
  nav a.nav-link {
    margin-left: 1rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
  }
  
  .nav .nav-link:hover {
    color: #60a5fa; /* açık mavi hover */
  }
  
  /* Hero Section */
  .hero-section {
    background-color: transparent;
    padding: 0 16px 96px;
  }
  .hero-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 48px;
  }
  @media(min-width: 1024px){
    .hero-container { flex-direction: row; }
  }
  .hero-text {
    width: 60%;
  }
  .hero-title {
    font-size: 2.0rem;
    font-weight: 800;
    margin-bottom: 24px;
  }
  .hero-description {
    color: #d1d5db;
    font-size: 1.125rem;
    margin-bottom: 32px;
  }
  .hero-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 16px;
    transition: all 0.3s;
  }
  
  .btn-discord {
    background-color: #2563eb;
    color: white;
  }
  
  .btn-discord:hover {
    background-color: #1d4ed8;
  }
  .btn-white {
    background-color: white;
    color: #1f1f1f;
  }
  .btn-white:hover { background-color: #f3f4f6; }
  
  .hero-image img {
    width: 100%;
    max-width: 500px;
  }
  
  /* Referans Bölümü */
  .referans-section {
    background-color: transparent;
    padding: 64px 16px;
    text-align: center;
  }
  .section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 48px;
    text-align: center; 
    display: block;     
    width: 100%;        
  }
  .referans-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
    max-width: 1200px;
    margin: 0 auto;
  }
  @media(min-width: 640px){ .referans-grid { grid-template-columns: repeat(2, 1fr); } }
  @media(min-width: 768px){ .referans-grid { grid-template-columns: repeat(3, 1fr); } }
  
  .server-widget {
    background-color: rgba(24, 24, 24, 0.85); 
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s;
  }
  .server-widget:hover { transform: scale(1.05); }
  .server-widget img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 8px;
  }
  
  /* Team Section */
  .team-section {
    background-color: transparent;
    padding: 64px 16px;
  }
  .team-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
    justify-items: center; 
  }
  
  @media(min-width: 768px){ 
    .team-grid { 
      grid-template-columns: repeat(2, 1fr);
      justify-items: center; 
    }
  }
  
  .team-member {
    background-color: rgba(32, 32, 32, 0.85); 
    padding: 24px;
    max-width: 600px;
    width: 100%; 
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center; 
  }
  
  .team-member:hover { transform: scale(1.05); }
  .team-member img {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }
  .team-member .role {
    color: #60a5fa;
    font-weight: 500;
    margin-top: 4px;
  }
  .social-links a {
    color: white;
    margin-right: 12px;
    font-size: 1.25rem;
  }
  
  /* Destek Section */
  .destek-section {
    padding: 64px 16px;
    background-color: #1f1f1f;
    position: relative;
    color: white;
  }
  .destek-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  @media(min-width: 768px){ .destek-container { flex-direction: row; align-items: center; justify-content: space-between; } }
  .destek-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 16px;
  }
  .destek-text p {
    font-size: 1.125rem;
    color: #d1d5db;
  }
  .destek-button a {
    display: inline-flex;
    align-items: center;
    width: 150px;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    background-color: #2563eb;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
  }
  .destek-button a:hover { background-color: #1d4ed8; }
  
  /* Footer */
  .footer {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
    padding: 24px 0;
  }
  