/* Reset ve temel ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', 'Arial', sans-serif;
  color: #fff;
  background: radial-gradient(circle at 60% 40%, #1e293b 0%, #0f172a 100%);
  min-height: 100vh;
}

/* Header */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 7%;
  background: #0f172acc;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 16px 0 #0004;
}
.logo-area {
  display: flex;
  align-items: center;
}
.logo-img {
  width: 44px;
  height: 44px;
  margin-right: 10px;
  border-radius: 50%;
  box-shadow: 0 0 24px 0 #1482ff55;
  background: #0f172a;
}
.logo-text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}
.logo-text .highlight {
  color: #1482ff;
}
.logo-text .dot {
  color: #fff;
  font-size: 1.1rem;
}
.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  color: #e0eaff;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 500;
  transition: color 0.2s;
}
.main-nav a:hover {
  color: #1482ff;
}
.discord-btn {
  background: linear-gradient(90deg, #1482ff 60%, #2563eb 100%);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  margin-left: 32px;
  box-shadow: 0 2px 16px 0 #1482ff44;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.discord-btn:hover {
  background: linear-gradient(90deg, #2563eb 60%, #1482ff 100%);
  box-shadow: 0 4px 24px 0 #1482ff77;
  cursor: pointer;
  transform: translateY(-2px);
}
.discord-icon {
  font-size: 1.2em;
}

/* Kullanıcı Profili Stilleri */
.user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 32px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.user-profile:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #1482ff;
  object-fit: cover;
}

.user-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.logout-btn {
  background: none;
  border: none;
  color: #ff6b6b;
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logout-btn:hover {
  background: rgba(255, 107, 107, 0.2);
  color: #ff5252;
  transform: scale(1.1);
}

/* HERO YENİ DÜZEN */
.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  padding: 120px 7% 40px 7%;
  gap: 40px;
}
.hero-content {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 650px;
  margin-left: 40px;
}
.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #38b6ff;
  margin-bottom: 18px;
  line-height: 1.1;
  text-shadow: 0 2px 24px #1482ff33;
}
.hero-content p {
  font-size: 1.25rem;
  color: #e0eaff;
  margin-bottom: 22px;
  line-height: 1.5;
}
.stats-row {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}
.stat {
  background: #1e293b;
  color: #1482ff;
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  box-shadow: 0 2px 12px 0 #1482ff22;
}
.stat .star {
  color: #ffe066;
  font-size: 1.1em;
}
.hero-buttons {
  display: flex;
  gap: 18px;
}
.btn {
  padding: 15px 36px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn.primary {
  background: linear-gradient(90deg, #1482ff 60%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 2px 16px 0 #1482ff44;
}
.btn.primary:hover {
  background: linear-gradient(90deg, #2563eb 60%, #1482ff 100%);
  color: #fff;
  box-shadow: 0 4px 24px 0 #1482ff77;
}
.btn.secondary {
  background: transparent;
  color: #1482ff;
  border: 2px solid #1482ff;
}
.btn.secondary:hover {
  background: #1482ff22;
  color: #fff;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 320px;
  margin-top: 32px;
  width: 100%;
  height: 420px;
}
.logo-glow {
  background: none;
  border-radius: 50%;
  padding: 38px;
  margin-bottom: 0;
  box-shadow: 0 0 80px 0 #38b6ff88, 0 0 120px 0 #1482ff33;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 1.2s cubic-bezier(0.4,0,0.2,1);
}
@keyframes popIn {
  0% { transform: scale(0.7); opacity: 0; }
  70% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.main-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: none;
  box-shadow: none;
}
.info-badges {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 340px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.stat-badge {
  position: absolute;
  min-width: 120px;
  padding: 8px 20px 8px 14px;
  background: rgba(24,31,46,0.82);
  color: #fff;
  border-radius: 22px;
  font-size: 1.02rem;
  font-weight: 600;
  box-shadow: 0 2px 18px 0 #a259ff55, 0 0 0 2px #2563eb;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #1482ff;
  backdrop-filter: blur(2px);
  opacity: 0.98;
  pointer-events: auto;
  transition: box-shadow 0.2s, border 0.2s, background 0.2s;
  filter: drop-shadow(0 0 8px #1482ff88);
  animation: swayBadge 2.8s ease-in-out infinite;
}
.stat-badge .badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-badges .stat-badge:nth-child(1) {
  left: -90px;
  top: 50%;
  transform: translateY(-50%);
}
.info-badges .stat-badge:nth-child(2) {
  right: -30px;
  top: 30px;
  transform: none;
}
.info-badges .stat-badge:nth-child(3) {
  right: -30px;
  bottom: 30px;
  transform: none;
}
.badge {
  background: #1e293b;
  color: #fff;
  padding: 10px 26px;
  border-radius: 22px;
  font-size: 1.08rem;
  font-weight: 600;
  box-shadow: 0 2px 12px 0 #1482ff22;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.star-badge {
  color: #ffe066;
  background: #2563eb;
}
.server-badge {
  color: #1482ff;
}
.support-badge {
  color: #0ea5e9;
}

/* Hero Custom Tasarım */
.logo-glow-custom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
  margin: 0 auto 0 40px;
  border-radius: 50%;
  box-shadow: 0 0 60px 0 #1482ff88, 0 0 120px 0 #2563eb44;
  background: none;
  animation: popIn 1.2s cubic-bezier(0.4,0,0.2,1);
}
.main-logo-custom {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: none;
  box-shadow: none;
  z-index: 2;
}
.badge-custom {
  position: absolute;
  min-width: 120px;
  padding: 10px 22px 10px 14px;
  background: rgba(24,31,46,0.85);
  color: #fff;
  border-radius: 22px;
  font-size: 1.01rem;
  font-weight: 600;
  box-shadow: 0 2px 18px 0 #1482ff55, 0 0 0 2px #1482ff;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #1482ff;
  backdrop-filter: blur(2px);
  opacity: 0.98;
  pointer-events: auto;
  transition: box-shadow 0.2s, border 0.2s, background 0.2s;
  filter: drop-shadow(0 0 8px #1482ff88);
  z-index: 3;
  animation: floatBadge 2.8s ease-in-out infinite;
}
.badge-custom .badge-icon svg path, .badge-custom .badge-icon svg circle {
  stroke: #1482ff !important;
}
.badge-left {
  left: -110px;
  top: 50%;
  transform: translateY(-50%);
}
.badge-topright {
  right: -30px;
  top: 10px;
}
.badge-bottomright {
  right: -30px;
  bottom: 10px;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Footer */
footer {
  padding: 24px 0 12px 0;
  text-align: center;
  background: #0f172a;
  font-size: 15px;
  color: #1482ff;
  margin-top: 40px;
}

/* Ürünler Bölümü */
.products-section {
  padding: 80px 7% 40px 7%;
  background: #13203b;
  text-align: center;
}
.products-section h2 {
  font-size: 2.3rem;
  color: #38b6ff;
  margin-bottom: 36px;
  font-weight: 800;
}
.products-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.product-card {
  background: #1e293b;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 #1482ff22;
  padding: 32px 28px 28px 28px;
  min-width: 260px;
  max-width: 320px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 18px;
}
.product-card h3 {
  color: #1482ff;
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.product-card p {
  color: #e0eaff;
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.product-card .btn {
  margin-top: auto;
}

/* Hakkımızda Bölümü */
.about-section {
  padding: 80px 7% 40px 7%;
  background: #0f172a;
}
.about-section h2 {
  font-size: 2.3rem;
  color: #38b6ff;
  margin-bottom: 36px;
  font-weight: 800;
  text-align: center;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}
.about-text {
  flex: 2;
  min-width: 260px;
  max-width: 500px;
  color: #e0eaff;
  font-size: 1.08rem;
}
.about-list {
  margin-top: 18px;
  padding-left: 18px;
  color: #38b6ff;
  font-size: 1.05rem;
}
.about-team {
  flex: 1;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
}
.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #1e293b;
  border-radius: 16px;
  padding: 18px 14px 10px 14px;
  box-shadow: 0 2px 12px 0 #1482ff22;
  min-width: 110px;
}
.team-member img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 8px;
  border: 3px solid #1482ff;
}
.team-member span {
  color: #38b6ff;
  font-weight: 600;
  font-size: 1.08rem;
}

/* Referanslar (Müşteri Değerlendirmeleri) - Küçük boyut ve animasyon için güncellendi */
.references-section {
  padding: 80px 7% 40px 7%;
  background: #181026;
}
.references-title {
  font-size: 2.1rem;
  color: #1482ff;
  margin-bottom: 10px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 1px;
}
.references-desc {
  color: #b6b6c6;
  font-size: 1.01rem;
  margin-bottom: 36px;
  text-align: center;
  font-weight: 400;
}
.references-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}
.reference-card {
  background: #181f2e;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 #1482ff22;
  border: 1.5px solid #1482ff44;
  padding: 20px 16px 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
  position: relative;
  transition: border 0.2s, box-shadow 0.2s;
}
.reference-card:hover {
  border: 1.5px solid #1482ff;
  box-shadow: 0 4px 40px 0 #1482ff55;
}
.reference-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.stars {
  color: #ffe066;
  font-size: 1.08rem;
  letter-spacing: 2px;
  font-weight: 700;
  filter: drop-shadow(0 1px 2px #0008);
}
.verified {
  background: #16a34a;
  color: #fff;
  font-size: 0.91rem;
  font-weight: 600;
  border-radius: 16px;
  padding: 3px 10px 3px 7px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  box-shadow: 0 2px 8px 0 #16a34a33;
}
.reference-card blockquote {
  color: #1482ff;
  font-size: 1.01rem;
  font-style: normal;
  margin: 0 0 18px 0;
  padding-left: 0;
  border: none;
  position: relative;
  line-height: 1.6;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
}
.quote-icon {
  font-size: 1.7rem;
  color: #1482ff;
  margin-right: 7px;
  line-height: 1;
  font-family: serif;
  font-weight: 900;
  filter: drop-shadow(0 2px 8px #1482ff33);
}
.reference-user {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  margin-bottom: 0;
}
.reference-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #1482ff;
  background: #232c47;
  box-shadow: 0 2px 12px 0 #1482ff22;
}
.user-name {
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  display: block;
  margin-bottom: 2px;
}
.user-server {
  color: #1482ff;
  font-size: 0.91rem;
  display: block;
  font-weight: 500;
}

/* S.S.S. Bölümü */
.faq-section {
  padding: 80px 7% 40px 7%;
  background: #0f172a;
  text-align: center;
}
.faq-section h2 {
  font-size: 2.3rem;
  color: #38b6ff;
  margin-bottom: 36px;
  font-weight: 800;
}
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.faq-item {
  background: #1e293b;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 #1482ff22;
  padding: 24px 22px 18px 22px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 220px;
  margin-bottom: 18px;
  text-align: left;
}
.faq-item h4 {
  color: #1482ff;
  font-size: 1.13rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.faq-item p {
  color: #e0eaff;
  font-size: 1.04rem;
}

/* Accordion SSS */
.faq-accordion {
  max-width: 800px;
  margin: 36px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.accordion-item {
  background: #181f2e;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 #1482ff11;
  overflow: hidden;
  border: 1.5px solid transparent;
  transition: border 0.2s, box-shadow 0.2s;
}
.accordion-item.active {
  border: 1.5px solid #1482ff;
  box-shadow: 0 4px 32px 0 #1482ff33;
}
.accordion-header {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 700;
  text-align: left;
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}
.accordion-item.active .accordion-header {
  color: #38b6ff;
}
.accordion-icon {
  margin-left: 18px;
  font-size: 1.2em;
  transition: transform 0.3s;
}
.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: #38b6ff;
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  background: none;
  color: #e0eaff;
  font-size: 1.05rem;
  padding: 0 28px;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.2s;
}
.accordion-item.active .accordion-body {
  padding: 0 28px 22px 28px;
  max-height: 300px;
}
.faq-desc {
  color: #b6c6e3;
  font-size: 1.13rem;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
}

/* Responsive */
@media (max-width: 1200px) {
  .references-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-section {
    gap: 30px;
  }
  .hero-content {
    margin-left: 20px;
  }
  .logo-glow-custom {
    margin-left: 20px;
  }
}
@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 100px 4% 40px 4%;
  }
  .hero-content {
    margin-left: 0;
    max-width: 100%;
  }
  .logo-glow-custom {
    margin: 0 auto;
  }
  .products-list, .references-list, .faq-list {
    flex-direction: column;
    gap: 0;
  }
  .about-content {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .about-team {
    justify-content: flex-start;
  }
  .references-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .reference-card {
    padding: 24px 14px 16px 14px;
  }
  .main-logo {
    width: 100px;
    height: 100px;
  }
  .logo-glow {
    padding: 18px;
  }
  .info-badges {
    width: 220px;
    height: 220px;
  }
  .stat-badge {
    min-width: 70px;
    font-size: 0.91rem;
    padding: 5px 8px 5px 6px;
  }
  .info-badges .stat-badge:nth-child(1) {
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
  }
  .info-badges .stat-badge:nth-child(2) {
    right: -10px;
    top: 10px;
    transform: none;
  }
  .info-badges .stat-badge:nth-child(3) {
    right: -10px;
    bottom: 10px;
    transform: none;
  }
  .logo-glow-custom {
    width: 160px;
    height: 160px;
  }
  .main-logo-custom {
    width: 100px;
    height: 100px;
  }
  .badge-custom {
    min-width: 70px;
    font-size: 0.91rem;
    padding: 5px 8px 5px 6px;
  }
  .badge-left {
    left: -60px;
  }
  .badge-topright {
    right: -10px;
    top: 0;
  }
  .badge-bottomright {
    right: -10px;
    bottom: 0;
  }
}
@media (max-width: 600px) {
  .main-header {
    flex-direction: column;
    gap: 18px;
    padding: 16px 3%;
  }
  .hero-content h1 {
    font-size: 2.1rem;
  }
  .main-logo {
    width: 80px;
    height: 80px;
  }
  .logo-glow {
    padding: 16px;
  }
  .faq-accordion {
    max-width: 98vw;
    gap: 12px;
  }
  .accordion-header {
    font-size: 1.01rem;
    padding: 16px 14px;
  }
  .accordion-body, .accordion-item.active .accordion-body {
    padding: 0 14px 14px 14px;
  }
}

/* Animasyonlar */
.animate-fade {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1);
}
.animate-fade.visible {
  opacity: 1;
}
.animate-slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.animate-slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-pop {
  animation: popIn 1.2s cubic-bezier(0.4,0,0.2,1);
}
.animate-float {
  animation: floatBadge 2.8s ease-in-out infinite;
}
.info-badges .stat-badge:nth-child(2) {
  animation-delay: 0.15s;
}
.info-badges .stat-badge:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.04); }
}

/* Scroll to Top Butonu */
.scroll-to-top-btn {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 100;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: none;
  box-shadow: 0 4px 24px 0 #1482ff44;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, box-shadow 0.2s, transform 0.2s;
  outline: none;
}
.scroll-to-top-btn:hover {
  box-shadow: 0 6px 32px 0 #1482ff88;
  transform: translateY(-4px) scale(1.08);
}
.scroll-to-top-btn svg {
  display: block;
}
@media (max-width: 600px) {
  .scroll-to-top-btn {
    right: 12px;
    bottom: 12px;
    width: 44px;
    height: 44px;
  }
  .scroll-to-top-btn svg {
    width: 22px;
    height: 22px;
  }
}

/* Modern Scrollbar */
body::-webkit-scrollbar {
  width: 10px;
  background: #181f2e;
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2563eb 0%, #1482ff 100%);
  border-radius: 8px;
  min-height: 40px;
  border: 2px solid #181f2e;
  transition: background 0.2s;
}
body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #38b6ff 0%, #1482ff 100%);
}
body::-webkit-scrollbar-track {
  background: #181f2e;
  border-radius: 8px;
}
body::-webkit-scrollbar-corner {
  background: #181f2e;
}
html {
  scrollbar-color: #1482ff #181f2e;
  scrollbar-width: thin;
}

/* Sallanma (sway) animasyonu */
@keyframes swayBadge {
  0% { transform: translateY(0); }
  20% { transform: translateY(-7px); }
  40% { transform: translateY(3px); }
  60% { transform: translateY(-4px); }
  80% { transform: translateY(2px); }
  100% { transform: translateY(0); }
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
  margin-left: 18px;
  transition: background 0.2s;
}
.burger-bar {
  width: 28px;
  height: 3.5px;
  background: #1482ff;
  margin: 3.5px 0;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  display: block;
}
@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: 70px;
    right: 3%;
    background: #181f2e;
    box-shadow: 0 4px 24px 0 #1482ff33;
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 0 12px 0;
    min-width: 170px;
    display: none;
    z-index: 15;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    padding: 12px 28px;
    width: 100%;
    font-size: 1.08rem;
    border-radius: 0;
    text-align: left;
    border-bottom: 1px solid #1482ff22;
  }
  .main-nav a:last-child {
    border-bottom: none;
  }
  .burger-menu {
    display: flex;
  }
}
/* Burger active animasyonu (isteğe bağlı) */
.burger-menu.active .burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-menu.active .burger-bar:nth-child(2) {
  opacity: 0;
}
.burger-menu.active .burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Chat Bubble */
.chat-bubble-btn {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 120;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #1482ff 60%, #2563eb 100%);
  box-shadow: 0 4px 24px 0 #1482ff44;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  outline: none;
}
.chat-bubble-btn:hover {
  box-shadow: 0 6px 32px 0 #1482ff88;
  transform: translateY(-4px) scale(1.08);
}
.chat-bubble-btn svg {
  display: block;
}
@media (max-width: 600px) {
  .chat-bubble-btn {
    right: 12px;
    bottom: 12px;
    width: 44px;
    height: 44px;
  }
  .chat-bubble-btn svg {
    width: 22px;
    height: 22px;
  }
}
/* Chat Modal (sağ alt köşe için güncellendi) */
.chat-modal {
  display: none;
  position: fixed;
  z-index: 130;
  right: 32px;
  bottom: 90px;
  left: auto;
  top: auto;
  width: 350px;
  max-width: 95vw;
  height: auto;
  background: none;
  align-items: flex-end;
  justify-content: flex-end;
  transition: none;
}
.chat-modal.open {
  display: flex;
}
.chat-modal-content {
  background: #181f2e;
  border-radius: 18px;
  box-shadow: 0 8px 40px 0 #1482ff44;
  padding: 32px 28px 24px 28px;
  min-width: 320px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  margin-bottom: 0;
}
.chat-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: #1482ff;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
}
.chat-modal-close:hover {
  color: #2563eb;
}
.chat-modal-content h3 {
  color: #1482ff;
  margin-bottom: 18px;
  font-size: 1.25rem;
  text-align: center;
}
.chat-textarea {
  min-height: 90px;
  border-radius: 10px;
  border: 1.5px solid #1482ff;
  background: #232c47;
  color: #fff;
  font-size: 1.08rem;
  padding: 12px 14px;
  resize: vertical;
  margin-bottom: 8px;
  outline: none;
  transition: border 0.2s;
}
.chat-textarea:focus {
  border: 1.5px solid #2563eb;
}
@media (max-width: 600px) {
  .chat-modal {
    right: 8px;
    bottom: 60px;
    width: 98vw;
    max-width: 98vw;
  }
  .chat-modal-content {
    min-width: 0;
    width: 100%;
    padding: 14px 4px 10px 4px;
  }
  .chat-modal-content h3 {
    font-size: 1.05rem;
  }
  .chat-textarea {
    font-size: 0.98rem;
    padding: 8px 8px;
  }
}

