:root {
    --mt-black: #030306;
    --mt-red: #ff1208;
    --mt-blue: #001f63;
    --mt-white: #ffffff;
    --mt-soft: rgba(255, 255, 255, 0.76);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--mt-black);
    color: var(--mt-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* ================= HEADER ================= */

.mt-floating-header {
    position: fixed;
    top: 38px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 54px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.mt-logo-wrap,
.mt-header-actions {
    pointer-events: auto;
}

.mt-logo-wrap img {
    width: 220px;
    max-height: 78px;
    object-fit: contain;
    filter: drop-shadow(0 0 24px rgba(0, 31, 99, 0.45));
}

.mt-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mt-demo-btn,
.mt-menu-btn {
    border: 1px solid rgba(255,255,255,0.18);
    height: 58px;
    border-radius: 999px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 800;
    letter-spacing: -0.02em;
    backdrop-filter: blur(20px);
    transition: 0.35s ease;
}

.mt-demo-btn {
    background: linear-gradient(135deg, var(--mt-red), #b00000);
    box-shadow: 0 0 36px rgba(255, 18, 8, 0.35);
}

.mt-demo-btn:hover {
    color: white;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 55px rgba(255, 18, 8, 0.7);
}

.mt-menu-btn {
    background: rgba(4, 7, 20, 0.52);
    cursor: pointer;
}

.mt-menu-btn i {
    color: var(--mt-red);
    transition: 0.35s ease;
}

.mt-menu-btn:hover {
    border-color: rgba(255, 18, 8, 0.65);
    box-shadow: 0 0 34px rgba(0, 31, 99, 0.75);
    transform: translateY(-3px);
}

.mt-menu-btn:hover i {
    transform: rotate(90deg);
}

.mt-floating-header{

    transition:
    transform .45s cubic-bezier(.22,.61,.36,1),
    opacity .35s;

}

.mt-header-hidden{

    transform:translateY(-150px);

    opacity:0;

}

/* ================= SIDEBAR ================= */

.mt-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(8px);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: 0.35s ease;
}

.mt-sidebar-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mt-sidebar {
    position: fixed;
    top: 0;
    right: -430px;
    width: 430px;
    height: 100vh;
    z-index: 1600;
    background:
        radial-gradient(circle at top right, rgba(255,18,8,0.28), transparent 35%),
        radial-gradient(circle at bottom left, rgba(0,31,99,0.65), transparent 42%),
        #050509;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding: 42px;
    transition: 0.45s cubic-bezier(.19,1,.22,1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mt-sidebar.active {
    right: 0;
}

.mt-close-btn {
    position: absolute;
    top: 32px;
    right: 34px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.04);
    color: white;
    transition: 0.3s ease;
}

.mt-close-btn:hover {
    background: var(--mt-red);
    transform: rotate(90deg);
}

.mt-sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mt-sidebar-links a {
    position: relative;
    color: white;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.05em;
    padding: 12px 0;
    transition: 0.35s ease;
}

.mt-sidebar-links a::before {
    content: "";
    position: absolute;
    left: -42px;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--mt-red);
    transition: 0.35s ease;
}

.mt-sidebar-links a:hover {
    color: var(--mt-red);
    padding-left: 20px;
    text-shadow: 0 0 22px rgba(255,18,8,0.65);
}

.mt-sidebar-links a:hover::before {
    width: 42px;
}

.mt-sidebar-demo {
    margin-top: 36px;
    height: 58px;
    border-radius: 999px;
    background: white;
    color: black;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.35s ease;
}

.mt-sidebar-demo:hover {
    background: var(--mt-red);
    color: white;
    box-shadow: 0 0 35px rgba(255,18,8,0.55);
}

/* ================= HERO ================= */

.mt-hero {
    position: relative;
    min-height: 97vh;
    overflow: hidden;
    background: black;
}

.mt-hero-video-link {
    position: absolute;
    inset: 0;
    display: block;
    color: white;
}

.mt-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.mt-hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.68) 0%,
        rgba(0,0,0,.38) 36%,
        rgba(0,0,0,.12) 72%,
        rgba(0,0,0,.32) 100%
    ),
    linear-gradient(
        180deg,
        rgba(0,0,0,.12),
        rgba(0,0,0,.42)
    );
}

