body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Montserrat', 'Inter', 'Segoe UI', 'Roboto', Arial, sans-serif;
  background: #0d0d0f;
  color: #f3f6fa;
  position: relative;
  overflow-x: hidden;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.background-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(35,58,94,0.55) 0%, rgba(35,58,94,0.18) 60%, transparent 100%),
    radial-gradient(ellipse 30% 20% at 20% 80%, rgba(79,124,207,0.18) 0%, rgba(35,58,94,0.08) 60%, transparent 100%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(35,58,94,0.12) 0%, rgba(0,0,0,0.95) 100%);
}

.container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 8px 16px 8px;
}

.profile-img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: none;
  margin-bottom: 14px;
  box-shadow: 0 4px 24px 0 #233a5e33;
}

.title {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 7px 0;
  letter-spacing: 1.5px;
  text-align: center;
  color: #eaf0fa;
}

.subtitle {
  font-size: 0.93rem;
  color: #b6c3d6;
  margin-bottom: 14px;
  text-align: center;
  line-height: 1.6;
  font-weight: 400;
}

.social-icons {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  justify-content: center;
}
.social-icons a {
  color: #b6c3d6;
  font-size: 1.08rem;
  background: #181c24;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  text-decoration: none;
  box-shadow: 0 2px 10px #233a5e22;
  border: none;
}
.social-icons a:hover {
  background: #233a5e;
  color: #fff;
  box-shadow: 0 4px 18px #233a5e44;
}

