
    /* Bu dosyanın --cyan değeri admin.html'den kasıtlı farklıdır */
    :root {
      --cyan: #148fad;
      --cyan-dim: #007495;
      --green: #39ff14;
      --bg: #080c10;
      --bg2: #0d1117;
      --bg3: #111820;
      --border: rgba(0,229,255,0.15);
      --text: #e2e8f0;
      --muted: #64748b;
    }
    

    /* ══════════════════════════════════════
       LIGHT MODE
    ══════════════════════════════════════ */
    [data-theme="light"] {
      --green: #1a9428;
      --bg: #f9f5ee;
      --bg2: #f2eadd;
      --bg3: #faf4ea;
      --border: rgba(0, 100, 140, 0.18);
      --text: #1a2433;
      --muted: #607080;
    }

    * { transition: background-color 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s; }
    .skeleton-card, .skeleton-line { transition: none; }

    /* NAV */
    [data-theme="light"] nav {
      background: rgba(249, 245, 238, 0.88);
    }
    [data-theme="light"] .mobile-menu {
      background: rgba(249, 245, 238, 0.98);
    }
    [data-theme="light"] .mobile-menu a {
      border-bottom-color: rgba(0,0,0,.07);
    }

    /* HEADINGS & hardcoded white text */
    [data-theme="light"] .logo,
    [data-theme="light"] .hero h1,
    [data-theme="light"] .section-title,
    [data-theme="light"] .project-name,
    [data-theme="light"] .why-title,
    [data-theme="light"] .member-name,
    [data-theme="light"] .modal-name,
    [data-theme="light"] .stat-num,
    [data-theme="light"] .metric-val,
    [data-theme="light"] .detail-title,
    [data-theme="light"] .detail-team-name,
    [data-theme="light"] .detail-cta-title,
    [data-theme="light"] .detail-role-title { color: var(--text); }

    /* BODY NOISE */
    [data-theme="light"] body::before { opacity: 0.12; }

    /* MESH BACKGROUND */
    [data-theme="light"] .mesh-bg {
      background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 122, 153, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 85% 20%, rgba(26, 148, 40, 0.06) 0%, transparent 55%),
        var(--bg);
    }

    /* GLASS CARD */
    [data-theme="light"] .glass-card {
      background: rgba(255, 252, 247, 0.75);
      border-color: rgba(0, 100, 140, 0.2);
      box-shadow: 0 20px 40px rgba(0,0,0,.12);
    }
    [data-theme="light"] .glass-card code { color: #2d3748; }
    [data-theme="light"] .card-header { border-bottom-color: rgba(0,0,0,.1); }
    [data-theme="light"] .comment { color: #4a7c59; }
    [data-theme="light"] .keyword { color: #9333ea; }

    /* HERO STATS border */
    [data-theme="light"] .hero-stats { border-top-color: rgba(0,0,0,.1); }

    /* AVATAR */
    [data-theme="light"] .avatar-placeholder {
      background: linear-gradient(135deg, #d0e4ef, #b8d4e4);
    }

    /* MODAL/DETAIL body text */
    [data-theme="light"] .modal-bio { color: #4a5568; }
    [data-theme="light"] .detail-block-text { color: #374151; }
    [data-theme="light"] .detail-goals li { color: #374151; }

    /* FORM */
    [data-theme="light"] .form-input,
    [data-theme="light"] .form-textarea {
      background: rgba(0,0,0,.04);
      border-color: rgba(0,0,0,.12);
    }
    [data-theme="light"] .checkbox-item { border-color: rgba(0,0,0,.1); }
    [data-theme="light"] .custom-checkbox { border-color: rgba(0,0,0,.2); }

    /* PROJECT CARDS */
    [data-theme="light"] .project-card-cta { border-top-color: rgba(0,0,0,.08); }
    [data-theme="light"] .project-tag {
      background: rgba(0,0,0,.04);
      border-color: rgba(0,0,0,.08);
    }
    [data-theme="light"] .project-roles {
      background: rgba(0,0,0,.03);
      border-color: rgba(0,0,0,.06);
    }

    /* TEAM */
    [data-theme="light"] .detail-team-member {
      background: rgba(0,0,0,.03);
      border-color: rgba(0,0,0,.06);
    }

    /* GLow orbs daha hafif */
    [data-theme="light"] .glow-orb { opacity: 0.12; }

    /* THEME TOGGLE BUTTON */
    .theme-toggle {
      width: 36px; height: 36px; border-radius: 8px;
      border: 1px solid var(--border); background: none;
      color: var(--muted); cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: color .2s, border-color .2s, background .2s;
      flex-shrink: 0;
    }
    .theme-toggle:hover {
      color: var(--cyan);
      border-color: rgba(8, 191, 211, 0.4);
      background: rgba(0,229,255,.07);
    }
    [data-theme="light"] .theme-toggle:hover {
      border-color: rgba(0, 122, 153, 0.4);
      background: rgba(0, 122, 153, 0.07);
    }

    /* dark modda güneş, light modda ay göster */
    .icon-moon { display: none; }
    .icon-sun  { display: block; }
    [data-theme="light"] .icon-moon { display: block; }
    [data-theme="light"] .icon-sun  { display: none; }

    html { scroll-behavior: smooth; }

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

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      overflow-x: hidden;
    }

    h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; }

    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      background-size: 200px;
      opacity: 0.4;
    }

    .mesh-bg {
      background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,229,255,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 85% 20%, rgba(57,255,20,0.06) 0%, transparent 55%),
        var(--bg);
    }

    .glow-line {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--cyan), transparent);
      opacity: 0.4;
    }

    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      backdrop-filter: blur(18px) saturate(1.4);
      background: rgba(8,12,16,0.75);
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 1.5rem; height: 64px;
    }

    .logo {
      font-family: 'Hanken Grotesk', sans-serif; font-weight: 800;
      font-size: 1.35rem; letter-spacing: -0.03em;
      color: #fff;
    }
    .logo span { color: var(--cyan); }

    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      color: var(--muted); font-size: .875rem; font-weight: 500;
      text-decoration: none; transition: color .2s;
      letter-spacing: 0.04em; text-transform: uppercase;
    }
    .nav-links a:hover { color: var(--cyan); }

    .nav-cta {
      padding: .45rem 1.2rem; border-radius: 6px;
      background: var(--cyan); color: #faf4ea;
      font-family: 'Hanken Grotesk', sans-serif; font-weight: 700;
      font-size: .8rem; letter-spacing: .05em; text-transform: uppercase;
      text-decoration: none; transition: box-shadow .2s, transform .15s;
    }
    .nav-cta:hover { box-shadow: 0 0 20px rgba(0,229,255,.5); transform: translateY(-1px); }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--cyan); border-radius: 2px; transition: .3s; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border-radius: 6px; }

    .mobile-menu {
      display: flex; flex-direction: column; gap: 0;
      background: rgba(8,12,16,0.97); border-bottom: 1px solid var(--border);
      max-height: 0; overflow: hidden;
      transition: max-height .32s cubic-bezier(.4,0,.2,1);
    }
    .mobile-menu a {
      padding: .85rem 1.5rem; color: var(--text); text-decoration: none;
      font-size: .95rem; border-bottom: 1px solid rgba(255,255,255,.05);
      transition: background .2s, color .2s;
      min-height: 44px; display: flex; align-items: center;
    }
    .mobile-menu a:hover { color: var(--cyan); background: rgba(0,229,255,.04); }
    .mobile-menu.open { max-height: 400px; }

    .hero {
      min-height: 100vh; display: flex; align-items: center;
      padding: 7rem 1.5rem 4rem;
      position: relative;
    }

    .hero-inner {
      max-width: 1200px; margin: 0 auto; width: 100%;
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: .5rem;
      padding: .3rem .8rem; border-radius: 999px;
      border: 1px solid rgba(0,229,255,.3);
      background: rgba(0,229,255,.06);
      font-size: .75rem; font-weight: 600; letter-spacing: .08em;
      text-transform: uppercase; color: var(--cyan); margin-bottom: 1.5rem;
    }

    .hero-badge .dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 6px var(--green);
      animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {
      0%,100% { opacity: 1; }
      50% { opacity: .3; }
    }

    .hero h1 {
      font-size: clamp(2.6rem, 5vw, 4.2rem);
      font-weight: 800; line-height: 1.05; letter-spacing: -.03em;
      color: #fff; margin-bottom: 1.5rem;
    }

     .hero-project-link {
      color: var(--cyan);
      text-decoration: none;
      /* Yumuşak bir geçiş için süreyi biraz artırdık */
      transition: text-shadow 0.3s ease-in-out; 
    }

    .hero-project-link:hover {
      /* Harflerin etrafındaki yoğunluğu azaltılmış, daha dengeli gölge */
      text-shadow: 
      0 0 4px rgba(0, 116, 149, 0.8), 
      0 0 8px rgba(0, 116, 149, 0.4);
    }

    .hero p {
      font-size: 1.1rem; color: var(--muted); line-height: 1.75;
      margin-bottom: 2.5rem; max-width: 480px;
    }

    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

    .btn-primary {
      padding: .8rem 2rem; border-radius: 8px;
      background: var(--cyan); color: #faf4ea;
      font-family: 'Syne', sans-serif; font-weight: 700;
      font-size: .9rem; text-decoration: none;
      transition: box-shadow .25s, transform .15s;
      letter-spacing: .02em;
    }
    .btn-primary:hover { box-shadow: 0 0 30px rgba(0,229,255,.45); transform: translateY(-2px); }

    .btn-ghost {
      padding: .8rem 2rem; border-radius: 8px;
      border: 1px solid var(--border); color: var(--text);
      font-family: 'Syne', sans-serif; font-weight: 600;
      font-size: .9rem; text-decoration: none;
      transition: border-color .2s, color .2s, background .2s;
    }
    .btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,229,255,.05); }

    .hero-stats {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
      margin-top: 3rem; padding-top: 2rem;
      border-top: 1px solid var(--border);
    }

    .stat { display: flex; flex-direction: column; gap: .25rem; }
    .stat-num {
      font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800;
      color: #fff; letter-spacing: -.03em;
    }
    .stat-label { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

.hero-right-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 650px;
}