.mt-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 170px;
    z-index: 6;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(3,3,6,0) 0%,
        rgba(3,3,6,0.58) 45%,
        rgba(3,3,6,1) 100%
    );
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.mt-stage-light{
    position:absolute;
    top:-250px;
    width:700px;
    height:120vh;
    filter:blur(120px);
    transform:rotate(25deg);
    pointer-events:none;
}

.mt-stage-left{
    left:-320px;
    background:linear-gradient(
        to bottom,
        rgba(0,35,130,.45),
        transparent
    );
}

.mt-stage-right{
    right:-320px;
    background:linear-gradient(
        to bottom,
        rgba(255,15,0,.25),
        transparent
    );
}

.mt-hero .container {
    position: relative;
    z-index: 4;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.mt-hero-content {
    max-width: 760px;
    padding-top: 90px;
}

.mt-hero h1 {
    font-size: clamp(43px, 6vw, 90px);
    line-height: 0.92;
    font-weight: 900;
    letter-spacing: -0.08em;
    margin-bottom: 26px;
    text-shadow: 0 0 48px rgba(0,31,99,0.55);
}

.mt-hero h1 span {
    display: block;
    color: var(--mt-red);
    text-shadow: 0 0 35px rgba(255,18,8,0.46);
}


/* ================= SOUND CONTROL ================= */

.mt-sound-control {
    position: absolute;
    right: 48px;
    bottom: 46px;
    z-index: 80;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    background:
        radial-gradient(circle, rgba(255,18,8,0.38), rgba(0,31,99,0.22), rgba(0,0,0,0.72));
    box-shadow:
        0 0 0 12px rgba(255,18,8,0.08),
        0 0 0 28px rgba(0,31,99,0.09),
        0 0 55px rgba(255,18,8,0.42);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: 0.35s ease;
}

.mt-sound-control:hover {
    transform: scale(1.08);
    box-shadow:
        0 0 0 14px rgba(255,18,8,0.12),
        0 0 0 34px rgba(0,31,99,0.14),
        0 0 75px rgba(255,18,8,0.66);
}

.mt-eq {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 28px;
}

.mt-eq i {
    width: 4px;
    border-radius: 8px;
    background: white;
    animation: mtEqualizer 0.8s infinite ease-in-out;
}

.mt-eq i:nth-child(1) { height: 10px; animation-delay: 0s; }
.mt-eq i:nth-child(2) { height: 20px; animation-delay: 0.1s; }
.mt-eq i:nth-child(3) { height: 14px; animation-delay: 0.2s; }
.mt-eq i:nth-child(4) { height: 24px; animation-delay: 0.3s; }
.mt-eq i:nth-child(5) { height: 12px; animation-delay: 0.4s; }

@keyframes mtEqualizer {
    0%, 100% { transform: scaleY(0.35); opacity: 0.55; }
    50% { transform: scaleY(1); opacity: 1; }
}

.mt-sound-icon {
    font-size: 22px;
}

/* ================= FOOTER ================= */

.mt-footer {
    position: relative;
    overflow: hidden;
    padding: 95px 0 28px;
    background:
        linear-gradient(180deg, #030306, #050510 55%, #020205);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.mt-footer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.mt-footer-glow-one {
    width: 420px;
    height: 420px;
    left: -120px;
    top: 10px;
    background: rgba(0,31,99,0.72);
}

.mt-footer-glow-two {
    width: 360px;
    height: 360px;
    right: -80px;
    bottom: -80px;
    background: rgba(255,18,8,0.32);
}

.mt-footer-inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}

.mt-footer-brand img {
    width: 190px;
    margin-bottom: 22px;
}

.mt-footer p {
    color: rgba(255,255,255,0.66);
    line-height: 1.8;
    max-width: 390px;
}

.mt-footer h4 {
    color: white;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
    margin-bottom: 22px;
}

.mt-footer a {
    display: block;
    color: rgba(255,255,255,0.62);
    margin-bottom: 11px;
    font-size: 14px;
    transition: 0.3s ease;
}

.mt-footer a:hover {
    color: var(--mt-red);
    padding-left: 6px;
}

.mt-socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.mt-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: white;
}

.mt-socials a:hover {
    background: var(--mt-red);
    padding-left: 0;
    transform: translateY(-4px);
}

