/* ============================================
   VİDEO KLİP DETAY SAYFASI - YOUTUBE TARZI
   Basit, Temiz, Profesyonel
   ============================================ */

.video-detail-page {
    background: #f9f9f9;
    padding: 30px 0 60px;
}

.video-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 24px;
}

/* SOL TARAF - VİDEO VE BİLGİLER */
.video-main {
    background: #fff;
}

.video-player {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 20px;
}

.video-info h1 {
    font-size: 20px;
    font-weight: 600;
    color: #030303;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.video-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 16px;
}

.video-artist {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 15px;
}

.video-artist i {
    font-size: 16px;
}

.video-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #606060;
    font-size: 14px;
}

.video-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-stats i {
    font-size: 14px;
}

.video-description {
    background: #f2f2f2;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.video-description h3 {
    font-size: 14px;
    font-weight: 600;
    color: #030303;
    margin: 0 0 10px 0;
}

.description-content {
    color: #606060;
    font-size: 14px;
    line-height: 1.6;
}

.description-content p {
    margin: 0 0 8px 0;
}

.video-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: #f9f9f9;
    border-radius: 8px;
}

.detail-item {
    display: flex;
    gap: 8px;
    font-size: 14px;
}

.detail-item .label {
    color: #606060;
    font-weight: 500;
}

.detail-item .value {
    color: #030303;
    font-weight: 600;
}

/* SAĞ TARAF - BENZER VİDEOLAR */
.video-sidebar {
    display: flex;
    flex-direction: column;
}

.sidebar-title {
    font-size: 16px;
    font-weight: 600;
    color: #030303;
    margin: 0 0 12px 0;
    padding: 0 8px;
}

.related-videos {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.related-video {
    display: flex;
    gap: 8px;
    padding: 8px;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
    transition: background 0.2s;
}

.related-video:hover {
    background: #f2f2f2;
}

.related-thumb {
    position: relative;
    width: 168px;
    height: 94px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.2s;
}

.related-video:hover .play-icon {
    opacity: 1;
}

.related-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.related-info h4 {
    font-size: 14px;
    font-weight: 500;
    color: #030303;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-info .artist {
    font-size: 12px;
    color: #606060;
    margin: 0;
}

.related-info .views {
    font-size: 12px;
    color: #606060;
    margin: 0;
}

.btn-all-videos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
    margin: 8px;
}

.btn-all-videos:hover {
    background: #333;
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .video-detail-wrapper {
        grid-template-columns: 1fr;
    }
    
    .video-sidebar {
        max-width: 100%;
    }
    
    .related-videos {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 16px;
    }
    
    .related-video {
        flex-direction: column;
    }
    
    .related-thumb {
        width: 100%;
        height: auto;
        padding-top: 56.25%;
        position: relative;
    }
    
    .related-thumb img {
        position: absolute;
        top: 0;
        left: 0;
    }
}

@media (max-width: 768px) {
    .video-detail-page {
        padding: 20px 0 40px;
    }
    
    .video-info h1 {
        font-size: 18px;
    }
    
    .video-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .related-videos {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   VİDEO KLİPLER LİSTE SAYFASI
   ============================================ */

.vk-page-ultra {
    min-height: 100vh;
    background: #f9f9f9;
    padding-top: 0 !important;
}

.vk-page-hero {
    background: #fff;
    padding: 60px 0 40px;
    border-bottom: 1px solid #e5e5e5;
}

.vk-hero-content {
    text-align: center;
}

.vk-hero-title {
    font-size: 36px;
    font-weight: 700;
    color: #030303;
    margin-bottom: 10px;
}

.vk-hero-subtitle {
    font-size: 16px;
    color: #606060;
}

.vk-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 40px 0;
}

.vk-page-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.vk-page-card-inner {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.vk-page-card-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.vk-page-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
}

.vk-page-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.vk-page-card-inner:hover .vk-page-img {
    transform: scale(1.05);
}

.vk-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.vk-page-card-inner:hover .vk-page-overlay {
    opacity: 1;
}

.vk-page-play-btn {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.vk-page-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

.vk-page-content {
    padding: 16px;
}

.vk-page-title {
    font-size: 16px;
    font-weight: 600;
    color: #030303;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vk-page-artist {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #606060;
    font-size: 14px;
    margin-bottom: 8px;
}

.vk-page-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #606060;
    font-size: 13px;
}

.vk-page-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Pagination */
.pagination-wrapper {
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #fff;
    border-radius: 8px;
    color: #030303;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.pagination li a:hover {
    background: #000;
    color: #fff;
}

.pagination li.active a {
    background: #000;
    color: #fff;
}

/* Ana Sayfa Modülü */
.vk-ultra-section {
    padding: 60px 0;
    background: #fff;
}

.vk-ultra-header {
    text-align: center;
    margin-bottom: 40px;
}

.vk-ultra-title .vk-title-main {
    font-size: 36px;
    font-weight: 700;
    color: #030303;
    margin-bottom: 10px;
}

.vk-ultra-subtitle {
    font-size: 16px;
    color: #606060;
}

.vk-ultra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.vk-ultra-footer {
    text-align: center;
}

.vk-ultra-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s;
}

.vk-ultra-btn:hover {
    background: #333;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .vk-hero-title {
        font-size: 28px;
    }
    
    .vk-page-grid,
    .vk-ultra-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .vk-page-grid,
    .vk-ultra-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   ETKİNLİKLER MODÜLÜ
   ============================================ */

.event-card {
    display: block;
}

.event-card a {
    text-decoration: none;
    color: inherit;
}

.event-card-inner {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.event-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 60%;
    background: #000;
    overflow: hidden;
}

.event-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.event-card-inner:hover .event-img {
    transform: scale(1.05);
}

.event-status {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    z-index: 2;
}

.status-upcoming {
    background: #000;
}

.status-ongoing {
    background: #48bb78;
}

.status-completed {
    background: #718096;
}

.status-cancelled {
    background: #f56565;
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.event-date-badge {
    background: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.badge-day {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.badge-month {
    font-size: 12px;
    font-weight: 600;
    color: #606060;
    text-transform: uppercase;
    margin-top: 2px;
}

.event-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-size: 18px;
    font-weight: 600;
    color: #030303;
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.event-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #606060;
    font-size: 14px;
}

.event-info-item i {
    color: #000;
    width: 16px;
}

.event-description {
    color: #606060;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
