body {
    background: #050505;
}

.bg-grain {
    background-image:
        radial-gradient(circle at 20% 25%, rgba(229, 9, 20, 0.24), transparent 32%),
        radial-gradient(circle at 80% 15%, rgba(155, 0, 8, 0.25), transparent 30%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.35), #050505 80%);
}

.text-stroke {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
}

.icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.youtube-videos-section {
    padding: 90px 20px;
}

.youtube-videos-section .container {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.section-heading {
    margin-bottom: 36px;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.youtube-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.youtube-video-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: transparent;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.youtube-video-card:hover {
    background:
        linear-gradient(145deg, rgba(159, 0, 8, 0.78), rgba(5, 5, 5, 0.96) 52%, rgba(229, 9, 20, 0.2)),
        #090909;
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.youtube-thumbnail-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111;
}

.youtube-thumbnail {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.youtube-video-card:hover .youtube-thumbnail {
    transform: scale(1.04);
}

.youtube-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 21px;
    transform: translate(-50%, -50%);
}

.youtube-video-duration {
    position: absolute;
    top: 12px;
    right: 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.82);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    padding: 7px 9px;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.youtube-video-card:hover .youtube-video-duration {
    background: #e50914;
}

.youtube-video-content {
    padding: 18px;
}

.youtube-video-content h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.4;
}

.youtube-video-content h3 a {
    color: inherit;
    text-decoration: none;
}

.youtube-video-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.youtube-video-content time,
.youtube-video-views {
    opacity: 0.68;
    font-size: 13px;
}

.youtube-video-views {
    flex: 0 0 auto;
    text-align: right;
}

.youtube-load-more-wrap {
    margin-top: 38px;
    text-align: center;
}

.youtube-load-more {
    min-width: 160px;
    padding: 14px 24px;
    border: 1px solid currentColor;
    border-radius: 999px;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.youtube-view-all {
    display: inline-flex;
    min-width: 170px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(229, 9, 20, 0.85);
    border-radius: 999px;
    color: #e50914;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    padding: 14px 24px;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.youtube-view-all:hover {
    border-color: #e50914;
    background: #e50914;
    color: #fff;
}

.youtube-scroll-sentinel {
    display: block;
    width: 100%;
    height: 1px;
}

.youtube-loading,
.youtube-error {
    grid-column: 1 / -1;
    padding: 30px;
    text-align: center;
}

.streaming-section {
    overflow: hidden;
    border-bottom: 1px solid rgba(127, 29, 29, 0.35);
    background:
        radial-gradient(circle at 18% 20%, rgba(229, 9, 20, 0.18), transparent 30rem),
        linear-gradient(180deg, #050505 0%, #0b0b0b 52%, #050505 100%);
    padding: 82px 0;
}

.streaming-section__head {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto 34px;
    text-align: center;
}

.streaming-section__eyebrow {
    margin: 0 0 12px;
    color: #e50914;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.streaming-section__head h2 {
    margin: 0;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0;
    text-transform: uppercase;
}

.streaming-section__head p {
    max-width: 700px;
    margin: 16px auto 0;
    color: rgba(201, 201, 201, 0.78);
    font-size: 17px;
    line-height: 1.7;
}

.streaming-marquee {
    display: grid;
    gap: 18px;
}

.streaming-marquee__row {
    position: relative;
    overflow: hidden;
}

.streaming-marquee__row::before,
.streaming-marquee__row::after {
    position: absolute;
    top: 0;
    z-index: 2;
    width: min(14vw, 150px);
    height: 100%;
    content: "";
    pointer-events: none;
}

.streaming-marquee__row::before {
    left: 0;
    background: linear-gradient(90deg, #050505, transparent);
}

.streaming-marquee__row::after {
    right: 0;
    background: linear-gradient(270deg, #050505, transparent);
}

.streaming-marquee__track {
    display: flex;
    width: max-content;
    min-width: 200%;
    gap: 18px;
    animation: streaming-scroll 46s linear infinite;
    will-change: transform;
}

.streaming-marquee__row--reverse .streaming-marquee__track {
    animation-direction: reverse;
    animation-duration: 56s;
}

.streaming-marquee:hover .streaming-marquee__track,
.streaming-marquee:focus-within .streaming-marquee__track {
    animation-play-state: paused;
}

.streaming-card {
    --platform-accent: #e50914;
    display: flex;
    width: clamp(220px, 24vw, 310px);
    min-height: 92px;
    flex: 0 0 auto;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    color: #fff;
    padding: 18px;
    text-decoration: none;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.streaming-card:hover,
.streaming-card:focus-visible {
    border-color: var(--platform-accent);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    outline: none;
}

.streaming-card__mark {
    display: grid;
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--platform-accent);
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

.streaming-card__logo {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #fff;
    object-fit: cover;
}

.streaming-card strong,
.streaming-card em {
    display: block;
}

.streaming-card strong {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
}

.streaming-card em {
    margin-top: 3px;
    color: rgba(201, 201, 201, 0.72);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.streaming-card--spotify {
    --platform-accent: #1db954;
}

.streaming-card--apple,
.streaming-card--apple-music {
    --platform-accent: #fc3c44;
}

.streaming-card--amazon,
.streaming-card--amazon-music {
    --platform-accent: #00a8e1;
}

.streaming-card--youtube,
.streaming-card--youtube-channel,
.streaming-card--youtube-music {
    --platform-accent: #ff0033;
}

.streaming-card--jiosaavn {
    --platform-accent: #2bc5b4;
}

.streaming-card--gaana {
    --platform-accent: #e72c30;
}

.streaming-card--hungama {
    --platform-accent: #f58220;
}

.streaming-card--soundcloud {
    --platform-accent: #ff5500;
}

.streaming-card--deezer {
    --platform-accent: #a238ff;
}

@keyframes streaming-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.privacy-policy-page {
    background:
        radial-gradient(circle at top right, rgba(224, 0, 27, 0.12), transparent 32rem),
        #070707;
}

.privacy-policy {
    width: min(920px, calc(100% - 36px));
    margin: 0 auto;
    padding: 150px 0 90px;
    color: #f4f4f4;
    line-height: 1.75;
}

.privacy-policy a {
    color: #ff5b6f;
    text-underline-offset: 3px;
}

.privacy-policy__eyebrow {
    margin: 0 0 12px;
    color: #ff5b6f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.privacy-policy h1 {
    margin: 0;
    font-size: clamp(42px, 8vw, 76px);
    line-height: 1;
    letter-spacing: 0;
}

.privacy-policy__intro {
    max-width: 760px;
    color: #aaa;
    font-size: 18px;
}

.privacy-policy__updated {
    display: inline-block;
    margin-top: 14px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: #111;
    color: #aaa;
    font-size: 13px;
}

.privacy-policy__notice,
.privacy-policy__toc,
.privacy-policy__box {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: #111;
    padding: 24px;
}

.privacy-policy__notice {
    margin: 34px 0;
    border-color: rgba(224, 0, 27, 0.45);
    background: rgba(224, 0, 27, 0.12);
}

.privacy-policy__toc {
    margin: 38px 0 50px;
}

.privacy-policy__toc ol {
    columns: 2;
    padding-left: 22px;
}

.privacy-policy__toc li {
    break-inside: avoid;
    margin: 6px 0;
}

.privacy-policy section {
    margin-top: 52px;
    scroll-margin-top: 100px;
}

.privacy-policy h2 {
    margin: 0 0 14px;
    font-size: clamp(25px, 4vw, 34px);
    line-height: 1.2;
}

.privacy-policy h3 {
    margin: 26px 0 8px;
    font-size: 20px;
    font-weight: 800;
}

.privacy-policy p {
    margin: 0 0 15px;
}

.privacy-policy li {
    margin: 7px 0;
}

.privacy-policy__table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    margin-top: 20px;
}

.privacy-policy table {
    width: 100%;
    border-collapse: collapse;
    background: #111;
}

.privacy-policy th,
.privacy-policy td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
    vertical-align: top;
}

.privacy-policy th {
    background: #161616;
}

.privacy-policy tr:last-child td {
    border-bottom: 0;
}

.contact-page {
    background:
        radial-gradient(circle at 12% 8%, rgba(229, 9, 20, 0.2), transparent 28rem),
        radial-gradient(circle at 85% 18%, rgba(155, 0, 8, 0.16), transparent 30rem),
        #050505;
}

.contact {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 150px 0 90px;
}

.contact__hero {
    max-width: 820px;
}

.contact__eyebrow {
    margin: 0 0 12px;
    color: #ff5b6f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.contact__hero h1 {
    margin: 0;
    font-size: clamp(42px, 8vw, 76px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.contact__hero p {
    max-width: 720px;
    margin: 20px 0 0;
    color: #c9c9c9;
    font-size: 18px;
    line-height: 1.75;
}

.contact__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
    gap: 28px;
    margin-top: 44px;
    align-items: start;
}

.contact-form,
.contact__panel {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(17, 17, 17, 0.92);
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
}

.contact-form {
    padding: 28px;
}

.contact-form__head {
    margin-bottom: 24px;
}

.contact-form__head h2,
.contact__panel h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-form__field {
    display: grid;
    gap: 8px;
}

.contact-form__field + .contact-form__field,
.contact-form__grid + .contact-form__field {
    margin-top: 18px;
}

.contact-form__field label {
    color: #f4f4f4;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: #080808;
    color: #fff;
    padding: 12px 14px;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(229, 9, 20, 0.85);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.16);
}

.contact-form__trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.contact-form__recaptcha {
    margin-top: 18px;
}

.contact-form__check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 20px;
    color: #aaa;
    line-height: 1.6;
}

.contact-form__check input {
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
    margin-top: 3px;
    accent-color: #e50914;
}

.contact-form__submit,
.contact__social-link {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-form__submit {
    width: 100%;
    margin-top: 24px;
    border: 1px solid #e50914;
    background: #e50914;
    color: #fff;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.contact-form__submit:hover {
    background: #b80710;
    transform: translateY(-1px);
}

.contact__panel {
    padding: 26px;
}

.contact__panel-list {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.contact__panel-list div {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 18px;
}

.contact__panel-list strong {
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact__panel-list p {
    margin: 8px 0 0;
    color: #aaa;
    line-height: 1.7;
}

.contact__social-link {
    width: 100%;
    margin-top: 26px;
    border: 1px solid rgba(229, 9, 20, 0.75);
    color: #ff5b6f;
    text-decoration: none;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 22px;
    color: rgba(201, 201, 201, 0.72);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
}

.footer-links a:hover {
    color: #e50914;
}

@media (max-width: 900px) {
    .youtube-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact__layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .youtube-videos-section {
        padding: 65px 16px;
    }

    .youtube-video-grid {
        grid-template-columns: 1fr;
    }

    .privacy-policy {
        padding-top: 125px;
    }

    .privacy-policy__toc ol {
        columns: 1;
    }

    .contact {
        padding-top: 125px;
    }

    .contact-form,
    .contact__panel {
        padding: 22px;
    }

    .contact-form__grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .streaming-marquee__track {
        width: auto;
        min-width: 0;
        flex-wrap: wrap;
        justify-content: center;
        animation: none;
    }

    .streaming-card[aria-hidden="true"] {
        display: none;
    }
}