.mt-footer-bottom {
    position: relative;
    z-index: 3;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 52px;
    padding-top: 24px;
    color: rgba(255,255,255,0.48);
    font-size: 13px;
    text-align: center;      /* Center the entire line */
}

.mt-footer-bottom a {
    display: inline;
    color: white;
    margin: 0;
}

/* ================= FLOATING WHATSAPP ================= */

.mt-floating-whatsapp{

    position:fixed;

    right:28px;

    bottom:28px;

    z-index:9999;

    width:62px;
    height:62px;

    border-radius:50%;

    background:rgba(255,15,0,.12);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,20,20,.45);

    color:#ff2b20;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    box-shadow:
        0 10px 35px rgba(0,0,0,.35),
        0 0 25px rgba(255,18,8,.22);

    transition:.35s ease;
}

.mt-floating-whatsapp:hover{

    background:#ff1208;

    color:#fff;

    transform:translateY(-5px) scale(1.08);

    box-shadow:
        0 12px 45px rgba(255,18,8,.45),
        0 0 40px rgba(255,18,8,.35);
}

.mt-floating-whatsapp i{

    line-height:1;

    pointer-events:none;
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {

    /* HEADER */

    .mt-floating-header{
        top:20px;
        padding:0 18px;
        gap:12px;
    }

    .mt-logo-wrap img{
        width:145px;
        max-height:56px;
    }

    .mt-header-actions{
        gap:10px;
    }

    .mt-demo-btn{
        display:flex;
        align-items:center;
        justify-content:center;
        height:48px;
        padding:0 18px;
        font-size:12px;
        font-weight:800;
        white-space:nowrap;
        border-radius:999px;
    }

    .mt-demo-btn i{
        display:none;
    }

    .mt-menu-btn{
        width:50px;
        height:50px;
        padding:0;
        justify-content:center;
    }

    .mt-menu-btn span{
        display:none;
    }

    /* SIDEBAR */

    .mt-sidebar{
        width:88%;
        right:-88%;
        padding:34px;
    }

    .mt-sidebar-links a{
        font-size:25px;
    }

    /* HERO */

    .mt-hero{
        min-height:60svh;
    }

    .mt-hero .container{
        min-height:60svh;
        display:flex;
        align-items:center;
        padding-top:95px;
        padding-bottom:85px;
    }

    .mt-hero-content{
        max-width:92%;
        padding-top:0;
        transform:none;
    }

    .mt-hero h1{
        font-size:52px;
        line-height:.92;
        letter-spacing:-.075em;
        margin:0;
    }

    /* SOUND BUTTON */

    .mt-sound-control{
        width:72px;
        height:72px;
        right:18px;
        bottom:35px;
    }

    /* LATEST SECTION */

    .mt-latest-strip{
        margin-top:-70px;
    }

    /* FOOTER */

     .mt-footer-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 34px 28px;
        }
    
        .mt-footer-brand {
            grid-column: auto;
        }
    
        .mt-footer-brand img {
            width: 150px;
        }
    
        .mt-footer p {
            font-size: 13px;
            line-height: 1.7;
        }
    }



/* ================= SMALL MOBILE ================= */

@media (max-width:575px){

    /* HEADER */

    .mt-floating-header{
        top:18px;
        padding:0 14px;
    }

    .mt-logo-wrap img{
        width:135px;
    }

    .mt-demo-btn{
        display:flex;
        align-items:center;
        justify-content:center;
        height:44px;
        padding:0 15px;
        font-size:11px;
        font-weight:800;
    }

    .mt-demo-btn i{
        display:none;
    }

    .mt-menu-btn{
        width:46px;
        height:46px;
    }

    /* HERO */

    .mt-hero{
        min-height:72svh;
    }

    .mt-hero .container{
        min-height:72svh;
        padding-top:90px;
        padding-bottom:70px;
    }

    .mt-hero-content{
        max-width:95%;
    }

    .mt-hero h1{
        font-size:48px;
        line-height:.92;
    }

    .mt-sound-control{
        width:68px;
        height:68px;
        right:16px;
        bottom:30px;
    }

    /* FOOTER */

    .mt-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px 22px;
    }

    .mt-footer h4 {
        font-size: 11px;
    }

    .mt-footer a {
        font-size: 12px;
    }

    .mt-footer p {
        font-size: 12px;
    }
}

/* ================= LATEST VIDEOS OVERLAP ================= */