.links {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-box {
  display: flex;
  flex-direction: column;
  background: #18181b;
  border-radius: 12px;
  padding: 18px 22px;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 2px 12px #0005;
  transition: background 0.18s cubic-bezier(.4,0,.2,1), transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s;
  position: relative;
}
.link-box:hover {
  background: linear-gradient(90deg, #233a5e 0%, #18181b 100%);
  box-shadow: 0 4px 24px #233a5e33, 0 1.5px 8px #0007;
  transform: translateY(-2px) scale(1.015);
}
.link-box .desc {
  font-size: 0.95rem;
  color: #bdbdbd;
  font-weight: 400;
  margin-top: 4px;
}

.blog-list {
  background: #23232b;
  margin-top: 8px;
}
.blog-list strong {
  font-size: 1.08rem;
  margin-bottom: 6px;
  display: block;
}
.blog-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-list li {
  margin: 12px 0 12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f7ccf 60%, #233a5e 100%);
  margin-right: 10px;
  flex-shrink: 0;
}
.blog-list a {
  color: #4f7ccf;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.04rem;
  transition: color 0.18s;
}
.blog-list a:hover {
  color: #fff;
  text-decoration: underline;
}

.divider {
  border: none;
  height: 2px;
  width: 80%;
  margin: 18px auto 0 auto;
  background: linear-gradient(90deg, rgba(35,58,94,0.18) 0%, rgba(255,255,255,0.08) 100%);
  border-radius: 2px;
}

/* BENTO GRID TASARIMI */
.ensar-section {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 36px auto;
}
.ensar-card {
  background: rgba(24,28,36,0.98);
  border-radius: 12px;
  padding: 20px 18px 16px 18px;
  color: #f3f6fa;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  box-shadow: 0 6px 32px #233a5e22, 0 2px 12px #0008;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  position: relative;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  border: none;
}
.ensar-card i {
  font-size: 1.1rem;
  margin: 0 7px 0 0;
  filter: drop-shadow(0 0 6px #233a5e44);
}
.ensar-title {
  font-size: 1.04rem;
  font-weight: 600;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #eaf0fa;
}
.ensar-card .desc {
  font-size: 0.89rem;
  margin-top: 1px;
}
.ensar-card-wide {
  padding-top: 22px;
  padding-bottom: 18px;
}
.ensar-card:hover {
  background: linear-gradient(90deg, #233a5e 0%, #181c24 100%);
  box-shadow: 0 12px 36px #233a5e44, 0 4px 18px #0008;
  transform: translateY(-2px) scale(1.022);
}
.ensar-card:hover i {
  color: #fff;
  filter: drop-shadow(0 0 16px #fff8);
}
@media (max-width: 900px) {
  .ensar-section {
    max-width: 98vw;
  }
}
@media (max-width: 700px) {
  .ensar-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    max-width: 99vw;
    gap: 12px;
  }
  .ensar-card, .ensar-card-wide {
    padding: 14px 8px 10px 10px;
    font-size: 0.93rem;
  }
  .ensar-title {
    font-size: 0.98rem;
  }
  .ensar-card .desc {
    font-size: 0.82rem;
  }
  .profile-img {
    width: 62px;
    height: 62px;
    margin-bottom: 8px;
  }
}

.medium-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 2px;
}
.medium-list li {
  margin: 16px 0 16px 0;
  font-size: 0.87em;
  line-height: 1.5;
  display: block;
  font-weight: 400;
}
.medium-list a {
  color: #4f7ccf;
  text-decoration: none;
  transition: color 0.18s;
  font-weight: 500;
}
.medium-list a:hover {
  color: #fff;
  text-decoration: underline;
}

.medium-link-white {
  color: #fff !important;
  text-decoration: underline;
  font-weight: 500;
  font-family: 'Montserrat', 'Inter', 'Segoe UI', 'Roboto', Arial, sans-serif;
  font-size: 0.97em;
  display: block;
  margin-bottom: 4px;
}
.medium-link-white::before {
  content: '\f35d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.93em;
  margin-right: 4px;
  opacity: 0.7;
  display: inline-block;
}
.medium-link-white:hover {
  color: #4f7ccf !important;
  text-decoration: underline;
}
.medium-list-title {
  font-size: 1.01em;
  font-weight: 700;
  color: #eaf0fa;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

.medium-meta {
  font-size: 0.78em;
  color: #b6c3d6;
  margin-top: 0;
  font-weight: 400;
  display: block;
  margin-left: 0;
}
.medium-meta span, .medium-meta .medium-tag {
  display: inline-block;
  margin-top: 2px;
}
.medium-tag {
  background: #233a5e22;
  color: #4f7ccf;
  border-radius: 6px;
  padding: 1px 7px 1px 7px;
  font-size: 0.85em;
  margin-left: 0;
  margin-top: 2px;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: inline-block;
}

.medium-tags-row {
  display: block;
  margin-top: 4px;
}

.cv-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(20,24,32,0.88);
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cv-modal-content {
  background: #181c24;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 8px 40px #233a5e55, 0 2px 12px #0008;
  max-width: 700px;
  width: 98vw;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}
.cv-modal-content h3 {
  color: #eaf0fa;
  font-size: 1.13rem;
  font-weight: 700;
  margin: 18px 0 10px 0;
  text-align: center;
}
.cv-modal-content iframe {
  width: 100%;
  height: 540px;
  border-radius: 0;
  border: none;
  background: #222;
  margin: 0;
  display: block;
}
.cv-modal-close {
  position: absolute;
  top: 10px; right: 16px;
  background: none;
  border: none;
  color: #b6c3d6;
  font-size: 1.7rem;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 2;
}
.cv-modal-close:hover {
  color: #fff;
}
.cv-download-btn {
  margin: 18px auto 18px auto;
  display: block;
}
@media (max-width: 900px) {
  .cv-modal-content {
    max-width: 99vw;
  }
  .cv-modal-content iframe {
    height: 340px;
  }
}
@media (max-width: 600px) {
  .cv-modal-content {
    max-width: 99vw;
  }
  .cv-modal-content h3 {
    font-size: 1rem;
    margin: 10px 0 6px 0;
  }
  .cv-modal-content iframe {
    height: 180px;
  }
  .cv-download-btn {
    font-size: 0.93rem;
    padding: 7px 10px;
  }
} 