/* Yeni Çıkan Albümler - Minimal Tek Satır Tasarım */

.yeni-albumler-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.albumler-slider-wrapper {
    position: relative;
}

.album-slide-card {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.album-slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.albumlerSwiper .swiper-button-next,
.albumlerSwiper .swiper-button-prev {
    color: #000;
    background: rgba(255,255,255,0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.albumlerSwiper .swiper-button-next:after,
.albumlerSwiper .swiper-button-prev:after {
    font-size: 16px;
}

.albumler-info {
    padding-left: 40px;
}

.section-badge {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.artist-info {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.artist-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.artist-info h4 {
    font-size: 18px;
    font-weight: 400;
    color: #666;
}

.section-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.platform-cards {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.platform-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.platform-card i {
    font-size: 18px;
}

.platform-card.spotify {
    background: #1DB954;
}

.platform-card.apple {
    background: #000;
}

.platform-card.youtube {
    background: #FF0000;
}

.platform-card.deezer {
    background: #000;
}

.platform-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    color: #fff;
}

/* Yeni Çıkan Klipler */

.yeni-klipler-section {
    padding: 80px 0;
    background: #000 !important;
    position: relative;
}

.klipler-slider-wrapper {
    position: relative;
}

.klip-slide-card {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: relative;
    cursor: pointer;
}

.klip-slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.klip-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255,0,0,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.klip-play-overlay i {
    font-size: 30px;
    color: #fff;
    margin-left: 4px;
}

.klip-slide-card:hover .klip-play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255,0,0,1);
}

.kliplerSwiper .swiper-button-next,
.kliplerSwiper .swiper-button-prev {
    color: #fff;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.kliplerSwiper .swiper-button-next:after,
.kliplerSwiper .swiper-button-prev:after {
    font-size: 16px;
}

.klipler-info {
    padding-left: 40px;
}

.klipler-info .section-badge {
    background: #FF0000;
}

.klipler-info .section-title {
    color: #fff;
}

.klipler-info .artist-info {
    border-bottom-color: rgba(255,255,255,0.1);
}

.klipler-info .artist-info h3 {
    color: #fff;
}

.klipler-info .artist-info h4 {
    color: rgba(255,255,255,0.7);
}

.klipler-info .section-desc {
    color: rgba(255,255,255,0.8);
}

/* Responsive */
@media (max-width: 991px) {
    .albumler-info,
    .klipler-info {
        padding-left: 0;
        padding-top: 30px;
        text-align: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .platform-cards {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 24px;
    }
    
    .artist-info h3 {
        font-size: 18px;
    }
    
    .artist-info h4 {
        font-size: 16px;
    }
    
    .platform-card {
        padding: 10px 16px;
        font-size: 13px;
    }
}


.company-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.company-badge i {
    color: #fff;
    font-size: 8px;
}

.company-badge span {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.klipler-info .section-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.klipler-info .section-subtitle {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.klipler-info .section-desc {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.klipler-info .artist-name {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}

.klip-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 1px solid #fff;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    color: #fff;
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    color: #fff;
}

.klip-video-wrapper {
    position: relative;
}

.klip-video-card {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    cursor: pointer;
}

.klip-video-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.klip-video-card:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0,212,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button i {
    font-size: 36px;
    color: #fff;
    margin-left: 4px;
}

.klip-video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(0,212,255,1);
}

@media (max-width: 991px) {
    .klipler-info {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .klipler-info .section-title {
        font-size: 36px;
    }
    
    .klipler-info .section-subtitle {
        font-size: 20px;
    }
    
    .klip-buttons {
        justify-content: center;
    }
}