.mt-latest-strip {
    position: relative;
    z-index: 40;
    background: transparent;
    padding: 0 0 95px;
    margin-top: -190px;
}

.mt-latest-inner {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 18px;
}

.mt-latest-video-card {
    position: relative;
    display: block;
    width: 250px;
    height: 360px;
    overflow: hidden;
    background: #07070b;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 28px 70px rgba(0,0,0,0.65);
    transition: 0.45s cubic-bezier(.19,1,.22,1);
}

.mt-latest-video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
    transform: scale(1.03);
    transition: 0.45s cubic-bezier(.19,1,.22,1);
}

.mt-latest-video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.72)),
        linear-gradient(90deg, rgba(0,31,99,0.12), rgba(255,18,8,0.1));
    pointer-events: none;
}

.mt-latest-card-one,
.mt-latest-card-three {
    transform: translateY(28px);
}

.mt-latest-card-two {
    height: 390px;
    transform: translateY(0);
}

.mt-latest-video-card:hover {
    z-index: 5;
    transform: translateY(-14px) scale(1.03);
    border-color: rgba(255,18,8,0.55);
    box-shadow:
        0 35px 90px rgba(0,0,0,0.78),
        0 0 36px rgba(255,18,8,0.24);
}

.mt-latest-video-card:hover video {
    opacity: 1;
    transform: scale(1.1);
}

.mt-latest-view-more {
    margin-left: 18px;
    margin-bottom: 36px;
    height: 48px;
    padding: 0 22px;
    border: 1px solid rgba(255,255,255,0.35);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: 0.35s ease;
}

.mt-latest-view-more:hover {
    background: white;
    color: black;
    transform: translateX(6px);
}

.mt-video-info{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:4;

    padding:18px;

    background:linear-gradient(
        180deg,
        transparent,
        rgba(0,0,0,.92)
    );

    transition:.35s;
}

.mt-video-info h5{

    margin:0;

    font-size:19px;

    font-weight:800;

    color:#fff;

    line-height:1.15;

    text-shadow:0 2px 10px rgba(0,0,0,.5);

}

.mt-video-info span{

    display:block;

    margin-top:6px;

    color:rgba(255,255,255,.72);

    font-size:13px;

    font-weight:500;

    transition:.35s;

}

.mt-latest-video-card:hover .mt-video-info{

    padding-bottom:26px;

}

.mt-latest-video-card:hover .mt-video-info span{

    color:#ff1208;

}

/* MOBILE LATEST */

@media (max-width: 991px) {
    .mt-latest-strip {
        margin-top: -125px;
        padding-bottom: 70px;
    }

    .mt-latest-inner {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 8px 18px;
        gap: 14px;
        scrollbar-width: none;
    }

    .mt-latest-inner::-webkit-scrollbar {
        display: none;
    }

    .mt-latest-video-card {
        min-width: 190px;
        width: 190px;
        height: 285px;
        transform: none !important;
    }

    .mt-latest-card-two {
        height: 310px;
    }

    .mt-latest-view-more {
        min-width: 120px;
        margin: 0 0 28px 4px;
    }
}

/* ================= ARTISTS ================= */

.mt-artists-section {
    position: relative;
    padding: 110px 0;
    background:
        linear-gradient(180deg, #030306 0%, #070713 48%, #030306 100%);
    overflow: hidden;
}

.mt-artists-section::before {
    content: "";
    position: absolute;
    inset: 12% 8%;
    border: 1px solid rgba(255,255,255,0.06);
    transform: skewY(-3deg);
    pointer-events: none;
}

.mt-section-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 55px;
}

.mt-section-heading span {
    display: block;
    color: #ff1208;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 12px;
}

.mt-section-heading h2 {
    color: white;
    font-size: clamp(38px, 5vw, 72px);
    font-weight: 900;
    letter-spacing: -0.06em;
}

.mt-artists-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 420px));
    justify-content: center;
    gap: 34px;
}

.mt-artist-card {
    position: relative;
    height: 560px;
    overflow: hidden;
    color: white;
    background: #08080d;
    border: 1px solid rgba(255,255,255,0.12);
    clip-path: polygon(0 0, 92% 0, 100% 10%, 100% 100%, 8% 100%, 0 90%);
    box-shadow: 0 35px 90px rgba(0,0,0,0.55);
    transition: 0.55s cubic-bezier(.19,1,.22,1);
}

