﻿ /* Video detayları konteyneri */
.video-detail-container {
    width: 90%;
    max-width: 1200px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 20px auto;
}

/* Video iframe */
.video-player iframe {
    width: 100%;
    height: 600px;
    max-width: 1000px;
    margin: 0 auto;
    display: block;
}

/* Başlık */
.video-detail-container h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* Video oynatıcı */
.video-player {
    margin-bottom: 20px;
}

/* Video bilgileri */
.video-info {
    text-align: left;
    color: #555;
}

.video-info p {
    margin: 10px 0;
}

/* Açıklama */
.video-info p strong {
    color: #333;
}

/* Hata mesajı */
.video-detail-container p {
    color: #d9534f;
    font-size: 16px;
}

/* === Mobil Uyum (Responsive) === */
@media (max-width: 768px) {
    .video-detail-container {
        padding: 15px;
    }

    .video-detail-container h1 {
        font-size: 20px;
    }

    .video-player iframe {
        height: 300px;
    }

    .video-info {
        font-size: 14px;
    }

    .video-detail-container p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .video-player iframe {
        height: 220px;
    }

    .video-detail-container h1 {
        font-size: 18px;
    }
}





	
	.share-container {
  position: relative;
  display: inline-block;
  float: right;
  margin: 10px 10px 10px 0;
  z-index: 1000;
}

.share-toggle {
  background-color: #007bff;
  color: white;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.share-icons {
  position: absolute;
  top: 110%; /* Butonun hemen altında */
  right: 0;
  display: flex;
  gap: 10px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: 180px; /* Yeterli genişlik */
  justify-content: space-around;
}

/* İkon ve yanındaki metin için stil */
.share-icons a {
  font-size: 20px;
  color: #444;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.share-icons a .share-text {
  font-size: 14px;
  color: #333;
  display: none; /* Metin gizli başta */
}

/* Hover olunca ikonlar görünür ve metinler çıkar */
.share-container:hover .share-icons {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover ile ikonların yanındaki metinler görünür */
.share-icons a:hover {
  color: #0d6efd;
}

.share-icons a:hover .share-text {
  display: inline;
}



.video-info p {
  font-size: 16px;
  margin-bottom: 12px;
  color: #444;
}

.video-info a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.video-info a:hover {
  color: #0056b3;
  text-decoration: none;
}

.video-detail-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 15px;
  background-color: #f9f9f9;
}

.video-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  max-width: 900px;
  width: 100%;
  padding: 25px;
  box-sizing: border-box;
}

.video-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.responsive-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

.responsive-video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-info p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #444;
  line-height: 1.6;
}

.error-message {
  text-align: center;
  color: #c00;
  font-weight: bold;
}

.responsive-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000;
  margin-bottom: 20px;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-button-overlay {
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 55px; /* Daha dengeli görünüm */
  line-height: 1;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
}







 h1 {
            font-size: 72px;
            margin-bottom: 0;
        }
    
        a {
            text-decoration: none;
            color: #007BFF;
            font-weight: bold;
        }
.center {
            text-align: center;
			
		