.glass-card {
  position: relative;
  z-index: 2;
  background: rgba(20, 25, 30, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  min-width: 500px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.card-header {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.glass-card pre {
  margin: 0;
}

.glass-card code {
  font-family: 'Fira Code', 'Courier New', Courier, monospace;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e6e6e6;
}

.comment { color: #6a9955; font-style: italic; }
.keyword { color: #c586c0; }
.function { color: #00e5ff; }

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  opacity: 0.4;
}

.orb-1 {
  width: 180px;
  height: 180px;
  background: #00e5ff;
  top: 10%;
  left: 10%;
  animation: pulse 4s alternate infinite;
}

.orb-2 {
  width: 140px;
  height: 140px;
  background: #0055ff;
  bottom: 10%;
  right: 15%;
  animation: pulse 5s alternate infinite reverse;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.3; }
  100% { transform: scale(1.1); opacity: 0.6; }
}

   


    
  
    

    .section { padding: 6rem 1.5rem; position: relative; }
    .section-inner { max-width: 1200px; margin: 0 auto; }

    .section-label {
      display: inline-block; font-size: .72rem; font-weight: 700;
      letter-spacing: .12em; text-transform: uppercase;
      color: var(--cyan); margin-bottom: .75rem;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
      letter-spacing: -.03em; color: #fff; margin-bottom: 1rem; line-height: 1.1;
    }

    .section-sub {
      font-size: 1.05rem; color: var(--muted); line-height: 1.75;
      max-width: 540px;
    }

    /* ══════════════════════════════════════
       PROJECTS SECTION
    ══════════════════════════════════════ */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 1.25rem;
      margin-top: 3.5rem;
      grid-auto-flow: dense;
    }

    #projects-grid .project-card[style*="display: none"] {
      display: none !important;
    }

    /* Featured large card */
    .project-card {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 2rem;
      position: relative;
      overflow: hidden;
      transition: transform .3s, box-shadow .3s, border-color .3s;
      cursor: default;
    }

    .project-card::after {
      content: '';
      position: absolute; inset: 0; border-radius: 18px;
      background: radial-gradient(circle at 0% 0%, rgba(0,229,255,.07), transparent 60%);
      opacity: 0; transition: opacity .3s;
      pointer-events: none;
    }

    .project-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 50px rgba(0,229,255,.1), 0 0 0 1px rgba(0,229,255,.25);
      border-color: rgba(0,229,255,.3);
    }
    .project-card:hover::after { opacity: 1; }

    .project-card.featured { grid-column: span 7; }
    .project-card.medium   { grid-column: span 5; }
    .project-card.small    { grid-column: span 4; }

    .project-card::before {
      content: '';
      position: absolute; top: 0; right: 0;
      width: 120px; height: 120px;
      background: radial-gradient(circle at top right, rgba(0,229,255,.08), transparent 70%);
      pointer-events: none;
    }

    .project-header {
      display: flex; align-items: flex-start; justify-content: space-between;
      margin-bottom: 1.25rem; gap: 1rem;
    }

    .project-icon {
      width: 38px; height: 38px; border-radius: 9px;
      border: 1px solid rgba(0,229,255,.2);
      background: rgba(0,229,255,.07);
      display: flex; align-items: center; justify-content: center;
      color: var(--cyan); flex-shrink: 0;
    }
    .project-icon svg { width: 17px; height: 17px; }

    .project-status {
      display: flex; align-items: center; gap: .4rem;
      font-size: .68rem; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; padding: .2rem .65rem;
      border-radius: 999px;
    }
    .project-status .status-dot {
      width: 5px; height: 5px; border-radius: 50%;
      background: currentColor;
    }
    .project-name {
      font-family: 'Syne', sans-serif; font-size: 1.25rem;
      font-weight: 800; color: #fff; margin-bottom: .4rem;
      letter-spacing: -.02em;
    }

    .project-desc {
      font-size: .85rem; color: var(--muted); line-height: 1.7;
      margin-bottom: 1.25rem;
    }

    .project-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.5rem; }
    .project-tag {
      padding: .18rem .55rem; border-radius: 4px;
      background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
      font-size: .7rem; color: var(--muted); font-weight: 500;
    }

    .project-link-wrapper {
      text-decoration: none;
      color: inherit;
      display: block;
    }

    .project-card-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 1.25rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(255,255,255,.06);
    }

    .project-cta-text {
      font-size: .8rem;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: .03em;
      transition: color .2s;
    }

    .project-cta-arrow {
      font-size: 1.1rem;
      color: var(--muted);
      transition: transform .25s, color .2s;
      display: inline-block;
    }

    .project-link-wrapper:hover .project-cta-text {
      color: var(--cyan);
    }

    .project-link-wrapper:hover .project-cta-arrow {
      color: var(--cyan);
      transform: translateX(4px);
    }

    /* ══════════════════════════════════════
       TEAM SECTION
    ══════════════════════════════════════ */
    .team-grid {
      display: grid;
      grid-template-columns: 1fr 1.25fr 1fr;
      gap: 1.5rem;
      margin-top: 3.5rem;
      align-items: start;
    }

    .member-card-featured {
      border-color: rgba(0,229,255,.35);
      background: linear-gradient(160deg, rgba(0,229,255,.06) 0%, var(--bg3) 60%);
      transform: translateY(-12px);
    }

    .member-card-featured::after {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--cyan), transparent);
      border-radius: 18px 18px 0 0;
    }

    .member-card-featured .avatar-wrap {
      width: 76px;
      height: 76px;
      border-color: rgba(0,229,255,.5);
    }

    .member-card-featured .member-name {
      font-size: 1.2rem;
    }

    .member-card {
      background: var(--bg3); border: 1px solid var(--border);
      border-radius: 16px; padding: 1.75rem;
      cursor: pointer; transition: transform .25s, box-shadow .25s, border-color .25s;
      position: relative; overflow: hidden;
    }

    .member-card::before {
      content: '';
      position: absolute; inset: 0; border-radius: 16px;
      background: radial-gradient(circle at 50% 0%, rgba(0,229,255,.08), transparent 65%);
      opacity: 0; transition: opacity .3s;
    }

    .member-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(0,229,255,.12), 0 0 0 1px rgba(0,229,255,.3);
      border-color: rgba(0,229,255,.35);
    }
    .member-card:hover::before { opacity: 1; }

    .avatar-wrap {
      width: 64px; height: 64px; border-radius: 50%;
      border: 2px solid rgba(0,229,255,.3);
      overflow: hidden; margin-bottom: 1rem;
      position: relative; flex-shrink: 0;
    }

    .avatar-wrap img { width: 100%; height: 100%; object-fit: cover; }

    .avatar-placeholder {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, #1a2535, #0d1117);
      font-family: 'Syne', sans-serif; font-size: 1.3rem;
      font-weight: 800; color: var(--cyan);
    }

    .member-name {
      font-family: 'Syne', sans-serif; font-size: 1.1rem;
      font-weight: 700; color: #fff; margin-bottom: .2rem;
    }

    .member-role {
      font-size: .78rem; color: var(--cyan); font-weight: 600;
      letter-spacing: .05em; text-transform: uppercase; margin-bottom: .75rem;
    }

    .member-bio {
      font-size: .85rem; color: var(--muted); line-height: 1.65;
      margin-bottom: 1.25rem;
    }

    .member-links { display: flex; gap: .6rem; }

    .icon-btn {
      width: 34px; height: 34px; border-radius: 8px;
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--muted); transition: color .2s, border-color .2s, background .2s;
      text-decoration: none;
    }
    .icon-btn:hover { color: var(--cyan); border-color: rgba(0,229,255,.4); background: rgba(0,229,255,.07); }
    .icon-btn svg { width: 16px; height: 16px; }

    /* ══════════════════════════════════════
       MODAL
    ══════════════════════════════════════ */
    .modal-overlay {
      position: fixed; inset: 0; z-index: 200;
      background: rgba(0,0,0,.75); backdrop-filter: blur(8px);
      display: flex; align-items: center; justify-content: center;
      padding: 1.5rem; opacity: 0; pointer-events: none;
      transition: opacity .25s;
    }

    .modal-overlay.open { opacity: 1; pointer-events: all; }

    .modal {
      background: var(--bg3); border: 1px solid var(--border);
      border-radius: 20px; max-width: 560px; width: 100%;
      max-height: 90vh; overflow-y: auto;
      padding: 2.5rem; position: relative;
      transform: translateY(20px); transition: transform .3s;
      box-shadow: 0 40px 100px rgba(0,0,0,.5), 0 0 0 1px rgba(0,229,255,.1);
    }

    .modal-overlay.open .modal { transform: translateY(0); }

    .modal-close {
      position: absolute; top: 1.25rem; right: 1.25rem;
      width: 36px; height: 36px; border-radius: 8px;
      border: 1px solid var(--border); background: none;
      color: var(--muted); cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: color .2s, border-color .2s;
    }
    .modal-close:hover { color: var(--cyan); border-color: rgba(0,229,255,.4); }

    .modal-avatar {
      width: 80px; height: 80px; border-radius: 50%;
      border: 2px solid rgba(0,229,255,.4); overflow: hidden;
      margin-bottom: 1.25rem;
    }
    .modal-avatar .avatar-placeholder { font-size: 1.6rem; }

    .modal-name {
      font-family: 'Syne', sans-serif; font-size: 1.6rem;
      font-weight: 800; color: #fff; margin-bottom: .25rem;
    }

    .modal-role {
      font-size: .8rem; color: var(--cyan); font-weight: 700;
      letter-spacing: .07em; text-transform: uppercase; margin-bottom: 1.5rem;
    }

    .modal-section { margin-bottom: 1.5rem; }
    .modal-section-label {
      font-size: .7rem; color: var(--muted); text-transform: uppercase;
      letter-spacing: .1em; font-weight: 700; margin-bottom: .5rem;
    }

    .modal-bio { font-size: .9rem; color: #94a3b8; line-height: 1.75; }

    .skill-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
    .skill-chip {
      padding: .25rem .7rem; border-radius: 5px;
      background: rgba(0,229,255,.08); border: 1px solid rgba(0,229,255,.2);
      font-size: .75rem; color: var(--cyan); font-weight: 600;
    }

    .modal-links { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }

    .modal-link {
      display: flex; align-items: center; gap: .5rem;
      padding: .5rem 1.1rem; border-radius: 8px;
      border: 1px solid var(--border); color: var(--text);
      font-size: .82rem; font-weight: 500;
      text-decoration: none; transition: color .2s, border-color .2s, background .2s;
    }
    .modal-link:hover { color: var(--cyan); border-color: rgba(0,229,255,.4); background: rgba(0,229,255,.06); }
    .modal-link svg { width: 16px; height: 16px; }

    /* ══════════════════════════════════════
       APPLY SECTION
    ══════════════════════════════════════ */
    .apply-section { background: var(--bg2); }

    .apply-inner {
      max-width: 760px; margin: 0 auto;
    }

    .form-card {
      background: var(--bg3); border: 1px solid var(--border);
      border-radius: 20px; padding: 2.5rem;
      box-shadow: 0 0 60px rgba(0,229,255,.04);
    }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

    .form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }

    .form-label {
      font-size: .78rem; font-weight: 600; color: var(--text);
      letter-spacing: .04em; text-transform: uppercase;
    }

    .form-label span { color: var(--cyan); }

    .form-input, .form-textarea {
      background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
      border-radius: 10px; padding: .75rem 1rem;
      color: var(--text); font-family: 'DM Sans', sans-serif;
      font-size: .9rem; outline: none;
      transition: border-color .2s, box-shadow .2s;
      width: 100%;
    }

    .form-input:focus, .form-textarea:focus {
      border-color: rgba(0,229,255,.5);
      box-shadow: 0 0 0 3px rgba(0,229,255,.08);
    }

    .form-textarea { resize: vertical; min-height: 130px; }

    .position-field-wrap { position: relative; display: flex; align-items: center; }

    .position-input {
      flex: 1;
      border-left: 2px solid var(--cyan) !important;
      background: rgba(0,229,255,.05) !important;
      color: var(--text);
      cursor: default;
      padding-right: 2.5rem;
    }
    .position-input:focus { outline: none; box-shadow: none; border-color: inherit; }

    .position-clear-btn {
      position: absolute; right: .75rem;
      background: none; border: none; cursor: pointer;
      color: var(--muted); font-size: 1.1rem; line-height: 1;
      padding: .2rem .35rem; border-radius: 4px;
      transition: color .2s, background .2s;
    }
    .position-clear-btn:hover { color: #ff5050; background: rgba(255,80,80,.1); }

    .form-label .position-info-icon {
      vertical-align: middle; margin-right: .35rem;
      color: var(--cyan); opacity: .8;
    }

    .checkbox-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: .6rem;
    }

    .checkbox-item {
      display: flex; align-items: center; gap: .6rem;
      padding: .55rem .85rem; border-radius: 8px;
      border: 1px solid rgba(255,255,255,.08);
      cursor: pointer; transition: border-color .2s, background .2s;
      user-select: none;
    }

    .checkbox-item:hover { border-color: rgba(0,229,255,.3); background: rgba(0,229,255,.04); }

    .checkbox-item input[type="checkbox"] { display: none; }

    .custom-checkbox {
      width: 18px; height: 18px; border-radius: 4px; flex-shrink: 0;
      border: 1.5px solid rgba(255,255,255,.2); display: flex;
      align-items: center; justify-content: center;
      transition: background .2s, border-color .2s;
    }

    .checkbox-item input:checked ~ .custom-checkbox {
      background: var(--cyan); border-color: var(--cyan);
    }

    .custom-checkbox svg {
      width: 11px; height: 11px; color: #000; display: none;
    }

    .checkbox-item input:checked ~ .custom-checkbox svg { display: block; }

    .checkbox-label { font-size: .82rem; color: var(--muted); }
    .checkbox-item:has(input:checked) .checkbox-label { color: var(--text); }

    .submit-btn {
      width: 100%; padding: .9rem;
      background: var(--cyan); color: #000;
      font-family: 'Syne', sans-serif; font-weight: 800;
      font-size: .95rem; letter-spacing: .03em;
      border: none; border-radius: 10px; cursor: pointer;
      transition: box-shadow .25s, transform .15s;
      margin-top: .5rem;
    }
    .submit-btn:hover { box-shadow: 0 0 30px rgba(0,229,255,.4); transform: translateY(-1px); }
    .submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

    /* ══════════════════════════════════════
       WHY MPDS SECTION
    ══════════════════════════════════════ */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin-top: 3.5rem;
    }

    .why-card {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 2rem 1.75rem;
      position: relative;
      overflow: hidden;
      transition: transform .3s, box-shadow .3s, border-color .3s;
      display: flex;
      flex-direction: column;
      min-height: 320px;
    }

    .why-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0,229,255,.4), transparent);
      opacity: 0; transition: opacity .3s;
    }

    .why-card::after {
      content: '';
      position: absolute; inset: 0; border-radius: 18px;
      background: radial-gradient(circle at 0% 0%, rgba(0,229,255,.07), transparent 60%);
      opacity: 0; transition: opacity .3s;
      pointer-events: none;
    }

    .why-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,229,255,.1), 0 0 0 1px rgba(0,229,255,.25);
      border-color: rgba(0,229,255,.3);
    }
    .why-card:hover::before,
    .why-card:hover::after { opacity: 1; }

    .why-num {
      font-family: 'Syne', sans-serif;
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1;
      color: rgba(0,229,255,.12);
      letter-spacing: -.04em;
      position: absolute;
      top: 1.25rem; right: 1.5rem;
      transition: color .3s;
    }

    .why-card:hover .why-num {
      color: rgba(0,229,255,.25);
    }

    .why-icon {
      width: 40px; height: 40px; border-radius: 9px;
      border: 1px solid rgba(0,229,255,.2);
      background: rgba(0,229,255,.07);
      display: flex; align-items: center; justify-content: center;
      color: var(--cyan);
      margin-bottom: 1rem;
    }
    .why-icon svg { width: 18px; height: 18px; }

    .why-icon.highlight-icon {
      background: rgba(57,255,20,.07);
      border-color: rgba(57,255,20,.25);
      color: var(--green);
    }

    .why-title {
      font-family: 'Syne', sans-serif;
      font-size: 1.2rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: .75rem;
      letter-spacing: -.02em;
    }

    .why-desc {
      font-size: .88rem;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 1.25rem;
      flex: 1;
    }

    .why-tags {
      display: flex;
      flex-wrap: wrap;
      gap: .4rem;
      margin-top: auto;
    }

    .why-tag {
      padding: .2rem .65rem;
      border-radius: 4px;
      background: rgba(0,229,255,.05);
      border: 1px solid rgba(0,229,255,.15);
      font-size: .7rem;
      color: var(--cyan);
      font-weight: 600;
      letter-spacing: .02em;
    }

    .why-card.why-highlight {
      background: linear-gradient(135deg, rgba(57,255,20,.04), rgba(0,229,255,.04));
      border-color: rgba(57,255,20,.25);
    }

    .why-highlight .why-num {
      color: rgba(57,255,20,.2);
      font-size: 2.2rem;
    }

    .why-highlight .why-tag {
      background: rgba(57,255,20,.06);
      border-color: rgba(57,255,20,.2);
      color: var(--green);
    }

    /* ══════════════════════════════════════
       PROJE HAVUZU - FILTERS & EXTRAS
    ══════════════════════════════════════ */
    .pool-filters {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 4px;
      gap: .6rem;
      margin-top: 2.5rem;
      margin-bottom: 1.25rem;
    }

    .pool-filter {
      display: flex;
      align-items: center;
      gap: .5rem;
      padding: .45rem 1rem;
      border-radius: 999px;
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.08);
      font-size: .78rem;
      font-weight: 600;
      color: var(--muted);
      cursor: pointer;
      transition: all .2s;
      user-select: none;
    }

    .pool-filter:hover {
      border-color: rgba(0,229,255,.3);
      color: var(--text);
    }

    .pool-filter.active {
      background: rgba(0,229,255,.08);
      border-color: rgba(0,229,255,.35);
      color: var(--cyan);
    }

    .pf-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--cyan); box-shadow: 0 0 6px var(--cyan);
    }
    .pf-dot.ekip { background: #39ff14; box-shadow: 0 0 6px #39ff14; }
    .pf-dot.mentor { background: #ffb400; box-shadow: 0 0 6px #ffb400; }
    .pf-dot.fikir { background: #c084fc; box-shadow: 0 0 6px #c084fc; }

    .project-status.ekip-ariyor {
      background: rgba(57,255,20,.08);
      border: 1px solid rgba(57,255,20,.25);
      color: var(--green);
    }
    .project-status.ekip-ariyor .status-dot { animation: pulse-dot 2s infinite; }

    .project-status.mentor-ariyor {
      background: rgba(255,180,0,.08);
      border: 1px solid rgba(255,180,0,.25);
      color: #ffb400;
    }

    .project-status.fikir-asamasi {
      background: rgba(192,132,252,.08);
      border: 1px solid rgba(192,132,252,.25);
      color: #c084fc;
    }

    .project-roles {
      margin-bottom: 1rem;
      padding: .9rem 1rem;
      background: rgba(255,255,255,.02);
      border: 1px solid rgba(255,255,255,.05);
      border-radius: 10px;
    }

    .role-label {
      font-size: .68rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .1em;
      font-weight: 700;
      margin-bottom: .55rem;
    }

    .role-list {
      display: flex;
      flex-wrap: wrap;
      gap: .4rem;
    }

    .role-chip {
      padding: .25rem .7rem;
      border-radius: 5px;
      font-size: .73rem;
      font-weight: 600;
    }

    .role-chip.needed {
      background: rgba(0,229,255,.07);
      border: 1px dashed rgba(0,229,255,.35);
      color: var(--cyan);
    }

    .role-chip.filled {
      background: rgba(57,255,20,.06);
      border: 1px solid rgba(57,255,20,.2);
      color: var(--green);
    }

    /* Add Your Project Card */
    .project-card.project-add {
      background: transparent;
      border: 1.5px dashed rgba(0,229,255,.25);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      gap: .75rem;
      padding: 2rem 1.5rem;
    }

    .project-card.project-add:hover {
      border-color: rgba(0,229,255,.5);
      background: rgba(0,229,255,.03);
      transform: translateY(-4px);
    }

    .project-card.project-add::before,
    .project-card.project-add::after { display: none; }

    .project-add-icon {
      width: 56px; height: 56px; border-radius: 50%;
      border: 1.5px dashed rgba(0,229,255,.4);
      display: flex; align-items: center; justify-content: center;
      color: var(--cyan);
      margin-bottom: .25rem;
    }
    .project-add-icon svg { width: 26px; height: 26px; }

    .project-card.project-add .project-name {
      font-size: 1.05rem;
      color: var(--cyan);
    }

    .project-card.project-add .project-desc {
      margin-bottom: 1rem;
    }

    

    /* ══════════════════════════════════════
       PROJECT DETAIL PAGE
    ══════════════════════════════════════ */
    .detail-back-link {
      display: inline-flex; align-items: center;
      color: var(--muted); text-decoration: none;
      font-size: .85rem; font-weight: 500;
      margin-bottom: 2rem;
      transition: color .2s;
    }
    .detail-back-link:hover { color: var(--cyan); }

    .detail-header {
      max-width: 820px;
      margin-bottom: 3rem;
    }

    .detail-status-row {
      display: flex; gap: .5rem;
      margin-bottom: 1.25rem;
    }

    .detail-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: #fff;
      letter-spacing: -.03em;
      line-height: 1.1;
      margin-bottom: 1rem;
    }

    .detail-lead {
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.75;
      max-width: 720px;
    }

    .detail-grid {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 2.5rem;
      align-items: start;
    }

    .detail-main { display: flex; flex-direction: column; gap: 2rem; }

    .detail-block {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.75rem;
    }

    .detail-block-label {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 1rem;
    }

    .detail-block-text {
      color: #cbd5e1;
      line-height: 1.8;
      font-size: .95rem;
    }

    .detail-goals {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: .85rem;
    }

    .detail-goals li {
      position: relative;
      padding-left: 1.75rem;
      color: #cbd5e1;
      line-height: 1.65;
      font-size: .92rem;
    }

    .detail-goals li::before {
      content: '→';
      position: absolute;
      left: 0; top: 0;
      color: var(--cyan);
      font-weight: 800;
    }

    .detail-roles { display: flex; flex-direction: column; gap: 1rem; }

    .detail-role-card {
      padding: 1.25rem;
      border: 1px dashed rgba(0,229,255,.25);
      border-radius: 12px;
      background: rgba(0,229,255,.02);
      transition: border-color .2s, background .2s;
    }
    .detail-role-card:hover {
      border-color: rgba(0,229,255,.5);
      background: rgba(0,229,255,.04);
    }

    .detail-role-header {
      display: flex; align-items: center; gap: .6rem;
      margin-bottom: .6rem;
      flex-wrap: wrap;
    }

    .detail-role-icon {
      width: 26px; height: 26px; border-radius: 6px;
      background: rgba(0,229,255,.1); border: 1px solid rgba(0,229,255,.25);
      display: flex; align-items: center; justify-content: center;
      color: var(--cyan); flex-shrink: 0;
    }

    .detail-role-title {
      font-family: 'Syne', sans-serif;
      font-weight: 700; color: #fff;
      font-size: 1rem;
    }

    .detail-role-tag {
      padding: .15rem .55rem;
      border-radius: 4px;
      background: rgba(57,255,20,.08);
      border: 1px solid rgba(57,255,20,.25);
      font-size: .65rem;
      color: var(--green);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-left: auto;
    }

    .detail-role-desc {
      color: var(--muted);
      font-size: .85rem;
      line-height: 1.65;
      margin-bottom: .85rem;
    }

    .detail-role-btn {
      display: inline-block;
      padding: .45rem 1rem;
      border-radius: 7px;
      background: rgba(0,229,255,.08);
      border: 1px solid rgba(0,229,255,.3);
      color: var(--cyan);
      font-size: .8rem;
      font-weight: 600;
      text-decoration: none;
      transition: background .2s, border-color .2s, transform .15s;
    }
    .detail-role-btn:hover {
      background: var(--cyan);
      color: #000;
      border-color: var(--cyan);
      transform: translateY(-1px);
    }

    .detail-sidebar {
      position: sticky;
      top: 90px;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .detail-sidebar-block {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.5rem;
    }

    .detail-team-list {
      display: flex;
      flex-direction: column;
      gap: .75rem;
    }

    .detail-team-member {
      display: flex;
      align-items: center;
      gap: .75rem;
      padding: .65rem;
      border-radius: 10px;
      background: rgba(255,255,255,.02);
      border: 1px solid rgba(255,255,255,.05);
    }

    .detail-avatar {
      width: 38px; height: 38px;
      border-radius: 50%;
      border: 1.5px solid rgba(0,229,255,.3);
      overflow: hidden;
      flex-shrink: 0;
    }
    .detail-avatar .avatar-placeholder { font-size: .85rem; }

    .detail-team-info { flex: 1; min-width: 0; }
    .detail-team-name {
      font-weight: 600; color: #fff; font-size: .85rem;
      margin-bottom: .15rem;
    }
    .detail-team-role {
      font-size: .72rem; color: var(--cyan);
      font-weight: 500;
    }

    .detail-team-status {
      font-size: .68rem;
      color: var(--green);
      font-weight: 700;
      letter-spacing: .05em;
      flex-shrink: 0;
    }

    .detail-empty-team {
      padding: 1rem;
      text-align: center;
      font-size: .85rem;
      color: var(--muted);
      font-style: italic;
      background: rgba(0,229,255,.03);
      border: 1px dashed rgba(0,229,255,.2);
      border-radius: 10px;
    }

    .detail-cta-block {
      background: linear-gradient(135deg, rgba(0,229,255,.06), rgba(0,229,255,.02));
      border-color: rgba(0,229,255,.25);
    }

    .detail-cta-title {
      font-family: 'Syne', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: .5rem;
    }

    .detail-cta-text {
      font-size: .82rem;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
    footer {
      border-top: 1px solid var(--border);
      padding: 2rem 1.5rem;
      text-align: center;
      font-size: .8rem; color: var(--muted);
    }

    footer a { color: var(--cyan); text-decoration: none; }

    /* ══════════════════════════════════════
       TOAST
    ══════════════════════════════════════ */
    .toast {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 300;
      padding: 1rem 1.5rem; border-radius: 12px;
      background: var(--bg3); border: 1px solid rgba(57,255,20,.3);
      color: var(--text); font-size: .88rem;
      display: flex; align-items: center; gap: .75rem;
      box-shadow: 0 10px 40px rgba(0,0,0,.4);
      transform: translateY(80px); opacity: 0;
      transition: transform .3s, opacity .3s;
    }
    .toast.show { transform: translateY(0); opacity: 1; }
    .toast-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); flex-shrink: 0; }

    /* ══════════════════════════════════════
       PROJECT MODAL
    ══════════════════════════════════════ */
    .pm-modal-heading {
      font-family: 'Syne', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: -.02em;
      margin-bottom: 1.75rem;
    }

    .pm-steps {
      display: flex;
      align-items: center;
      margin-bottom: 1.75rem;
    }

    .pm-step {
      display: flex;
      align-items: center;
      gap: .5rem;
    }

    .pm-step-num {
      width: 26px; height: 26px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: .72rem; font-weight: 700;
      color: var(--muted);
      transition: background .25s, border-color .25s, color .25s;
      flex-shrink: 0;
    }

    .pm-step.active .pm-step-num {
      background: var(--cyan);
      border-color: var(--cyan);
      color: #000;
    }

    .pm-step-label {
      font-size: .72rem;
      font-weight: 600;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .06em;
      transition: color .25s;
    }

    .pm-step.active .pm-step-label { color: var(--cyan); }

    .pm-step-divider {
      flex: 1;
      height: 1px;
      background: var(--border);
      margin: 0 .75rem;
    }

    .pm-select {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right .75rem center;
      padding-right: 2.25rem;
    }

    .pm-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 1.5rem;
      gap: 1rem;
    }

    .pm-action-btn {
      width: auto;
      padding: .75rem 1.75rem;
      margin-top: 0;
    }

    .pm-back-btn {
      background: none;
      border: 1px solid var(--border);
      border-radius: 10px;
      color: var(--muted);
      font-family: 'Syne', sans-serif;
      font-size: .9rem;
      font-weight: 600;
      padding: .75rem 1.25rem;
      cursor: pointer;
      transition: color .2s, border-color .2s;
    }
    .pm-back-btn:hover {
      color: var(--cyan);
      border-color: rgba(0,229,255,.4);
    }

    .pm-roles-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: .85rem;
    }

    .pm-add-role-btn {
      background: rgba(0,229,255,.07);
      border: 1px solid rgba(0,229,255,.25);
      border-radius: 7px;
      color: var(--cyan);
      font-size: .78rem;
      font-weight: 600;
      padding: .35rem .9rem;
      cursor: pointer;
      transition: background .2s, border-color .2s;
    }
    .pm-add-role-btn:hover:not(:disabled) {
      background: rgba(0,229,255,.14);
      border-color: rgba(0,229,255,.5);
    }
    .pm-add-role-btn:disabled {
      opacity: .4;
      cursor: not-allowed;
    }

    .pm-role-row {
      display: flex;
      align-items: flex-start;
      gap: .6rem;
      margin-bottom: .65rem;
      padding: .9rem;
      background: rgba(0,229,255,.02);
      border: 1px dashed rgba(0,229,255,.2);
      border-radius: 10px;
    }

    .pm-role-fields {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: .5rem;
    }

    .pm-role-fields .form-input { margin: 0; }

    .pm-remove-role-btn {
      background: none;
      border: 1px solid rgba(255,80,80,.25);
      border-radius: 6px;
      color: rgba(255,80,80,.55);
      font-size: 1.1rem;
      width: 30px; height: 30px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: background .2s, color .2s, border-color .2s;
      flex-shrink: 0;
      padding: 0;
      margin-top: .15rem;
    }
    .pm-remove-role-btn:hover {
      background: rgba(255,80,80,.1);
      color: #ff5050;
      border-color: rgba(255,80,80,.5);
    }

    .pm-roles-hint {
      font-size: .75rem;
      color: var(--muted);
      margin-bottom: 1rem;
      font-style: italic;
    }

    .page-section { padding-top: 7rem; }
    .project-cta-cyan { color: var(--cyan); }

    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */

    /* ══════════════════════════════════════
       FAQ NAV DROPDOWN
    ══════════════════════════════════════ */
    .faq-nav-wrap {
      position: relative;
      flex-shrink: 0;
    }

    .faq-nav-btn {
      width: 36px; height: 36px; border-radius: 8px;
      border: 1px solid var(--border); background: none;
      color: var(--muted); cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: color .2s, border-color .2s, background .2s;
    }
    .faq-nav-btn:hover,
    .faq-nav-wrap.open .faq-nav-btn {
      color: var(--cyan);
      border-color: rgba(8,191,211,.4);
      background: rgba(0,229,255,.07);
    }

    .faq-dropdown {
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      width: 380px;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(0,229,255,.08);
      opacity: 0;
      pointer-events: none;
      transform: translateY(-8px);
      transition: opacity .25s, transform .25s;
      z-index: 200;
      overflow: hidden;
    }

    .faq-nav-wrap.open .faq-dropdown {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0);
    }

    .faq-dropdown-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 1.25rem .75rem;
      border-bottom: 1px solid var(--border);
    }

    .faq-dropdown-title {
      font-family: 'Syne', sans-serif;
      font-size: .85rem;
      font-weight: 700;
      color: var(--text);
      letter-spacing: .02em;
    }

    .faq-dropdown-close {
      width: 26px; height: 26px;
      border: 1px solid var(--border);
      border-radius: 6px;
      background: none;
      color: var(--muted);
      font-size: 16px;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: color .2s, border-color .2s;
      line-height: 1;
    }
    .faq-dropdown-close:hover { color: var(--cyan); border-color: rgba(0,229,255,.4); }

    .faq-dropdown-list {
      max-height: 420px;
      overflow-y: auto;
      padding: .5rem 0;
      scrollbar-width: thin;
      scrollbar-color: var(--border) transparent;
    }

    .faq-item {
      border-bottom: 1px solid rgba(255,255,255,.04);
    }
    .faq-item:last-child { border-bottom: none; }

    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: .75rem;
      padding: .85rem 1.25rem;
      background: transparent;
      border: none;
      cursor: pointer;
      text-align: left;
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-size: .82rem;
      font-weight: 500;
      transition: color .2s, background .2s;
    }
    .faq-q:hover { color: var(--cyan); background: rgba(0,229,255,.03); }
    .faq-item.open .faq-q { color: var(--cyan); }

    .faq-arrow {
      flex-shrink: 0;
      color: var(--muted);
      transition: transform .3s;
    }
    .faq-item.open .faq-arrow {
      transform: rotate(180deg);
      color: var(--cyan);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease, padding .3s;
      padding: 0 1.25rem;
    }
    .faq-item.open .faq-a {
      max-height: 150px;
      padding: 0 1.25rem .85rem;
    }
    .faq-a p {
      font-size: .78rem;
      color: var(--muted);
      line-height: 1.7;
      border-top: 1px solid var(--border);
      padding-top: .75rem;
    }


    /* ══════════════════════════════════════
       ANNOUNCEMENTS DROPDOWN
    ══════════════════════════════════════ */
    .ann-nav-wrap {
      position: relative;
      flex-shrink: 0;
    }

    .ann-nav-btn {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--muted);
      padding: .35rem;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      transition: color .2s, background .2s;
    }
    .ann-nav-btn:hover,
    .ann-nav-wrap.open .ann-nav-btn {
      color: var(--text);
      background: var(--border);
    }

    .ann-badge {
      position: absolute;
      top: 0;
      right: 0;
      transform: translate(40%, -40%);
      background: var(--cyan);
      color: #fff;
      font-size: .6rem;
      font-weight: 700;
      min-width: 16px;
      height: 16px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 3px;
      line-height: 1;
    }

    .ann-dropdown {
      position: absolute;
      top: calc(100% + 12px);
      right: 0;
      width: 340px;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,.4);
      opacity: 0;
      pointer-events: none;
      transform: translateY(-8px);
      transition: opacity .25s, transform .25s;
      z-index: 200;
    }
    .ann-nav-wrap.open .ann-dropdown {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0);
    }

    .ann-dropdown-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: .9rem 1.1rem .7rem;
      border-bottom: 1px solid var(--border);
    }
    .ann-dropdown-title {
      font-size: .85rem;
      font-weight: 600;
      color: var(--text);
    }
    .ann-dropdown-close {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--muted);
      font-size: 1.2rem;
      line-height: 1;
      padding: 0 .2rem;
      transition: color .2s;
    }
    .ann-dropdown-close:hover { color: var(--text); }

    .ann-filters {
      display: flex;
      gap: .4rem;
      padding: .6rem .9rem;
      border-bottom: 1px solid var(--border);
      flex-wrap: wrap;
    }
    .ann-filter-btn {
      background: none;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: .2rem .65rem;
      font-size: .72rem;
      color: var(--muted);
      cursor: pointer;
      transition: color .2s, border-color .2s, background .2s;
    }
    .ann-filter-btn:hover {
      color: var(--text);
      border-color: rgba(0,229,255,.35);
    }
    .ann-filter-btn.active {
      color: var(--cyan);
      border-color: var(--cyan);
      background: rgba(0,229,255,.07);
    }

    .ann-list {
      max-height: 280px;
      overflow-y: auto;
      padding: .4rem 0;
    }
    .ann-list::-webkit-scrollbar { width: 4px; }
    .ann-list::-webkit-scrollbar-track { background: transparent; }
    .ann-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

    .ann-empty {
      font-size: .78rem;
      color: var(--muted);
      text-align: center;
      padding: 1.5rem 1rem;
    }

    .ann-item {
      padding: .75rem 1.1rem;
      cursor: pointer;
      border-bottom: 1px solid var(--border);
      transition: background .2s;
    }
    .ann-item:last-child { border-bottom: none; }
    .ann-item:hover { background: rgba(0,229,255,.04); }

    .ann-item-head {
      display: flex;
      align-items: center;
      gap: .5rem;
      margin-bottom: .35rem;
    }

    .ann-cat {
      font-size: .65rem;
      font-weight: 600;
      padding: .15rem .5rem;
      border-radius: 20px;
      text-transform: uppercase;
      letter-spacing: .04em;
    }
    .ann-cat--duyuru   { background: rgba(0,229,255,.12); color: var(--cyan); }
    .ann-cat--etkinlik { background: rgba(57,255,20,.1);  color: var(--green); }
    .ann-cat--guncelleme { background: rgba(255,180,0,.1); color: #ffb400; }

    .ann-date {
      font-size: .68rem;
      color: var(--muted);
      margin-left: auto;
    }

    .ann-item-title {
      font-size: .82rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: .25rem;
      line-height: 1.35;
    }

    .ann-item-summary {
      font-size: .73rem;
      color: var(--muted);
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .ann-modal-head {
      display: flex;
      align-items: center;
      gap: .6rem;
      margin-bottom: 1rem;
      padding-right: 3rem;
    }
    .ann-modal-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--text);
      line-height: 1.4;
      margin-bottom: 1rem;
      padding-right: 3rem;
    }
    .ann-modal-body {
      font-size: .9rem;
      color: var(--muted);
      line-height: 1.75;
    }


    /* ── Ann tabs & filter update ── */
    .ann-filter-row {
      display: flex;
      gap: .4rem;
      padding: .6rem .9rem;
      border-bottom: 1px solid var(--border);
      flex-wrap: wrap;
    }
    .ann-filter {
      background: none;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: .2rem .65rem;
      font-size: .72rem;
      color: var(--muted);
      cursor: pointer;
      font-family: inherit;
      transition: color .2s, border-color .2s, background .2s;
    }
    .ann-filter:hover {
      color: var(--text);
      border-color: rgba(0,229,255,.35);
    }
    .ann-filter.active {
      color: var(--cyan);
      border-color: var(--cyan);
      background: rgba(0,229,255,.07);
    }

    .ann-type {
      font-size: .65rem;
      font-weight: 600;
      padding: .15rem .5rem;
      border-radius: 20px;
      text-transform: uppercase;
      letter-spacing: .04em;
    }
    .ann-type-haber     { background: rgba(0,229,255,.12); color: var(--cyan); }
    .ann-type-etkinlik  { background: rgba(57,255,20,.1);  color: var(--green); }
    .ann-type-proje     { background: rgba(255,180,0,.1);  color: #ffb400; }

    /* ══════════════════════════════════════
       TAKVİM
    ══════════════════════════════════════ */
    .ann-tab-row {
      display: flex;
      border-bottom: 1px solid var(--border);
    }

    .ann-tab {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .4rem;
      padding: .7rem;
      background: transparent;
      border: none;
      border-bottom: 2px solid transparent;
      color: var(--muted);
      font-size: .78rem;
      font-weight: 600;
      cursor: pointer;
      font-family: inherit;
      transition: color .2s, border-color .2s;
      margin-bottom: -1px;
    }

    .ann-tab:hover { color: var(--text); }
    .ann-tab.active {
      color: var(--cyan);
      border-bottom-color: var(--cyan);
    }

    .ann-calendar-wrap {
      padding: 1rem 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .cal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: .75rem;
    }

    .cal-title {
      font-family: 'Hanken Grotesk', sans-serif;
      font-size: .88rem;
      font-weight: 700;
      color: var(--text);
    }

    .cal-nav {
      width: 28px; height: 28px;
      border: 1px solid var(--border);
      border-radius: 6px;
      background: transparent;
      color: var(--muted);
      cursor: pointer;
      font-size: 1rem;
      display: flex; align-items: center; justify-content: center;
      transition: color .2s, border-color .2s;
      font-family: inherit;
    }
    .cal-nav:hover { color: var(--cyan); border-color: rgba(0,229,255,.3); }

    .cal-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 2px;
    }

    .cal-day-label {
      text-align: center;
      font-size: .65rem;
      color: var(--muted);
      font-weight: 600;
      padding: .25rem 0;
      letter-spacing: .04em;
    }

    .cal-cell {
      aspect-ratio: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: .75rem;
      color: var(--muted);
      border-radius: 6px;
      cursor: default;
      position: relative;
      transition: background .15s, color .15s;
      gap: 2px;
    }

    .cal-cell.empty { background: transparent; }

    .cal-cell:not(.empty):hover {
      background: rgba(255,255,255,.04);
      color: var(--text);
    }

    .cal-cell.today {
      background: rgba(0,229,255,.1);
      border: 1px solid rgba(0,229,255,.3);
      color: var(--cyan);
      font-weight: 700;
    }

    .cal-cell.has-event {
      color: var(--text);
      cursor: pointer;
      font-weight: 600;
    }
    .cal-cell.has-event:hover {
      background: rgba(0,229,255,.08);
      color: var(--cyan);
    }

    .cal-dot {
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 4px var(--cyan);
    }

    .ann-upcoming-wrap {
      border-top: 1px solid var(--border);
      padding-top: 1rem;
    }

    .ann-upcoming-label {
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: .75rem;
    }

    .ann-upcoming-item {
      display: flex;
      align-items: center;
      gap: .85rem;
      padding: .6rem .75rem;
      border-radius: 8px;
      cursor: pointer;
      transition: background .15s;
      margin-bottom: .35rem;
    }
    .ann-upcoming-item:hover { background: rgba(0,229,255,.04); }

    .ann-upcoming-date {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 36px;
      background: rgba(0,229,255,.08);
      border: 1px solid rgba(0,229,255,.2);
      border-radius: 8px;
      padding: .3rem .25rem;
      flex-shrink: 0;
    }

    .ann-upcoming-day {
      font-family: 'Hanken Grotesk', sans-serif;
      font-size: .95rem;
      font-weight: 800;
      color: var(--cyan);
      line-height: 1;
    }

    .ann-upcoming-month {
      font-size: .6rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .05em;
    }

    .ann-upcoming-info {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: .3rem;
    }

    .ann-upcoming-title {
      font-size: .8rem;
      font-weight: 600;
      color: var(--text);
      line-height: 1.3;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .ann-empty {
      text-align: center;
      padding: 1rem;
      font-size: .8rem;
      color: var(--muted);
      font-style: italic;
    }

    /* ══════════════════════════════════════
       TEAM SWITCH TABS
    ══════════════════════════════════════ */
    .team-switch-row {
      display: flex;
      gap: .5rem;
      margin-top: 2rem;
      margin-bottom: 2.5rem;
    }
    .team-switch {
      display: inline-flex;
      align-items: center;
      padding: .4rem 1.25rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--muted);
      font-size: .8rem;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
      text-decoration: none;
      transition: all .2s;
    }
    .team-switch:hover {
      border-color: rgba(0,229,255,.3);
      color: var(--text);
    }
    .team-switch.active {
      background: rgba(0,229,255,.08);
      border-color: rgba(0,229,255,.35);
      color: var(--cyan);
    }

    /* ══════════════════════════════════════
       SCROLL ANIMATIONS
    ══════════════════════════════════════ */
    .reveal {
      opacity: 0; transform: translateY(24px); transition: opacity .6s, transform .6s;
    }
    .reveal.in { opacity: 1; transform: none; }

    /* ══════════════════════════════════════
       SKELETON LOADERS
    ══════════════════════════════════════ */
    @keyframes shimmer {
      0%   { background-position: -600px 0; }
      100% { background-position:  600px 0; }
    }

    .skeleton-card {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 1.75rem;
      overflow: hidden;
      grid-column: span 4;
    }

    .skeleton-line {
      height: 12px;
      border-radius: 6px;
      margin-bottom: .75rem;
      background: linear-gradient(
        90deg,
        var(--bg3) 25%,
        rgba(255,255,255,.06) 50%,
        var(--bg3) 75%
      );
      background-size: 1200px 100%;
      animation: shimmer 1.5s infinite linear;
    }
    .skeleton-line.short  { width: 45%; }
    .skeleton-line.medium { width: 72%; }
    .skeleton-line.tall   { height: 56px; }

    .skeleton-avatar {
      width: 80px; height: 80px; border-radius: 50%;
      margin: 0 auto 1rem;
      background: linear-gradient(
        90deg,
        var(--bg3) 25%,
        rgba(255,255,255,.06) 50%,
        var(--bg3) 75%
      );
      background-size: 1200px 100%;
      animation: shimmer 1.5s infinite linear;
    }

    /* ══════════════════════════════════════
       SEARCH
    ══════════════════════════════════════ */
    .search-box {
      position: relative;
      width: 100%;
      margin-bottom: 1.75rem;
    }
    .search-box svg {
      position: absolute; left: 1rem; top: 50%;
      transform: translateY(-50%);
      color: var(--muted); pointer-events: none;
    }
    .search-input {
      width: 100%;
      padding: .7rem 1.1rem .7rem 2.75rem;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 12px;
      color: var(--text);
      font-family: inherit; font-size: .9rem;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
    }
    .search-input::placeholder { color: var(--muted); }
    .search-input:focus {
      border-color: rgba(0,229,255,.4);
      box-shadow: 0 0 0 3px rgba(0,229,255,.08);
    }

    .ann-search-box {
      padding: .5rem .9rem;
      border-bottom: 1px solid var(--border);
    }
    .ann-search-input {
      width: 100%;
      padding: .42rem .72rem;
      background: rgba(255,255,255,.04);
      border: 1px solid var(--border);
      border-radius: 8px;
      color: var(--text);
      font-family: inherit; font-size: .78rem;
      outline: none;
      transition: border-color .2s;
    }
    .ann-search-input::placeholder { color: var(--muted); }
    .ann-search-input:focus { border-color: rgba(0,229,255,.35); }

    /* ══════════════════════════════════════
       RESPONSIVE (consolidated)
    ══════════════════════════════════════ */
    @media (max-width: 900px) {
      .project-card.featured,
      .project-card.medium,
      .project-card.small { grid-column: span 12; }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .detail-grid { grid-template-columns: 1fr; }
      .detail-sidebar { position: static; }
    }

    @media (max-width: 768px) {
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
      .hero-right-visual { display: none; min-height: 400px; }
      .form-row { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: 1fr; }
      .member-card-featured { transform: none; order: -1; }
      .why-grid { grid-template-columns: 1fr; }
      .pool-filters { gap: .4rem; }
      .pool-filter { font-size: .72rem; padding: .35rem .8rem; }
      .glass-card { min-width: auto; width: 100%; max-width: 380px; }
      .glass-card code { font-size: .9rem; }
      .faq-dropdown,
      .ann-dropdown {
        position: fixed;
        left: 1rem;
        right: 1rem;
        width: auto;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 300;
        border-radius: 12px;
      }
      .faq-dropdown { top: 64px; }
      .ann-dropdown { top: 68px; }
      .ann-list { max-height: 45vh; }
      .ann-calendar-wrap { padding: .75rem 1rem; }
      .ann-upcoming-item { padding: .5rem .5rem; }
    }

    @media (max-width: 600px) {
      .pool-filters { flex-wrap: wrap; }
      .pool-filter { font-size: .7rem; padding: .3rem .7rem; }
      .search-input { font-size: .85rem; padding: .6rem 1rem .6rem 2.5rem; }
    }