.mt-artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.08);
    transform: scale(1.06);
    transition: 0.65s cubic-bezier(.19,1,.22,1);
}

.mt-artist-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.88)),
        linear-gradient(120deg, rgba(0,31,99,0.35), transparent 45%, rgba(255,18,8,0.22));
    opacity: 0.75;
    transition: 0.45s ease;
}

.mt-artist-shine {
    position: absolute;
    top: -40%;
    left: -80%;
    width: 70%;
    height: 180%;
    z-index: 3;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.18),
        transparent
    );
    transform: rotate(18deg);
    transition: 0.7s ease;
}

.mt-artist-name {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    transform: translateY(28px) scale(0.95);
    transition: 0.55s cubic-bezier(.19,1,.22,1);
    text-align: center;
    padding: 30px;
}

.mt-artist-name span {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.mt-artist-name h3 {
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 900;
    letter-spacing: -0.06em;
    color: white;
    text-shadow:
        0 0 24px rgba(255,18,8,0.55),
        0 0 44px rgba(0,31,99,0.65);
    margin-bottom: 16px;
}

.mt-artist-name i {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ff1208;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 0 34px rgba(255,18,8,0.55);
}

.mt-artist-card:hover {
    transform: translateY(-18px);
    border-color: rgba(255,18,8,0.45);
}

.mt-artist-card:hover img {
    transform: scale(1.16);
    filter: grayscale(0%) contrast(1.15) brightness(0.75);
}

.mt-artist-card:hover::after {
    opacity: 1;
    background:
        radial-gradient(circle at center, rgba(255,18,8,0.18), rgba(0,0,0,0.88) 62%),
        linear-gradient(120deg, rgba(0,31,99,0.5), transparent 42%, rgba(255,18,8,0.25));
}

.mt-artist-card:hover .mt-artist-shine {
    left: 120%;
}

.mt-artist-card:hover .mt-artist-name {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* MOBILE ARTISTS */

@media (max-width: 991px) {
    .mt-artists-section {
        padding: 80px 0;
    }

    .mt-artists-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mt-artist-card {
        height: 470px;
        clip-path: polygon(0 0, 94% 0, 100% 8%, 100% 100%, 6% 100%, 0 92%);
    }
}

@media (max-width: 575px) {
    .mt-artist-card {
        height: 390px;
    }

    .mt-section-heading {
        margin-bottom: 36px;
    }
}

/* ================= CREATION / CTA ================= */

.mt-creation-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        linear-gradient(180deg, #030306 0%, #070713 50%, #030306 100%);
}

.mt-creation-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(300deg, rgba(0,31,99,0.28), transparent 42%);
    pointer-events: none;
}

.mt-creation-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 58px;
    align-items: center;
}

.mt-mini-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff1208;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.mt-mini-label::before {
    content: "";
    width: 34px;
    height: 2px;
    background: #ff1208;
}

.mt-creation-text h2 {
    color: white;
    font-size: clamp(42px, 5vw, 76px);
    line-height: 0.94;
    font-weight: 900;
    letter-spacing: -0.075em;
    margin-bottom: 24px;
}

.mt-creation-text h2 span {
    display: block;
    color: #ff1208;
}

.mt-creation-text p {
    max-width: 520px;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 28px;
}

.mt-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.mt-service-tags span {
    min-height: 44px;
    padding: 0 15px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.045);
    color: rgba(255,255,255,0.82);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
}

.mt-service-tags i {
    color: #ff1208;
    font-size: 16px;
}

.mt-creation-btn {
    height: 58px;
    padding: 0 25px;
    border-radius: 999px;
    background: white;
    color: black;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.35s ease;
}

.mt-creation-btn:hover {
    background: #ff1208;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 0 40px rgba(255,18,8,0.42);
}

.mt-creation-photo-wrap {
    position: relative;
    height: 560px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 35px 95px rgba(0,0,0,0.55);
    clip-path: polygon(0 0, 96% 0, 100% 8%, 100% 100%, 4% 100%, 0 92%);
}

.mt-creation-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
    transition: 0.65s cubic-bezier(.19,1,.22,1);
}

.mt-creation-photo-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.35), transparent 45%),
        linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.88));
    pointer-events: none;
}

