/* Modern Bildirim Paneli */
.notification-bar {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background-color: #1e1e1e;
  color: white;
  padding: 20px 24px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 10000;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.notification-bar p {
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 12px 0;
}

.notification-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.notify-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease;
}

.notify-btn.green {
  background-color: #28a745;
}

.notify-btn.green:hover {
  background-color: #218838;
}

.notify-btn.red {
  background-color: #dc3545;
}

.notify-btn.red:hover {
  background-color: #c82333;
}

.status {
  font-size: 13px;
  margin-top: 10px;
  color: #00cc66;
}


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

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background: url('profil.png') no-repeat center center / cover;
  color: white;
  overflow-x: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  z-index: 0;
}



.main-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  min-height: 100vh;
  width: 100%;
  padding: 140px 20px 60px; /* notification bar için üst boşluk verildi */
  overflow-y: auto;
}

.box {
  flex: 0 0 400px;
  height: 500px;
  background: rgba(0,0,0,0.7);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.7);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.center-box {
  flex: 0 0 500px;
  background: rgba(0,0,0,0.7);
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.7);
  padding: 30px;
  text-align: center;
}

.center-box img.logo {
  width: 140px;
  height: 140px;
  margin-bottom: 15px;
  border-radius: 50%;
  object-fit: cover;
}

.center-box h1 {
  font-size: 38px;
  margin-bottom: 30px;
  color: #fff;
}

.social-icons {
  margin-bottom: 30px;
}

.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 36px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: red;
}

.server-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}

.server-logos img {
  width: 120px;
  height: 70px;
  border-radius: 12px;
  object-fit: contain;
  background-color: rgba(255,255,255,0.1);
  padding: 6px;
  transition: 0.3s;
}

.server-logos a:hover img {
  transform: scale(1.05);
}

.video-thumbnail {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.video-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.watch-btn {
  display: block;
  background: red;
  padding: 10px 15px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  width: 100%;
  margin-top: auto;
}