/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Braah+One&family=Be+Vietnam+Pro:wght@400;600&display=swap');

/* 🔥 SCOPED VARIABLES */
.nv-yt-wrapper {
    --primary-blue: #1C2E5A;
    --yt-red: #CC0000;
    --yt-red-hover: #FF0000;
    --text-light: #ffffff;

    background-color: var(--primary-blue);
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* Reset inside widget */
.nv-yt-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --- HEADER --- */
.nv-yt-header {
    text-align: center;
    margin-bottom: 40px;
}

.nv-yt-logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.nv-yt-logo-row img {
    width: 55px;
    height: auto;
}

.nv-yt-title {
    font-family: 'Braah One', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    text-transform: uppercase;
}

/* --- IMAGE SECTION --- */
.nv-yt-preview-container {
    position: relative;
    max-width: 1000px;
    width: 100%;
}

.nv-yt-img-frame {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.nv-yt-main-img {
    width: 100%;
    display: block;
    opacity: 0.5;
}

/* --- BADGE --- */
.nv-yt-badge-wrap {
    position: absolute;
    width: 22%;
    min-width: 140px;
    max-width: 240px;
    bottom: -6%;
    right: -3%;
    z-index: 10;

    opacity: 0;
    transform: translateY(30px) rotate(8deg) scale(0.85);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.nv-yt-badge-wrap img {
    width: 100%;
    height: auto;
}

/* --- BUTTON --- */
.nv-yt-footer {
    margin-top: 45px;
}

.nv-yt-btn {
    background-color: var(--yt-red);
    color: #fff;
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;

    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}

.nv-yt-btn:hover {
    transform: translateY(-2px);
    background-color: var(--yt-red-hover);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.nv-yt-btn i {
    font-size: 22px;
}

/* --- MOBILE --- */
@media (max-width: 768px) {

    .nv-yt-wrapper {
        padding: 40px 15px;
    }

    .nv-yt-title {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .nv-yt-badge-wrap {
        width: 26%;
        min-width: 100px;
        right: -2%;
        bottom: -4%;
    }

    .nv-yt-btn {
        padding: 12px 28px;
        font-size: 16px;
    }
}