.mt-creation-photo-wrap:hover img {
    transform: scale(1.09);
}

.mt-photo-label {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 3;
    padding: 13px 18px;
    border-radius: 999px;
    background: rgba(0,0,0,0.58);
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(16px);
    color: white;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.mt-photo-label i {
    color: #ff1208;
    font-size: 18px;
}

/* MOBILE CTA */

@media (max-width: 991px) {
    .mt-creation-section {
        padding: 85px 0;
    }

    .mt-creation-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .mt-creation-photo-wrap {
        height: 430px;
    }
}

@media (max-width: 575px) {
    .mt-creation-text h2 {
        font-size: 43px;
    }

    .mt-creation-photo-wrap {
        height: 330px;
    }

    .mt-service-tags span {
        width: 100%;
    }

    .mt-photo-label {
        left: 16px;
        right: 16px;
        justify-content: center;
        text-align: center;
    }
}

/* ================= LISTEN TO MUSIC ================= */

.mt-music-section {
    position: relative;
    padding: 60px 0;
    background:
        radial-gradient(circle at 85% 50%, rgba(0,31,99,0.28), transparent 34%),
        #030306;
    overflow: hidden;
}

.mt-music-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.mt-music-left h2 {
    color: white;
    font-size: clamp(40px, 4vw, 72px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.07em;
    margin-bottom: 36px;
}

.mt-music-left h2 span {
    display: block;
    color: #ff1208;
}

.mt-audio-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mt-track {
    position: relative;
    width: 100%;
    min-height: 82px;
    border: 1px solid rgba(255,255,255,0.1);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.065), rgba(255,255,255,0.02));
    color: white;
    display: grid;
    grid-template-columns: 48px 1fr 46px;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    text-align: left;
    overflow: hidden;
    transition: 0.35s ease;
}

.mt-track::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,18,8,0.18), transparent 55%);
    opacity: 0;
    transition: 0.35s ease;
}

.mt-track-number,
.mt-track-info,
.mt-track i {
    position: relative;
    z-index: 2;
}

.mt-track-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.68);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
}

.mt-track-info strong {
    display: block;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.mt-track-info small {
    color: rgba(255,255,255,0.56);
    font-size: 12px;
    font-weight: 600;
}

.mt-progress-wrap {
    position: relative;
    display: block;
    width: 100%;
    height: 5px;
    margin-top: 11px;
    border-radius: 999px;
    background: rgba(255,255,255,0.13);
    overflow: hidden;
    cursor: pointer;
}

.mt-progress-bar {
    display: block;
    width: 0%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff1208, #ffffff);
    transition: width 0.08s linear;
}

.mt-track.active .mt-progress-wrap {
    background: rgba(255,255,255,0.2);
}

.mt-track.active .mt-progress-bar {
    box-shadow: 0 0 14px rgba(255,18,8,0.65);
}

.mt-track i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.mt-track:hover,
.mt-track.active {
    transform: translateX(10px);
    border-color: rgba(255,18,8,0.38);
    box-shadow: 0 18px 55px rgba(0,0,0,0.38);
}

.mt-track:hover::before,
.mt-track.active::before {
    opacity: 1;
}

.mt-track.active .mt-track-number,
.mt-track.active i {
    background: #ff1208;
    color: white;
}

.mt-music-cover-wrap {
    position: relative;
    height: 730px;
    overflow: hidden;
    background: #08080d;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 35px 95px rgba(0,0,0,0.6);
    clip-path: polygon(0 0, 95% 0, 100% 9%, 100% 100%, 5% 100%, 0 91%);
}

.mt-music-cover-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s cubic-bezier(.19,1,.22,1);
}

.mt-music-cover-wrap.is-changing img {
    opacity: 0;
    transform: scale(1.08);
}

.mt-music-cover-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.92)),
        linear-gradient(90deg, rgba(0,31,99,0.18), rgba(255,18,8,0.13));
    pointer-events: none;
}

.mt-music-cover-glass {
    position: absolute;
    inset: 22px;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.09);
    pointer-events: none;
}

.mt-now-playing {
    position: absolute;
    left: 34px;
    bottom: 34px;
    z-index: 4;
}

.mt-now-playing span {
    display: inline-block;
    color: #ff1208;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.mt-now-playing h3 {
    color: white;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 900;
    letter-spacing: -0.06em;
    margin: 0;
}