/* Çıkış Onay Modalı */
.modal-overlay {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: #fff;
  color: #222;
  border-radius: 16px;
  padding: 32px 28px 24px 28px;
  box-shadow: 0 8px 32px #0002;
  min-width: 320px;
  max-width: 90vw;
  text-align: center;
}
.modal-content h3 {
  margin-top: 0;
  color: #1482ff;
}
.modal-actions {
  margin-top: 24px;
  display: flex;
  gap: 18px;
  justify-content: center;
}
.modal-actions .btn {
  min-width: 80px;
  padding: 10px 0;
}

/* Admin Panel Button Style */
#adminLoginBtn, .admin-btn {
  display: none; /* JS ile gösterilecek */
  background: linear-gradient(90deg, #1482ff 0%, #2563eb 100%);
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 10px 28px;
  font-size: 1.05em;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 12px #1482ff33;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  outline: none;
  position: relative;
  z-index: 2;
}
#adminLoginBtn.show, .admin-btn.show {
  display: inline-block !important;
}
#adminLoginBtn:hover, .admin-btn:hover {
  background: linear-gradient(90deg, #2563eb 0%, #1482ff 100%);
  box-shadow: 0 4px 24px #1482ff55;
  transform: translateY(-2px) scale(1.04);
}
#adminLoginBtn:focus, .admin-btn:focus {
  box-shadow: 0 0 0 3px #1482ff55;
}
/* Responsive: stack in mobile footer */
@media (max-width: 600px) {
  #adminLoginBtn, .admin-btn {
    width: 100%;
    margin: 12px 0 0 0;
    padding: 12px 0;
    font-size: 1.1em;
  }
}

