/* Üstteki Giriş/Kayıt Butonları */
.auth-buttons {
  position: fixed;
  top: 20px;
  right: 30px;
  display: flex;
  gap: 1rem;
  z-index: 1000;
}

.auth-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.auth-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.auth-btn i {
  stroke: #fff;
  width: 20px;
  height: 20px;
}



.copyright {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffffa0;
  font-size: 0.7rem;
  font-weight: 400;
  z-index: 1000;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

.mac-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(120px);
  padding: 5px 20px;
  height: 50px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.mac-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mac-logo {
  font-size: 16px;
  font-weight: bold;
  padding-right: 10px;
}

.mac-menu {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mac-menu li {
  cursor: pointer;
  transition: color 0.3s;
}

.mac-menu li:hover {
  color: #ccc;
}

.mac-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mac-icon {
  font-size: 14px;
}

.mac-clock {
  font-variant-numeric: tabular-nums;
}

.apple-icon {
  width: 16px;
  height: 16px;
  filter: invert(1);
  /* Beyaz görünüm için */


}

.apple-icon1 {
  width: 50px;
  height: 32px;
  filter: invert(0);
  /* Beyaz görünüm için */


}

.mac-window-buttons {
  display: flex;
  gap: 8px;
}

.mac-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.mac-dot.red {
  background-color: #ff5f57;
}

.mac-dot.orange {
  background-color: #ffbd2e;
}

.mac-dot.green {
  background-color: #28c840;
}

.mac-menu li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.mac-menu li a:hover {
  color: #ccc;
}


.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 15px;
  cursor: pointer;
  margin-left: 10px;
}

.hamburger span {
  height: 2px;
  background: white;
  border-radius: 1px;
}

@media (max-width: 768px) {
  .mac-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 35px;
    left: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    border-radius: 10px;
    z-index: 999;
  }

  .mac-menu.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .mac-left {
    flex-direction: row;
    align-items: center;
  }

  .mac-right {
    display: none;
  }
}

/* Ana Dropdown Kart */
.dropdown-big {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dropdown-big video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.dropdown-big span {
  position: relative;
  z-index: 2;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 1rem;
}


/* Önceki dropdown-card ve dropdown-content kodları geçerliliğini koruyor */
.dropdown-item {
  position: relative;
}

.dropdown-content {
  position: fixed;
  top: 50px;
  /* Menü bar yüksekliği kadar */
  left: 0;
  width: 100vw;
  height: 50vh;
  background: white;
  color: #000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid #ddd;
}

.dropdown-item:hover .dropdown-content {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}


.dropdown-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
  color: white;
  text-align: center;
  transition: transform 0.3s ease;
}

.dropdown-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.dropdown-card:hover {
  transform: translateY(-5px);
}

.dropdown-card span {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Mobilde dropdownları gizle */
@media (max-width: 768px) {
  .dropdown-content {
    display: none !important;
  }
}