.mt-now-playing p {
    color: rgba(255,255,255,0.72);
    margin: 6px 0 0;
    font-weight: 600;
}

/* MOBILE MUSIC */

@media (max-width: 991px) {
    .mt-music-section {
        padding: 85px 0;
    }

    .mt-music-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mt-track {
        min-height: 76px;
        transform: none !important;
    }

    .mt-music-cover-wrap {
        height: 430px;
    }
}

@media (max-width: 575px) {
    .mt-music-left h2 {
        font-size: 42px;
    }

    .mt-track {
        grid-template-columns: 40px 1fr 40px;
        padding: 14px;
        gap: 10px;
    }

    .mt-music-cover-wrap {
        height: 340px;
    }

    .mt-now-playing {
        left: 22px;
        right: 22px;
        bottom: 24px;
    }

    .mt-now-playing h3 {
        font-size: 34px;
    }
}

/* ================= PARTY WITH US ================= */

.mt-party-section {
    position: relative;
    padding: 125px 0;
    overflow: hidden;
    background: #030306;
}

.mt-party-bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/bg.png");
    background-size: cover;
    background-position: center;
    opacity: 0.42;
    transform: scale(1.06);
}

.mt-party-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3,3,6,0.94), rgba(3,3,6,0.66) 42%, rgba(3,3,6,0.96)),
        linear-gradient(90deg, rgba(0,31,99,0.38), rgba(255,18,8,0.18));
}

.mt-party-heading {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto 58px;
    text-align: center;
}

.mt-party-heading span {
    display: block;
    color: #ff1208;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    margin-bottom: 14px;
}

.mt-party-heading h2 {
    color: white;
    font-size: clamp(42px, 6vw, 82px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.075em;
    margin-bottom: 22px;
}

.mt-party-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255,255,255,0.72);
    font-size: 16px;
    line-height: 1.85;
}

.mt-party-videos {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 220px);
    justify-content: center;
    gap: 60px;
}

.mt-party-card {
    position: relative;
    display: block;
    width: 270px;
    height: 410px;
    overflow: hidden;
    background: #08080d;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 28px 80px rgba(0,0,0,0.62);
    border-radius: 0;
    transition: .45s cubic-bezier(.19,1,.22,1);
}

.mt-party-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.86;
    transform: scale(1.03);
    transition: 0.45s cubic-bezier(.19,1,.22,1);
}

.mt-party-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.76)),
        linear-gradient(120deg, rgba(0,31,99,0.18), rgba(255,18,8,0.14));
    pointer-events: none;
}

.mt-party-card:hover {
    transform: translateY(-16px) scale(1.025);
    border-color: rgba(255,18,8,0.52);
    box-shadow:
        0 35px 95px rgba(0,0,0,0.75),
        0 0 34px rgba(255,18,8,0.22);
}

.mt-party-card:hover video {
    opacity: 1;
    transform: scale(1.1);
}

.mt-party-action {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.mt-party-btn {
    height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    transition: 0.35s ease;
}

.mt-party-btn:hover {
    background: #ff1208;
    color: white;
    border-color: #ff1208;
    transform: translateY(-4px);
    box-shadow: 0 0 38px rgba(255,18,8,0.45);
}

/* MOBILE PARTY */

/* ================= MOBILE PARTY ================= */

@media (max-width: 991px) {

    .mt-party-section{
        padding:90px 0;
    }

    .mt-party-videos{

        display:flex;
        flex-wrap:nowrap;

        justify-content:flex-start;

        overflow-x:auto;
        overflow-y:hidden;

        gap:18px;

        padding:0 20px 18px;

        scroll-snap-type:x mandatory;

        -webkit-overflow-scrolling:touch;

        scrollbar-width:none;

    }

    .mt-party-videos::-webkit-scrollbar{
        display:none;
    }

    .mt-party-card{

        flex:0 0 auto;

        width:185px;
        min-width:185px;

        height:330px;

        border-radius:0;

        scroll-snap-align:center;

    }

}

@media (max-width:575px){

    .mt-party-heading h2{
        font-size:43px;
    }

    .mt-party-heading p{
        font-size:14px;
    }

    .mt-party-videos{

        padding-left:16px;
        padding-right:16px;

    }

    .mt-party-card{

        width:165px;
        min-width:165px;

        height:295px;

    }

}