:root {
    --gold: #b3834d;
    --dark: #121212;
}

.yt-promo-section {
    background-color: var(--dark);
    padding: 60px 0;
    font-family: 'Montserrat', sans-serif;
    color: white;
    overflow: hidden;
}

.yt-container {
    max-width: 1600px;
    margin: 0 auto;
    background: var(--dark);
}

/* ================== MASAÜSTÜ GÖRÜNÜM ================== */
.yt-desktop {
    display: flex;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

/* Siyah alanı %45'ten %38'e düşürdük */
.yt-left {
    flex: 0 0 38%;
    padding: 60px 20px 60px 40px;
    background: var(--dark);
    z-index: 3; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Resim alanını %55'ten %62'ye çıkardık */
.yt-right {
    flex: 0 0 62%;
    position: relative;
    overflow: hidden;
}

.yt-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Kavis alanını daraltıp daha yumuşak ve sola çekik hale getirdik */
.yt-curve-mask {
    position: absolute;
    top: -20%;
    left: -500px;
    width: 800px;
    height: 140%;
    background: var(--dark);
    border-radius: 50%;
    border-right: 4px solid var(--gold);
    z-index: 2;
    pointer-events: none;
}

/* ================== İÇERİK DETAYLARI ================== */
.yt-logo {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.yt-badge {
    background: var(--gold);
    color: var(--dark);
    display: inline-block;
    padding: 6px 15px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
    align-self: flex-start;
}

.yt-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 5px 0;
}

.yt-gold-text {
    color: var(--gold);
}

.yt-cursive {
    font-family: 'Dancing Script', cursive;
    font-size: 70px;
    color: white;
    margin-top: -15px; 
    margin-bottom: 20px;
    font-weight: 700;
}

.yt-desc-wrapper {
    border-left: 2px solid var(--gold);
    padding-left: 15px;
    margin-bottom: 40px;
}

.yt-desc {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* ================== 4'LÜ ÖZELLİKLER ================== */
.yt-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.yt-feat {
    text-align: center;
}

.yt-feat i {
    color: var(--gold);
    font-size: 26px;
    margin-bottom: 10px;
}

.yt-feat span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ================== BUTONLAR ================== */
.yt-subscribe {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.yt-subscribe:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ================== PLAY TUŞU VE YANIP SÖNME EFEKTİ ================== */
/* Play tuşunu tam çizginin hizasına, 300px'e çektik */
.yt-play-btn {
    position: absolute;
    top: 50%;
    left: 300px; 
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--dark);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
    transition: transform 0.3s;
}

.yt-play-btn i {
    color: var(--gold);
    font-size: 35px;
    margin-left: 8px; 
}

.yt-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.yt-pulse {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    border: 2px solid var(--gold);
    animation: ytPulse 2s infinite;
}

@keyframes ytPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ================== YOUTUBE VİDEO MODAL (POPUP) ================== */
.yt-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.yt-modal-content {
    width: 80%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(179, 131, 77, 0.3);
}

.yt-close {
    position: absolute;
    top: 30px; right: 50px;
    font-size: 50px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}
.yt-close:hover { color: var(--gold); }

/* ================== MOBİL GÖRÜNÜM ================== */
.yt-mobile { display: none; padding: 20px; }

@media (max-width: 1024px) {
    .yt-desktop { display: none; }
    .yt-mobile { display: block; }
    
    .yt-title { font-size: 38px; }
    .yt-cursive { font-size: 50px; }
    
    .yt-mobile-img-wrapper {
        position: relative;
        margin: 30px 0;
        border-top: 2px solid var(--gold);
        border-bottom: 2px solid var(--gold);
        border-top-left-radius: 100px; 
        overflow: hidden;
        aspect-ratio: 4/3;
        cursor: pointer;
    }
    
    .yt-mobile-img-wrapper img {
        width: 100%; height: 100%;
        object-fit: cover;
    }
    
    .mobile-play {
        left: 50%;
        width: 70px; height: 70px;
    }
    .mobile-play i { font-size: 25px; }

    .yt-mobile-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: 1px solid #333;
        padding: 10px;
        border-radius: 8px;
    }
    
    .yt-youtube-brand {
        color: white;
        font-weight: 700;
        font-size: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .yt-youtube-brand i { color: red; font-size: 28px; }
}

@media (max-width: 500px) {
    .yt-features { gap: 5px; }
    .yt-feat span { font-size: 9px; }
    .yt-title { font-size: 32px; }
}