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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            background: #000;
            color: #fff;
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 56px;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            z-index: 1000;
            padding: 0 24px;
        }

        .navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

/* Logo (Brand) */
.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* sola sabitle */
  height: 100%;                /* navbar yüksekliği kadar */
  text-decoration: none;
}

.brand-img {
  height: 32px;   /* logonun sabit yüksekliği */
  width: auto;    /* orantıyı koru */
  object-fit: contain;
  display: block;
}

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-link:hover, .nav-link.active {
            color: #fff;
        }

        .download-btn {
            padding: 8px 16px;
            background: #fff;
            color: #000;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s;
        }

        /* Main Content */
        .main-content {
            padding-top: 100px;
            min-height: 100vh;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        .blog-header {
            text-align: center;
            padding: 60px 0;
        }

        .blog-title {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 16px;
            background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.8));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .blog-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Blog Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 32px;
            margin-bottom: 80px;
        }

        .blog-post {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .blog-post:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.05);
        }

        .blog-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            opacity: 0.5;
        }

        .blog-content {
            padding: 24px;
        }

        .blog-meta {
            display: flex;
            gap: 16px;
            margin-bottom: 12px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
        }

        .blog-category {
            color: #667eea;
            text-transform: uppercase;
            font-weight: 600;
        }

        .blog-post-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .blog-excerpt {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            font-size: 14px;
        }

        .blog-author {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .author-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            font-size: 14px;
            font-weight: 500;
        }

        .read-time {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Featured Post */
        .featured-post {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            padding: 48px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            border-radius: 16px;
            margin-bottom: 48px;
        }

        .featured-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .featured-badge {
            display: inline-block;
            padding: 4px 12px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            width: fit-content;
            margin-bottom: 16px;
        }

        .featured-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .featured-excerpt {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .featured-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 72px;
            opacity: 0.3;
        }

        .read-more {
            color: #667eea;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: gap 0.2s;
        }

        .read-more:hover {
            gap: 8px;
        }

        /* === Account section: sola hizala + küçült (mobil) === */
@media (max-width: 768px) {

  /* Olası sınıf isimlerini ve düşe kalka son elemanı hedefliyoruz */
  .mobile-menu .account-card,
  .mobile-menu .user-card,
  .mobile-menu .account,
  .mobile-menu .user,
  .menu-drawer .account-card,
  .menu-drawer .user-card,
  .menu-drawer .account,
  .menu-drawer .user,
  .mobile-menu > div:last-child {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;   /* Sola hizala */
    text-align: left !important;
    gap: 4px !important;                  /* Satırlar arası boşluk */
    padding: 8px 12px !important;         /* İç boşluğu küçült */
    margin: 8px 0 0 0 !important;
    width: 100% !important;
    font-size: 13px !important;           /* Hepsini küçült */
    line-height: 1.25 !important;
  }

  /* İç elemanların kendi marjin/paddinglerini sıfırla */
  .mobile-menu .account-card > * ,
  .mobile-menu .user-card > * ,
  .menu-drawer .account-card > * ,
  .menu-drawer .user-card > * {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* E-posta daha küçük/soluk olsun */
  .mobile-menu .account-card .email,
  .menu-drawer .account-card .email {
    font-size: 12px !important;
    opacity: .7 !important;
  }

  /* Linkler */
  .mobile-menu .account-card a,
  .menu-drawer .account-card a {
    color: rgba(255,255,255,.75) !important;
    text-decoration: none !important;
  }
  .mobile-menu .account-card a:hover,
  .menu-drawer .account-card a:hover {
    color: #fff !important;
  }
}


        /* === Mobile Menu Spacing Tweaks === */
@media (max-width: 768px) {
  /* Menünün kapladığı panel */
  .mobile-menu {
    position: fixed;
    top: 56px;              /* navbar yüksekliği ile aynı */
    left: 0; right: 0; bottom: 0;
    padding: 12px 20px 96px;/* üstü/yanları dar, altta kart için boşluk */
    background: #000;
    overflow-y: auto;       /* taşma olursa kaydır */
  }

  /* Liste ve aralıklar */
  .mobile-menu .menu-list,        /* <ul class="menu-list"> ise */
  .mobile-menu .nav-links {       /* <div class="nav-links"> ise */
    display: flex;
    flex-direction: column;
    gap: 10px;                    /* MADDELER ARASI ARALIĞI BURADAN KIS: 6–12px */
    margin: 0;
    padding: 0;
  }

  /* Tek tek linklerin iç boşluklarını küçült */
  .mobile-menu .nav-link,
  .mobile-menu a {
    display: block;
    margin: 0;                    /* dış boşlukları sıfırla */
    padding: 8px 12px;            /* iç boşluğu azalt */
    font-size: 18px;
    line-height: 1.15;            /* satır yüksekliğini sıkı tut */
    border-radius: 8px;
  }

  /* (li kullanıyorsan) li default boşluklarını kaldır */
  .mobile-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  /* Alt kullanıcı/kart bölümü menüye binmesin */
  .mobile-menu .account-card {
    margin-top: 14px;             /* listedan ayrılma payı */
    position: sticky;             /* kartı ekranda alta “yapıştır” */
    bottom: 12px;
  }
}

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .blog-title {
                font-size: 36px;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

            .featured-post {
                grid-template-columns: 1fr;
                padding: 24px;
            }

            .featured-image {
                height: 200px;
            }
        }


        /* Testimonials Section */
.testimonials {
  margin: 100px auto;
  max-width: 1000px;
  padding: 0 20px;
  text-align: center;
}

.testimonials-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: rgba(30, 30, 40, 0.9);
  border-radius: 12px;
  padding: 20px;
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.6;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
}

.featured-post {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background: rgba(20, 20, 40, 0.6);
  border-radius: 16px;
  overflow: hidden;
  padding: 20px;
  min-height: 400px; /* ortalama için yüksekliği sabitle */
}

.featured-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* dikey ortalama */
  align-items: flex-start; /* yatayda sola hizalı (istersen center yap) */
  padding: 40px;
}

.featured-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* dikey ortalama */
  align-items: center;     /* yatay ortalama */
  text-align: center;      /* metin de ortalansın */
  padding: 40px;
}
