
        /* ── Layout ─────────────────────────────────────────── */
        .land-main {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 10px;
        }

        /* ── Hot Songs Panel ────────────────────────────────── */
        .hot {
           background: linear-gradient(
     to right,
     rgba(180, 205, 255, 0.65) 0%,
     #fff7ed 40%,
     #fff7ed 60%,
     rgba(180, 205, 255, 0.65) 100%
   );
   border-radius: var(--border-radius);
   backdrop-filter: blur(5px);
            padding-bottom: 5px;
            backdrop-filter: blur(8px);
        }

        .hot > h2,
        .recent > h2,
        .col-heading>h2{
            text-align: center;
            font-family: var(--font-display);
            font-size: 1.55rem;
            
            padding-top: 8px;
            height: 40px;
            text-transform: capitalize;
            /*color: var(--accent);*/
            letter-spacing: 0.02em;
            font-family: "Dancing Script", cursive;
            font-weight: 800;
            color:var(--accent-color);
        }

        .hot-songs {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            padding: 0 6px;
            gap:2px;
        }

        /* ── Recent Songs Panel ─────────────────────────────── */
        .recent {
            background: linear-gradient(
     to right,
     rgba(180, 205, 255, 0.65) 0%,
     #fff7ed 40%,
     #fff7ed 60%,
     rgba(180, 205, 255, 0.65) 100%
   );
   border-radius: var(--border-radius);
   backdrop-filter: blur(5px);
             display: flex;
            flex-direction: column;
            justify-content: space-between;
             padding-bottom: 11px;
            
        }

        .recent-songs {
            flex:1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
           
            /*height: calc(100% - 60px);*/
            /*gap: 6px;*/
            padding: 0 6px;
            /*border:1px solid blue;*/
            margin: 6px auto;
            
        }

        /* ── Song Card (.one) ───────────────────────────────── */
        .one {
            width: 48%;
            background: var(--prime);
            /*border: 1px solid rgba(180, 205, 255, 0.95);*/
            border: 2px solid var(--prime-yellow);
            margin-bottom: 9px;
            border-radius: var(--radius-md);
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-sm);
            justify-content: space-between;
            transition: transform var(--transition), box-shadow var(--transition);
            padding: .3rem .1rem;
        }
        .hot-songs .one:nth-child(1),
        .hot-songs .one:nth-child(2) {
            margin-top: 6px;
        }
        .hot .one:hover {
            transform: translateY(-1px) scale(1.02);
            box-shadow: var(--shadow-md);
        }

        /* ── Card internals ─────────────────────────────────── */
        .img-extra {
            display: flex;
            flex-direction: row;
            padding: 2px 3px 0 5px;
            align-items: center;
            text-decoration: none;
            color: inherit;
            /*border:1px solid green;*/
        }

        .image-container {
            width: 130px;
            height: 76px;
            overflow: hidden;
            border-radius: var(--radius-sm);
            flex-shrink: 0;
            /*border:1px solid red;*/
        }
        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.35s ease;
            display: block;
        }
        .image-container img:hover {
            transform: scale(1.05);
        }

        .one-ls {
            display: flex;
            margin-left: 10px;
            width: calc(100% - 130px);
            flex-direction: column;
            justify-content: center;
            /*border: 1px solid red;*/
        }

        .ntitle {
            font-size: 15px;
            text-align: center;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 5px;
            color: var(--text-primary);
             /*border: 1px solid black;*/
        }
        .nsong {
            font-size: 12.5px;
            text-align: center;
            color: var(--text-secondary);
            line-height: 1.25;
            font-weight: 700;
             /*border: 1px solid blue;*/
        }

        /* ── Bottom row: artists + button ───────────────────── */
        .btn-more {
            padding: 4px 6px 4px 1px;
            display: flex;
            justify-content: space-between;
            align-items: center;   /* both halves fill the row height */
            margin: 2px 6px 1px;
            /*min-height: 52px;*/
            /*border: 1px solid blue;*/
           
        }

        .art {
            flex: 0 0 70%;
            display: flex;
            align-items: center;
            gap: 3px;
            text-transform: capitalize;
            justify-content: flex-start; /* default */
            flex-wrap: wrap;           /* default */
             /*border: 1px solid yellow;*/
        }
        
        .art.centered {
            flex-wrap: nowrap;
            justify-content: center;
        }

        .btn-ly {
            display: flex;
            flex-direction: row;
            flex: 0 0 30%;
            justify-content: flex-end;
            align-items: center;
            
        }

        button {
            padding: 4px 10px;
            background-color: var(--accent-color);
            color: #fff;
            border-radius: 50px;
            cursor: pointer;
            font-size: 13px;
            font-family: var(--font-body);
            border: none;
            transition: background var(--transition), box-shadow var(--transition);
            margin-bottom:1px;
            /*border: 1px solid yellow;*/
        }
        .btn-ly a button:hover {
            /*background-color: #005fcc;*/
            box-shadow: 0 2px 8px rgba(0, 119, 255, 0.35);
        }

        /* ── Recent Song Row ────────────────────────────────── */
        .r-song {
            width:98%;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            background: var(--prime);
            border: 1px solid rgba(255, 220, 100, 0.3);
            padding: 3px 4px;
            border-radius: var(--radius-md);
            margin: 0 auto;
            transition: background var(--transition), box-shadow var(--transition);
            border: 1px solid var(--prime-yellow);
            /*gap:5px;*/
        }
       
        .recent .r-song:hover {
            transform: translateY(-1px) scale(1.01);
            box-shadow: var(--shadow-sm);
        }

        /* r-song-t-s is an <a> tag */
        a.r-song-t-s {
            display: flex;
            flex-direction: column;
            /*width: calc(100% - 85px);*/
            justify-content: center;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            /*border: 1px solid red;*/
        }
        .r-song-t {
            font-size: 15px;
            text-align: center;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 3px;
            line-height: 1.2;
            /*border: 1px solid blue;*/
              font-family: var(--font-body);
        }
        .r-song-s {
            font-size: 12px;
            text-align: center;
            line-height: 1.30;
            /*border: 1px solid green;*/
           
           
        }
        .r-song-s p {
            color: var(--text-secondary);
            font-weight: 700;
            /*border: 1px solid pink;*/
            padding-bottom:0;
        }

        .r-image {
            height: 76px;
            width: 76px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
            /*border: 1px solid blue;*/
        }
        .artimg {
            height: 98%;
            width: 98%;
            object-fit: cover;
            object-position: 50% 50%;
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(0, 119, 255, 0.2);
            transition: transform 0.3s ease;
            /*border: 1px solid yellow;*/
        }
        .artimg:hover {
            transform: scale(1.05);
        }

        /* ── Tablet (≤ 1024px) ──────────────────────────────── */
        @media (max-width: 1024px) {
            .land-main {
                grid-template-columns: 1fr;
            }
            .hot,
            .recent {
                width: 100%;
            }
            .recent {
                padding: 0 4px 20px;
            }
            .recent-songs {
                display: flex;
                flex-wrap: wrap;
                flex-direction: row;
                gap: 4px;
            }
            
        }
        /* ── 601–780px: 2 cards/row, stacked layout, 70px thumb ── */
        @media (min-width: 601px) and (max-width: 780px) {
            .img-extra {
                flex-direction: column;
                align-items: center;
                padding: 4px;
            }
            .image-container {
                width: 92%;
                height: auto;
            }
            .image-container img {
                width: 100%;
                aspect-ratio: 16 / 9;
            }
            .one-ls {
                width: 100%;
                margin-left: 0;
                margin-top: 6px;
            }
            .ntitle { font-size: 14px; }
            .nsong  { font-size: 12px; }
        }

        /* ── Mobile (≤ 540px) ───────────────────────────────── */
         @media (min-width: 421px) and (max-width: 600px) {
            .one {
                display: grid;
                grid-template-columns: 1fr;
                width: 100%;
                padding: 10px 6px;
            }
            .img-extra {
                flex-direction: row;
                align-items: center;
            }
            .image-container {
                width: 170px;
                height: auto;
            }
            .image-container img {
                width: 100%;
                aspect-ratio: 16 / 9;
            }
            .one-ls {
                width: 100%;
                margin-left: 0;
                margin-top: 8px;
            }
            .ntitle {
                font-size: 17px;
                margin-bottom: 8px;
            }
            .nsong { font-size: 13px; }
            
            
        }
 
        /* ── Small mobile (≤ 420px) ─────────────────────────── */
        @media (max-width: 420px) {
            .land-main {
                gap: 6px;
            }
            .one {
                display: grid;
                grid-template-columns: 1fr;
                width: 100%;
                padding: 8px 4px;
            }
            .hot-songs .one:nth-child(2) {
                margin-top: 0;
            }
            .img-extra {
                flex-direction: column;
                align-items: center;
            }
            .image-container {
                width: 90%;
                height: auto;
            }
            .image-container img {
                width: 100%;
                aspect-ratio: 16 / 9;
            }
            .one-ls {
                width: 100%;
                margin-left: 0;
                margin-top: 8px;
            }
            .ntitle {
                font-size: 15px;
            }
            .nsong {
                font-size: 13px;
                line-height: 1.3;
            }
            
            .artimg {
                height: 60px;
                width: 60px;
            }
        }
        @media (min-width: 1920px) {
  .hot {
    padding: 0 40px 6px 40px;
    max-width: 1200px;
  }
  .one {
    padding: 2rem;
  }
}