/* User Info Modal Styles */
#userInfoModal.user-info-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(20, 34, 56, 0.55);
  justify-content: center;
  align-items: center;
  transition: background 0.2s;
}
#userInfoModal.user-info-modal[style*="display: flex"] {
  display: flex !important;
}
.user-info-modal-content {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 40px #1482ff33;
  padding: 36px 32px 28px 32px;
  min-width: 320px;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  animation: modalPopIn 0.25s cubic-bezier(.4,2,.6,1) 1;
}
@keyframes modalPopIn {
  0% { transform: scale(0.85) translateY(40px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.user-info-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 2em;
  color: #1482ff;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 2;
}
.user-info-modal-close:hover {
  color: #2563eb;
}
.user-info-details {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
}
.user-avatar-large {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  box-shadow: 0 2px 12px #1482ff33;
  border: 3px solid #1482ff;
  background: #f4f8ff;
}
.user-info-texts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.08em;
  color: #222;
}
.user-info-texts b {
  color: #1482ff;
}
@media (max-width: 600px) {
  .user-info-modal-content {
    min-width: 0;
    padding: 18px 8vw 18px 8vw;
  }
  .user-info-details {
    flex-direction: column;
    gap: 12px;
  }
  .user-avatar-large {
    width: 64px;
    height: 64px;
  }
}

/* Team List Loading ve Error Durumları */
.loading {
  text-align: center;
  padding: 40px;
  color: #e0eaff;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.no-members {
  text-align: center;
  padding: 40px;
  color: #94a3b8;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.error {
  text-align: center;
  padding: 40px;
  color: #ff6b6b;
  font-size: 1.1rem;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 107, 0.3);
}
