       /* =====================================================
           RESET
        ====================================================== */

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }


        html {
            width: 100%;
            max-width: 100%;

            scroll-behavior: smooth;

            overflow-x: hidden;
        }


        body {
            width: 100%;
            max-width: 100%;

            min-width: 0;

            overflow-x: hidden;

            font-family: "Inter", Arial, sans-serif;

            background: #ffffff;

            color: #111111;

            line-height: 1.5;

            padding-bottom: 80px;
        }


        img {
            display: block;

            max-width: 100%;
        }


        a {
            color: inherit;

            text-decoration: none;
        }


        button,
        input {
            font-family: inherit;
        }


        button {
            cursor: pointer;
        }


        ul {
            list-style: none;
        }


        /* =====================================================
           VARIABLES
        ====================================================== */

        :root {

            --black: #0b0b0b;

            --dark: #151515;

            --gray-900: #222222;

            --gray-700: #555555;

            --gray-500: #888888;

            --gray-300: #dddddd;

            --gray-200: #eeeeee;

            --gray-100: #f7f7f7;

            --white: #ffffff;

            --red: #e30613;

            --red-dark: #bd000a;

            --red-light: #fff1f2;

            --border: #e9e9e9;

            --container: 1380px;

            --radius-sm: 10px;

            --radius-md: 16px;

            --radius-lg: 22px;

            --radius-xl: 28px;

            --shadow:
                0 10px 35px rgba(0, 0, 0, 0.07);

            --shadow-hover:
                0 18px 45px rgba(0, 0, 0, 0.12);
        }


        /* =====================================================
           GLOBAL CONTAINER
        ====================================================== */

        .container {

            width: 100%;

            max-width: var(--container);

            margin: 0 auto;

            padding-left: 16px;

            padding-right: 16px;
        }


        /* =====================================================
           TOP BAR
        ====================================================== */

        .top-bar {

            width: 100%;

            background: var(--black);

            color: #ffffff;

            font-size: 11px;
        }


        .top-bar-inner {

            width: 100%;

            min-height: 36px;

            display: flex;

            align-items: center;

            justify-content: space-between;

            gap: 15px;
        }


        .top-left {

            color: #cccccc;

            white-space: nowrap;

            overflow: hidden;

            text-overflow: ellipsis;
        }


        .top-left strong {

            color: #ffffff;
        }


        .top-social {

            display: flex;

            align-items: center;

            gap: 13px;

            flex-shrink: 0;
        }


        .top-social a {

            color: #aaaaaa;

            transition: 0.2s;
        }


        .top-social a:hover {

            color: #ffffff;
        }


        /* =====================================================
           HEADER
        ====================================================== */

        .header {

            position: sticky;

            top: 0;

            z-index: 1000;

            width: 100%;

            background: rgba(255,255,255,0.94);

            backdrop-filter: blur(18px);

            -webkit-backdrop-filter: blur(18px);

            border-bottom: 1px solid var(--border);
        }


        .header-inner {

            min-height: 78px;

            display: flex;

            align-items: center;

            justify-content: space-between;

            gap: 25px;
        }


        /* =====================================================
           LOGO
        ====================================================== */

        .brand {

            display: flex;

            align-items: center;

            gap: 10px;

            flex-shrink: 0;
        }


        .brand-icon {

            width: 42px;

            height: 42px;

            display: grid;

            place-items: center;

            border-radius: 12px;

            background: var(--red);

            color: #ffffff;

            font-size: 18px;

            font-weight: 900;

            box-shadow:
                0 7px 18px rgba(227, 6, 19, 0.22);
        }


        .brand-text {

            display: flex;

            flex-direction: column;

            line-height: 1;
        }


        .brand-name {

            font-size: 19px;

            font-weight: 900;

            letter-spacing: -0.8px;

            color: var(--black);
        }


        .brand-zone {

            color: var(--red);

            font-size: 10px;

            font-weight: 800;

            letter-spacing: 2px;

            margin-top: 5px;

            text-transform: uppercase;
        }


        /* =====================================================
           DESKTOP NAVIGATION
        ====================================================== */

        .main-nav {

            display: none;

            align-items: center;

            gap: 2px;
        }


        .nav-item {

            position: relative;
        }


        .nav-link {

            display: flex;

            align-items: center;

            gap: 6px;

            padding: 11px 12px;

            border-radius: 9px;

            color: #444444;

            font-size: 13px;

            font-weight: 600;

            white-space: nowrap;

            transition: 0.2s;
        }


        .nav-link:hover,
        .nav-link.active {

            color: var(--red);

            background: var(--red-light);
        }


        .nav-link i {

            font-size: 9px;
        }


        /* =====================================================
           DROPDOWN
        ====================================================== */

        .dropdown {

            position: absolute;

            top: calc(100% + 8px);

            left: 0;

            min-width: 210px;

            padding: 8px;

            background: #ffffff;

            border: 1px solid var(--border);

            border-radius: 14px;

            box-shadow: var(--shadow);

            opacity: 0;

            visibility: hidden;

            transform: translateY(8px);

            transition:
                opacity .2s ease,
                transform .2s ease,
                visibility .2s ease;
        }


        .nav-item:hover .dropdown {

            opacity: 1;

            visibility: visible;

            transform: translateY(0);
        }


        .dropdown a {

            display: flex;

            align-items: center;

            gap: 10px;

            padding: 10px 12px;

            border-radius: 8px;

            color: #555555;

            font-size: 12px;

            transition: .2s;
        }


        .dropdown a:hover {

            background: var(--gray-100);

            color: var(--red);
        }


        .dropdown a i {

            width: 16px;

            color: var(--red);
        }


        /* =====================================================
           HEADER ACTIONS
        ====================================================== */

        .header-actions {

            display: flex;

            align-items: center;

            gap: 8px;

            flex-shrink: 0;
        }


        .search-btn,
        .mobile-menu-btn {

            width: 40px;

            height: 40px;

            display: grid;

            place-items: center;

            border: 1px solid var(--border);

            border-radius: 50%;

            background: #ffffff;

            color: #333333;

            transition: .2s;
        }


        .search-btn:hover,
        .mobile-menu-btn:hover {

            border-color: var(--red);

            color: var(--red);
        }


        .mobile-menu-btn {

            display: grid;
        }


        /* =====================================================
           MOBILE MENU
        ====================================================== */

        .mobile-menu {

            position: fixed;

            top: 0;

            right: 0;

            bottom: 0;

            width: min(330px, 88vw);

            z-index: 3000;

            background: #ffffff;

            box-shadow:
                -15px 0 45px rgba(0,0,0,.12);

            padding: 25px;

            transform: translateX(110%);

            transition: .3s;

            overflow-y: auto;
        }


        .mobile-menu.open {

            transform: translateX(0);
        }


        .mobile-menu-header {

            display: flex;

            align-items: center;

            justify-content: space-between;

            padding-bottom: 20px;

            border-bottom: 1px solid var(--border);

            margin-bottom: 15px;
        }


        .mobile-close {

            width: 38px;

            height: 38px;

            border: 0;

            border-radius: 50%;

            background: var(--gray-100);

            color: #333333;
        }


        .mobile-link {

            display: flex;

            align-items: center;

            justify-content: space-between;

            padding: 14px 4px;

            border-bottom: 1px solid var(--border);

            font-size: 14px;

            font-weight: 600;
        }


        .mobile-link span {

            display: flex;

            align-items: center;

            gap: 10px;
        }


        .mobile-link i {

            color: var(--red);

            width: 20px;
        }


        /* =====================================================
           SEARCH OVERLAY
        ====================================================== */

        .search-overlay {

            position: fixed;

            inset: 0;

            z-index: 4000;

            background: rgba(255,255,255,.97);

            backdrop-filter: blur(20px);

            display: none;

            align-items: flex-start;

            justify-content: center;

            padding: 100px 20px;
        }


        .search-overlay.open {

            display: flex;
        }


        .search-box {

            width: 100%;

            max-width: 700px;

            position: relative;
        }


        .search-input {

            width: 100%;

            height: 65px;

            padding: 0 60px 0 22px;

            border: 1px solid #dddddd;

            border-radius: 18px;

            outline: none;

            font-size: 18px;

            box-shadow: var(--shadow);
        }


        .search-input:focus {

            border-color: var(--red);
        }


        .search-close {

            position: absolute;

            right: 15px;

            top: 50%;

            transform: translateY(-50%);

            width: 38px;

            height: 38px;

            border: 0;

            border-radius: 50%;

            background: var(--gray-100);
        }


        /* =====================================================
           BREAKING / SCROLLING BANNER
        ====================================================== */

        .breaking {

            width: 100%;

            overflow: hidden;

            background: var(--red);

            color: #ffffff;
        }


        .breaking-inner {

            min-height: 42px;

            display: flex;

            align-items: center;

            overflow: hidden;
        }


        .breaking-label {

            position: relative;

            z-index: 2;

            display: flex;

            align-items: center;

            gap: 7px;

            flex-shrink: 0;

            height: 42px;

            padding-right: 20px;

            background: var(--red);

            font-size: 10px;

            font-weight: 900;

            text-transform: uppercase;

            letter-spacing: .8px;
        }


        .breaking-label i {

            font-size: 9px;
        }


        .ticker {

            min-width: 0;

            overflow: hidden;

            white-space: nowrap;
        }


        .ticker-track {

            display: inline-block;

            padding-left: 30px;

            animation:
                ticker 25s linear infinite;
        }


        .ticker-item {

            display: inline-flex;

            align-items: center;

            gap: 8px;

            margin-right: 45px;

            font-size: 11px;

            font-weight: 500;
        }


        .ticker-item::before {

            content: "";

            width: 5px;

            height: 5px;

            border-radius: 50%;

            background: #ffffff;
        }


        @keyframes ticker {

            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }


        /* =====================================================
           HERO
        ====================================================== */

        .hero {

            width: 100%;

            padding: 25px 0 10px;
        }


        .hero-grid {

            display: grid;

            grid-template-columns: 1fr;

            gap: 14px;
        }


        .hero-main {

            position: relative;

            min-width: 0;

            min-height: 390px;

            border-radius: var(--radius-xl);

            overflow: hidden;

            background: #111111;
        }


        .hero-main img {

            width: 100%;

            height: 100%;

            min-height: 390px;

            object-fit: cover;

            transition: transform .5s;
        }


        .hero-main:hover img {

            transform: scale(1.025);
        }


        .hero-main::after {

            content: "";

            position: absolute;

            inset: 0;

            background:
                linear-gradient(
                    180deg,
                    rgba(0,0,0,0) 25%,
                    rgba(0,0,0,.88) 100%
                );
        }


        .hero-content {

            position: absolute;

            left: 0;

            right: 0;

            bottom: 0;

            z-index: 2;

            padding: 25px;

            color: #ffffff;
        }


        .category {

            display: inline-flex;

            align-items: center;

            gap: 5px;

            color: var(--red);

            background: #ffffff;

            padding: 5px 9px;

            border-radius: 5px;

            font-size: 9px;

            font-weight: 900;

            text-transform: uppercase;

            letter-spacing: .5px;
        }


        .hero-content h1 {

            max-width: 700px;

            font-size: clamp(27px, 7vw, 54px);

            line-height: 1.05;

            letter-spacing: -2px;

            margin-top: 10px;
        }


        .hero-content p {

            max-width: 650px;

            color: #dddddd;

            font-size: 12px;

            margin-top: 9px;
        }


        .hero-meta {

            display: flex;

            align-items: center;

            flex-wrap: wrap;

            gap: 12px;

            margin-top: 14px;

            color: #dddddd;

            font-size: 10px;
        }


        .hero-meta span {

            display: flex;

            align-items: center;

            gap: 5px;
        }


        .hero-side {

            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 12px;
        }


        .hero-small {

            position: relative;

            min-width: 0;

            height: 230px;

            border-radius: var(--radius-lg);

            overflow: hidden;

            background: #111111;
        }


        .hero-small img {

            width: 100%;

            height: 100%;

            object-fit: cover;
        }


        .hero-small::after {

            content: "";

            position: absolute;

            inset: 0;

            background:
                linear-gradient(
                    transparent 20%,
                    rgba(0,0,0,.88)
                );
        }


        .hero-small-content {

            position: absolute;

            z-index: 2;

            bottom: 0;

            left: 0;

            right: 0;

            padding: 15px;

            color: #ffffff;
        }


        .hero-small-content h3 {

            font-size: 13px;

            line-height: 1.25;
        }


        .hero-small-content p {

            color: #bbbbbb;

            font-size: 9px;

            margin-top: 5px;
        }


        /* =====================================================
           CONTENT LAYOUT
        ====================================================== */

        .content-layout {

            display: grid;

            grid-template-columns: 1fr;

            gap: 35px;

            padding-top: 35px;
        }


        .main-content,
        .sidebar {

            min-width: 0;
        }


        /* =====================================================
           SECTION HEADER
        ====================================================== */

        .section-heading {

            display: flex;

            align-items: flex-end;

            justify-content: space-between;

            gap: 15px;

            margin-bottom: 18px;
        }


        .heading-left {

            min-width: 0;
        }


        .eyebrow {

            color: var(--red);

            font-size: 9px;

            font-weight: 900;

            text-transform: uppercase;

            letter-spacing: 1px;

            margin-bottom: 5px;
        }


        .section-title {

            color: var(--black);

            font-size: 23px;

            line-height: 1.1;

            letter-spacing: -1px;

            font-weight: 850;
        }


        .section-description {

            color: var(--gray-500);

            font-size: 11px;

            margin-top: 5px;
        }


        .view-all {

            display: inline-flex;

            align-items: center;

            gap: 5px;

            color: var(--red);

            font-size: 11px;

            font-weight: 700;

            white-space: nowrap;
        }


        /* =====================================================
           NEWS GRID
        ====================================================== */

        .news-grid {

            display: grid;

            grid-template-columns:
                repeat(1, minmax(0, 1fr));

            gap: 14px;
        }


        .news-card {

            min-width: 0;

            background: #ffffff;

            border: 1px solid var(--border);

            border-radius: var(--radius-md);

            overflow: hidden;

            transition: .3s;
        }


        .news-card:hover {

            transform: translateY(-4px);

            box-shadow: var(--shadow-hover);
        }


        .news-image {

            position: relative;

            width: 100%;

            aspect-ratio: 16 / 10;

            overflow: hidden;

            background: #eeeeee;
        }


        .news-image img {

            width: 100%;

            height: 100%;

            object-fit: cover;

            transition: .4s;
        }


        .news-card:hover .news-image img {

            transform: scale(1.05);
        }


        .news-category {

            position: absolute;

            top: 10px;

            left: 10px;

            z-index: 2;

            padding: 5px 8px;

            background: #ffffff;

            color: var(--red);

            border-radius: 5px;

            font-size: 8px;

            font-weight: 900;

            text-transform: uppercase;
        }


        .news-content {

            padding: 14px;
        }


        .news-content h3 {

            font-size: 14px;

            line-height: 1.35;

            letter-spacing: -.3px;
        }


        .news-content p {

            color: #777777;

            font-size: 10px;

            line-height: 1.6;

            margin-top: 7px;
        }


        .news-meta {

            display: flex;

            align-items: center;

            gap: 10px;

            color: #999999;

            font-size: 9px;

            margin-top: 11px;
        }


        /* =====================================================
           FEATURED STORY
        ====================================================== */

        .featured-story {

            position: relative;

            min-height: 350px;

            border-radius: var(--radius-lg);

            overflow: hidden;

            margin-top: 35px;

            background: #111111;
        }


        .featured-story img {

            width: 100%;

            height: 100%;

            min-height: 350px;

            object-fit: cover;
        }


        .featured-story::after {

            content: "";

            position: absolute;

            inset: 0;

            background:
                linear-gradient(
                    transparent 15%,
                    rgba(0,0,0,.92)
                );
        }


        .featured-story-content {

            position: absolute;

            z-index: 2;

            left: 0;

            right: 0;

            bottom: 0;

            padding: 22px;

            color: #ffffff;
        }


        .featured-story-content h2 {

            max-width: 650px;

            font-size: clamp(23px, 4vw, 35px);

            line-height: 1.15;

            letter-spacing: -1px;

            margin-top: 8px;
        }


        .featured-story-content p {

            max-width: 600px;

            color: #cccccc;

            font-size: 11px;

            margin-top: 8px;
        }


        /* =====================================================
           MUSIC SECTION
        ====================================================== */

        .music-section {

            margin-top: 45px;
        }


        .music-grid {

            display: grid;

            grid-template-columns:
                repeat(2, minmax(0, 1fr));

            gap: 12px;
        }


        .music-card {

            min-width: 0;

            position: relative;

            padding: 9px;

            background: #ffffff;

            border: 1px solid var(--border);

            border-radius: 15px;

            transition: .3s;
        }


        .music-card:hover {

            box-shadow: var(--shadow);

            transform: translateY(-3px);
        }


        .music-cover {

            position: relative;

            width: 100%;

            aspect-ratio: 1 / 1;

            overflow: hidden;

            border-radius: 10px;
        }


        .music-cover img {

            width: 100%;

            height: 100%;

            object-fit: cover;

            transition: .4s;
        }


        .music-card:hover .music-cover img {

            transform: scale(1.05);
        }


        .play-button {

            position: absolute;

            right: 8px;

            bottom: 8px;

            width: 38px;

            height: 38px;

            display: grid;

            place-items: center;

            border: 0;

            border-radius: 50%;

            background: var(--red);

            color: #ffffff;

            box-shadow:
                0 6px 15px rgba(227,6,19,.3);
        }


        .music-info {

            padding: 10px 2px 2px;
        }


        .music-info h3 {

            overflow: hidden;

            white-space: nowrap;

            text-overflow: ellipsis;

            font-size: 12px;
        }


        .music-info p {

            overflow: hidden;

            white-space: nowrap;

            text-overflow: ellipsis;

            color: #888888;

            font-size: 10px;

            margin-top: 3px;
        }


        .music-bottom {

            display: flex;

            align-items: center;

            justify-content: space-between;

            gap: 5px;

            margin-top: 9px;
        }


        .music-duration {

            color: #999999;

            font-size: 9px;
        }


        .download-btn {

            width: 28px;

            height: 28px;

            display: grid;

            place-items: center;

            border: 1px solid var(--border);

            border-radius: 50%;

            background: #ffffff;

            color: #555555;

            font-size: 10px;

            transition: .2s;
        }


        .download-btn:hover {

            background: var(--red);

            border-color: var(--red);

            color: #ffffff;
        }


        /* =====================================================
           VIDEOS
        ====================================================== */

        .video-section {

            margin-top: 45px;
        }


        .video-grid {

            display: grid;

            grid-template-columns:
                repeat(1, minmax(0, 1fr));

            gap: 14px;
        }


        .video-card {

            position: relative;

            min-width: 0;

            aspect-ratio: 16 / 10;

            overflow: hidden;

            border-radius: var(--radius-md);

            background: #111111;
        }


        .video-card img {

            width: 100%;

            height: 100%;

            object-fit: cover;

            transition: .4s;
        }


        .video-card:hover img {

            transform: scale(1.05);
        }


        .video-card::after {

            content: "";

            position: absolute;

            inset: 0;

            background:
                linear-gradient(
                    transparent 20%,
                    rgba(0,0,0,.9)
                );
        }


        .video-play {

            position: absolute;

            z-index: 2;

            top: 15px;

            left: 15px;

            width: 42px;

            height: 42px;

            display: grid;

            place-items: center;

            border: 1px solid rgba(255,255,255,.4);

            border-radius: 50%;

            background: rgba(0,0,0,.35);

            color: #ffffff;

            backdrop-filter: blur(10px);
        }


        .video-content {

            position: absolute;

            z-index: 2;

            left: 0;

            right: 0;

            bottom: 0;

            padding: 15px;

            color: #ffffff;
        }


        .video-content h3 {

            font-size: 14px;

            line-height: 1.3;
        }


        .video-content p {

            color: #cccccc;

            font-size: 9px;

            margin-top: 4px;
        }


        /* =====================================================
           INTERVIEWS
        ====================================================== */

        .interviews {

            margin-top: 45px;
        }


        .interview-list {

            display: flex;

            flex-direction: column;

            gap: 10px;
        }


        .interview {

            display: grid;

            grid-template-columns: 100px minmax(0, 1fr);

            gap: 13px;

            padding: 9px;

            border: 1px solid var(--border);

            border-radius: 13px;

            background: #ffffff;

            transition: .2s;
        }


        .interview:hover {

            box-shadow: var(--shadow);
        }


        .interview-image {

            width: 100px;

            height: 75px;

            overflow: hidden;

            border-radius: 9px;
        }


        .interview-image img {

            width: 100%;

            height: 100%;

            object-fit: cover;
        }


        .interview-content {

            min-width: 0;
        }


        .interview-content span {

            color: var(--red);

            font-size: 8px;

            font-weight: 900;

            text-transform: uppercase;
        }


        .interview-content h3 {

            overflow: hidden;

            display: -webkit-box;

            -webkit-line-clamp: 2;

            -webkit-box-orient: vertical;

            font-size: 12px;

            line-height: 1.35;

            margin-top: 4px;
        }


        .interview-content p {

            color: #888888;

            font-size: 9px;

            margin-top: 5px;
        }


        /* =====================================================
           ARTISTS
        ====================================================== */

        .artists-section {

            margin-top: 45px;
        }


        .artist-grid {

            display: grid;

            grid-template-columns:
                repeat(3, minmax(0, 1fr));

            gap: 20px 10px;
        }


        .artist-card {

            min-width: 0;

            text-align: center;
        }


        .artist-photo {

            width: 85px;

            height: 85px;

            margin: auto;

            padding: 3px;

            border: 2px solid #eeeeee;

            border-radius: 50%;

            transition: .3s;
        }


        .artist-card:hover .artist-photo {

            border-color: var(--red);

            transform: scale(1.04);
        }


        .artist-photo img {

            width: 100%;

            height: 100%;

            object-fit: cover;

            border-radius: 50%;
        }


        .artist-card h3 {

            overflow: hidden;

            white-space: nowrap;

            text-overflow: ellipsis;

            font-size: 11px;

            margin-top: 9px;
        }


        .artist-card p {

            color: #999999;

            font-size: 9px;

            margin-top: 3px;
        }


        /* =====================================================
           FASHION
        ====================================================== */

        .fashion-section {

            margin-top: 45px;
        }


        .fashion-grid {

            display: grid;

            grid-template-columns:
                repeat(2, minmax(0, 1fr));

            gap: 10px;
        }


        .fashion-card {

            position: relative;

            height: 250px;

            overflow: hidden;

            border-radius: 15px;

            background: #111111;
        }


        .fashion-card img {

            width: 100%;

            height: 100%;

            object-fit: cover;

            transition: .4s;
        }


        .fashion-card:hover img {

            transform: scale(1.06);
        }


        .fashion-card::after {

            content: "";

            position: absolute;

            inset: 0;

            background:
                linear-gradient(
                    transparent 25%,
                    rgba(0,0,0,.88)
                );
        }


        .fashion-content {

            position: absolute;

            z-index: 2;

            left: 0;

            right: 0;

            bottom: 0;

            padding: 14px;

            color: #ffffff;
        }


        .fashion-content span {

            color: #ff5963;

            font-size: 8px;

            font-weight: 900;

            text-transform: uppercase;
        }


        .fashion-content h3 {

            font-size: 13px;

            line-height: 1.3;

            margin-top: 4px;
        }


        /* =====================================================
           SIDEBAR
        ====================================================== */

        .sidebar {

            display: flex;

            flex-direction: column;

            gap: 25px;
        }


        .sidebar-box {

            padding: 18px;

            border: 1px solid var(--border);

            border-radius: var(--radius-md);

            background: #ffffff;
        }


        .sidebar-title {

            display: flex;

            align-items: center;

            justify-content: space-between;

            padding-bottom: 12px;

            margin-bottom: 13px;

            border-bottom: 1px solid var(--border);
        }


        .sidebar-title h3 {

            font-size: 14px;

            letter-spacing: -.3px;
        }


        .sidebar-title a {

            color: var(--red);

            font-size: 9px;

            font-weight: 700;
        }


        /* =====================================================
           SIDEBAR TRENDING
        ====================================================== */

        .trending-item {

            display: grid;

            grid-template-columns: 25px 45px minmax(0, 1fr);

            align-items: center;

            gap: 9px;

            padding: 8px 0;

            border-bottom: 1px solid #f2f2f2;
        }


        .trending-item:last-child {

            border-bottom: 0;
        }


        .trend-number {

            color: #aaaaaa;

            font-size: 12px;

            font-weight: 800;
        }


        .trend-image {

            width: 45px;

            height: 45px;

            overflow: hidden;

            border-radius: 7px;
        }


        .trend-image img {

            width: 100%;

            height: 100%;

            object-fit: cover;
        }


        .trend-info {

            min-width: 0;
        }


        .trend-info h4 {

            overflow: hidden;

            white-space: nowrap;

            text-overflow: ellipsis;

            font-size: 10px;
        }


        .trend-info p {

            color: #999999;

            font-size: 8px;

            margin-top: 3px;
        }


        /* =====================================================
           UPCOMING
        ====================================================== */

        .event {

            display: flex;

            gap: 10px;

            padding: 9px 0;

            border-bottom: 1px solid #eeeeee;
        }


        .event:last-child {

            border-bottom: 0;
        }


        .event-date {

            width: 42px;

            height: 48px;

            flex-shrink: 0;

            display: flex;

            flex-direction: column;

            align-items: center;

            justify-content: center;

            border-radius: 8px;

            background: var(--red-light);

            color: var(--red);
        }


        .event-date strong {

            font-size: 15px;

            line-height: 1;
        }


        .event-date span {

            font-size: 7px;

            font-weight: 800;

            text-transform: uppercase;

            margin-top: 3px;
        }


        .event-info {

            min-width: 0;
        }


        .event-info h4 {

            overflow: hidden;

            white-space: nowrap;

            text-overflow: ellipsis;

            font-size: 10px;
        }


        .event-info p {

            color: #999999;

            font-size: 8px;

            margin-top: 4px;
        }


        /* =====================================================
           NEWSLETTER
        ====================================================== */

        .newsletter {

            padding: 20px;

            border-radius: 16px;

            background: var(--black);

            color: #ffffff;
        }


        .newsletter h3 {

            font-size: 16px;
        }


        .newsletter p {

            color: #aaaaaa;

            font-size: 10px;

            line-height: 1.6;

            margin-top: 7px;
        }


        .newsletter-form {

            display: flex;

            flex-direction: column;

            gap: 7px;

            margin-top: 13px;
        }


        .newsletter-form input {

            width: 100%;

            height: 40px;

            padding: 0 12px;

            border: 1px solid #333333;

            border-radius: 8px;

            outline: none;

            background: #1a1a1a;

            color: #ffffff;

            font-size: 10px;
        }


        .newsletter-form button {

            height: 40px;

            border: 0;

            border-radius: 8px;

            background: var(--red);

            color: #ffffff;

            font-size: 10px;

            font-weight: 800;
        }


        /* =====================================================
           FOOTER
        ====================================================== */

        .footer {

            width: 100%;

            margin-top: 60px;

            padding-top: 45px;

            padding-bottom: 25px;

            background: var(--black);

            color: #ffffff;
        }


        .footer-grid {

            display: grid;

            grid-template-columns:
                1fr 1fr;

            gap: 30px;
        }


        .footer-about p {

            max-width: 350px;

            color: #999999;

            font-size: 10px;

            line-height: 1.7;

            margin-top: 12px;
        }


        .footer-social {

            display: flex;

            gap: 8px;

            margin-top: 18px;
        }


        .footer-social a {

            width: 34px;

            height: 34px;

            display: grid;

            place-items: center;

            border-radius: 50%;

            background: #1d1d1d;

            color: #bbbbbb;

            font-size: 11px;

            transition: .2s;
        }


        .footer-social a:hover {

            background: var(--red);

            color: #ffffff;
        }


        .footer-column h4 {

            font-size: 11px;

            margin-bottom: 13px;
        }


        .footer-column a {

            display: block;

            color: #888888;

            font-size: 10px;

            margin-bottom: 8px;

            transition: .2s;
        }


        .footer-column a:hover {

            color: #ffffff;
        }


        .footer-bottom {

            display: flex;

            flex-direction: column;

            gap: 10px;

            padding-top: 25px;

            margin-top: 30px;

            border-top: 1px solid #222222;

            color: #666666;

            font-size: 9px;
        }


        /* =====================================================
           FIXED MUSIC PLAYER
        ====================================================== */

        .music-player {

            position: fixed;

            left: 0;

            right: 0;

            bottom: 0;

            z-index: 2000;

            width: 100%;

            height: 72px;

            display: flex;

            align-items: center;

            gap: 10px;

            padding: 0 12px;

            background: rgba(255,255,255,.96);

            backdrop-filter: blur(18px);

            -webkit-backdrop-filter: blur(18px);

            border-top: 1px solid var(--border);

            box-shadow:
                0 -5px 25px rgba(0,0,0,.05);

            overflow: hidden;
        }


        .player-song {

            display: flex;

            align-items: center;

            gap: 8px;

            min-width: 0;

            flex: 1;
        }


        .player-cover {

            width: 46px;

            height: 46px;

            flex-shrink: 0;

            object-fit: cover;

            border-radius: 8px;
        }


        .player-song-info {

            min-width: 0;
        }


        .player-song-info h4 {

            overflow: hidden;

            white-space: nowrap;

            text-overflow: ellipsis;

            font-size: 10px;
        }


        .player-song-info p {

            overflow: hidden;

            white-space: nowrap;

            text-overflow: ellipsis;

            color: #888888;

            font-size: 8px;

            margin-top: 3px;
        }


        .player-controls {

            display: flex;

            align-items: center;

            gap: 3px;

            flex-shrink: 0;
        }


        .player-btn {

            width: 31px;

            height: 31px;

            display: grid;

            place-items: center;

            border: 0;

            background: transparent;

            color: #555555;

            font-size: 12px;
        }


        .player-main {

            width: 39px;

            height: 39px;

            border-radius: 50%;

            background: var(--black);

            color: #ffffff;
        }


        .player-progress {

            display: none;

            flex: 1;

            align-items: center;

            gap: 8px;
        }


        .player-time {

            color: #888888;

            font-size: 8px;

            white-space: nowrap;
        }


        .progress-bar {

            flex: 1;

            height: 4px;

            overflow: hidden;

            border-radius: 10px;

            background: #dddddd;

            cursor: pointer;
        }


        .progress-value {

            width: 30%;

            height: 100%;

            background: var(--red);
        }


        /* =====================================================
           TABLET
        ====================================================== */

        @media (min-width: 600px) {

            .container {

                padding-left: 25px;

                padding-right: 25px;
            }


            .hero-grid {

                grid-template-columns:
                    minmax(0, 1.6fr)
                    minmax(0, 1fr);
            }


            .hero-side {

                grid-template-columns: 1fr;
            }


            .hero-small {

                height: 188px;
            }


            .news-grid {

                grid-template-columns:
                    repeat(2, minmax(0, 1fr));
            }


            .music-grid {

                grid-template-columns:
                    repeat(3, minmax(0, 1fr));

                gap: 15px;
            }


            .video-grid {

                grid-template-columns:
                    repeat(2, minmax(0, 1fr));
            }


            .artist-grid {

                grid-template-columns:
                    repeat(4, minmax(0, 1fr));
            }


            .fashion-grid {

                grid-template-columns:
                    repeat(4, minmax(0, 1fr));
            }


            .fashion-card {

                height: 300px;
            }


            .footer-grid {

                grid-template-columns:
                    2fr 1fr 1fr 1fr;
            }


            .footer-bottom {

                flex-direction: row;

                align-items: center;

                justify-content: space-between;
            }
        }


        /* =====================================================
           DESKTOP
        ====================================================== */

        @media (min-width: 1000px) {

            body {

                padding-bottom: 90px;
            }


            .container {

                padding-left: 30px;

                padding-right: 30px;
            }


            .main-nav {

                display: flex;
            }


            .mobile-menu-btn {

                display: none;
            }


            .header-actions {

                gap: 10px;
            }


            .hero {

                padding-top: 30px;
            }


            .hero-grid {

                grid-template-columns:
                    minmax(0, 2fr)
                    minmax(320px, 1fr);

                gap: 18px;
            }


            .hero-main {

                min-height: 470px;
            }


            .hero-main img {

                min-height: 470px;
            }


            .hero-side {

                grid-template-columns: 1fr;

                gap: 18px;
            }


            .hero-small {

                height: 226px;
            }


            .content-layout {

                grid-template-columns:
                    minmax(0, 3fr)
                    minmax(280px, 1fr);

                gap: 35px;

                padding-top: 45px;
            }


            .section-title {

                font-size: 27px;
            }


            .news-grid {

                grid-template-columns:
                    repeat(2, minmax(0, 1fr));

                gap: 18px;
            }


            .music-grid {

                grid-template-columns:
                    repeat(4, minmax(0, 1fr));

                gap: 15px;
            }


            .video-grid {

                grid-template-columns:
                    repeat(2, minmax(0, 1fr));

                gap: 18px;
            }


            .artist-grid {

                grid-template-columns:
                    repeat(5, minmax(0, 1fr));
            }


            .fashion-card {

                height: 330px;
            }


            .music-player {

                height: 82px;

                padding-left: 30px;

                padding-right: 30px;

                gap: 20px;
            }


            .player-song {

                width: 230px;

                flex: none;
            }


            .player-cover {

                width: 52px;

                height: 52px;
            }


            .player-controls {

                gap: 5px;
            }


            .player-progress {

                display: flex;
            }
        }


        /* =====================================================
           LARGE DESKTOP
        ====================================================== */

        @media (min-width: 1300px) {

            .container {

                padding-left: 20px;

                padding-right: 20px;
            }


            .header-inner {

                min-height: 82px;
            }


            .hero-main {

                min-height: 530px;
            }


            .hero-main img {

                min-height: 530px;
            }


            .hero-small {

                height: 256px;
            }


            .news-grid {

                grid-template-columns:
                    repeat(3, minmax(0, 1fr));
            }


            .music-grid {

                grid-template-columns:
                    repeat(4, minmax(0, 1fr));
            }


            .artist-grid {

                grid-template-columns:
                    repeat(6, minmax(0, 1fr));
            }
        }


        /* =====================================================
           VERY SMALL PHONES
        ====================================================== */

        @media (max-width: 360px) {

            .container {

                padding-left: 12px;

                padding-right: 12px;
            }


            .brand-name {

                font-size: 16px;
            }


            .brand-zone {

                font-size: 8px;
            }


            .brand-icon {

                width: 38px;

                height: 38px;
            }


            .header-inner {

                gap: 10px;
            }


            .hero-content {

                padding: 18px;
            }


            .hero-content h1 {

                font-size: 25px;
            }


            .music-grid {

                gap: 8px;
            }


            .music-card {

                padding: 7px;
            }


            .artist-photo {

                width: 72px;

                height: 72px;
            }


            .fashion-card {

                height: 220px;
            }


            .player-cover {

                width: 42px;

                height: 42px;
            }


            .player-main {

                width: 36px;

                height: 36px;
            }
        }


        /* =====================================================
           REDUCED MOTION
        ====================================================== */

        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {

                scroll-behavior: auto !important;

                animation-duration: 0.01ms !important;

                transition-duration: 0.01ms !important;
            }
        }