   :root {
            --bg: #111;
            --card-bg: #1c1c1c;
            --border: #2e2e2e;
            --text: #f0f0f0;
            --text-muted: #bbb;
            --accent1: #e07a5f;
            --accent2: #f2cc8f;
            /* --accent2: #c98a00; */
            --accent3: #81b29a;
            }
            * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            }
            
            body {
            font-family: 'Montserrat', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            }
            
            h1,
            h2 {
            /* font-family: 'Montserrat', sans-serif; */
            font-weight: 400;
            }
            
            h1 {
            font-size: 1.5rem;
            margin-bottom: 0rem;  /* reduce bottom margin */
            /* color: var(--accent1);*/
            }
            h2 {
            font-size: 1.2rem;
            margin: 1rem 0 0.6rem;
            color: var(--accent2);
            border-left: 4px solid var(--accent3);
            padding-left: 0.6rem;
            }
            
            h7{
            color:var(--accent2)
            }
            a {
            color: var(--accent1);
            text-decoration: none;
            transition: 0.3s;
            /* font-weight: 400; */
            }
            
            a:hover {
            color: var(--accent3);
            text-shadow: 0 0 6px var(--accent3);
            }
            
            ul {
            list-style: none;
            padding: 0;
            }
            
            li {
            margin: 0.4rem 0;
            }
            
            .container {
            display: grid;
            grid-template-columns: 25% 50% 25%;
            gap: 1.2rem;
            max-width: 1200px;
            margin: auto;
            }
            
            .column {
            background: var(--card-bg);
            padding: 0;
            border-radius: 10px;
            border: 1px solid var(--border);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            }
            
            .left,
            .right,
            .main {
            margin-top: 1.2rem;
            }
            
            .left,
            .right {
            padding-left: 0.8rem;
            }
            
            .main {
            padding: 0.8rem;
            }
            
            .ad {
            margin: 1.2rem 0;
            text-align: center;
            }
            
            header {
            /* background: linear-gradient(90deg, var(--accent1), var(--accent2)); */
            /* background: linear-gradient(to bottom, #fef8e3, #a64b00); */
            /* background: linear-gradient(to bottom, #f6c159 0%, #a76a2c 50%, #f0a849 100%); */
            /* background: linear-gradient(to bottom, #c98a00, #1a0f00); */
            background: linear-gradient(to bottom, #e07a5f, #1a0f00);
            padding: 1.5rem;
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            }
            
            .heading-wrapper {
            display: flex;
            align-items: center;
            }
            
            .logo-title {
            font-size: 2rem;
            color: #fffae6;
            /* text-shadow: 0 0 5px red, 0 0 10px orange, 0 0 20px orange; */
            letter-spacing: 3px;
            }
            
            .logo-tagline {
            font-family: 'Roboto Slab', serif;
            font-size: 1rem;
            color: #e6fffb;
            font-style: italic;
            /* text-shadow: 0 0 4px red, 0 0 8px orange; */
            margin-top: -20px;
            }
            
            .logo img {
            height: 4rem;
            width: auto;
            }
            
            nav {
            background: var(--card-bg);
            border-bottom: 1px solid var(--border);
            }
            
            nav ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            padding: 0.6rem;
            }
            
            nav li {
            margin: 0.3rem 1rem;
            }
            
            nav a {
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            color: var(--text);
            font-size: 0.95rem;
            }
            
            nav a:hover {
            color: var(--accent1);
            }
            
            .song-meta {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 0;          /* remove top margin */
            margin-bottom: 0rem; 
            line-height: 19px/* keep a little breathing room */
            }
            
            .lyrics {
            white-space: pre-wrap;   /* preserve spaces and newlines */
            font-family: 'Roboto Mono', monospace;
            background: var(--bg);
            padding: 1rem;
            border: 1px solid var(--border);
            border-radius: 8px;
            line-height: 1.8;
            font-size: 0.95rem;
            color: white;
            word-spacing: -2px;
            letter-spacing: -0.5px;
            }
            
            .app-meta{
            font-size: 0.9rem;
            color: black;
            margin-top: 0;  
            line-height: 17.5px;
            margin-bottom: 0rem; 
            background: white;
             border-radius: 8px;
            padding:1px;
            }
            .app-meta a{
                color:red;
            }
            
          .features-section {
  max-width: 1000px;
  margin: 20px auto;
  padding: 0 5px;
  text-align: center;
}

.features-title {
  font-size: 28px;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  grid-template-rows: repeat(2, auto);  /* 2 rows */
  gap: 16px; /* spacing between cards */
  max-width: 800px; /* keeps it centered and tidy */
  margin: 0 auto;
}

.feature-card {
  background: #1c1c1c;
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  padding: 3px;
  display: flex;
  align-items: flex-start;
  gap: 3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.icon {
  font-size: 14px;
}
.feature-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
}

/* 📱 Mobile view: stack in 1 column */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap:8px;
  }
  .feature-card  {
      padding: 5px;
  }
}

.feature-card p {
  font-size: 14px;
  color: #f0f0f0;
  margin: 0;
}


            footer {
            background: linear-gradient(90deg, var(--accent2), var(--accent3));
            text-align: center;
            padding: 0.6rem;
            font-size: 0.85rem;
            color: black;
            margin-top: 2rem;
            }
            
            footer a {
            color: black;
            }
            
            footer a:hover {
            color: var(--accent1);
            }
            
            .search {
            flex: 1;
            margin: 0 1rem;
            padding: 0;
            }
            
            .search button {
            padding: 0.75rem 1rem;
            margin: 0;
            border-radius: 8px !important;
            }
            
            .gsc-input-box,
            .gsc-input input.gsc-input,
            #gsc-i-id1 {
            border-radius: 8px !important;
            border: 0px solid white !important;
            box-sizing: border-box !important;
            }
            
            .gsc-input input.gsc-input::placeholder {
            color: var(--border) !important;
            }
            
            .gssb_a {
            color: black !important;
            /* font-weight: 400; */
            }
            
            .transpose-buttons {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: -0.5rem;
            position: relative;
            }
            
            .transpose-btn {
            background: var(--accent2); /* light gold */
            color: #111; /* dark text */
            border: 1px solid var(--border);
            font-size: 0.9rem;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            transition: background 0.3s, transform 0.2s;
            }
            
            .transpose-btn:hover {
            background: var(--accent3); /* teal */
            color: #fff; /* flips to white text for hover */
            transform: scale(1.1);
            }
            
            .transpose-label {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.95rem;
            color: var(--text-muted);
            font-weight: 500;
            white-space: nowrap;
            }
            
            .artist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* two columns */
  gap: 4px 10px; /* row gap = 8px, column gap = 20px */
  margin-top: 16px;
}

.artist-grid a {
  display: inline;
  padding: 0 0;
  text-decoration: none;
  color: var(--accent2); /* adjust to match your theme */
  transition: color 0.2s ease;
}

.artist-grid a:hover {
  color: #e07a5f; /* accent color on hover */
}

            /* Trending Artists two-column layout */
            .right ul {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            padding: 0;
            }
            
            .right li {
            list-style: none;
            min-width: 0;           /* keep ellipsis working */
            margin: 0rem 0;       /* small vertical spacing between rows */
            }
            
            .right li a {
            display: inline-block;      /* allow width constraints */
            max-width: 100%;            /* fit inside li */
            white-space: nowrap;        /* single line */
            overflow: hidden;           /* hide overflow */
            text-overflow: ellipsis;    /* show ... */
            }
            
            /* Keep Trending Songs single column */
            .left ul.trending-songs {
            display: block; /* default */
            padding: 0;
            }
            
            /* Make Categories two columns */
            .left ul.categories {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.2rem 0.6rem;
            padding: 0;
            }
            
            .left ul.categories li {
            list-style: none;
            min-width: 0;
            margin: 0;
            }
            
            .left ul.categories li a {
            display: inline-block;
            max-width: 100%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            }
            
            /* Responsive Design */
            @media (max-width: 1024px) {
            .container {
            grid-template-columns: 1fr 1fr 1fr;
            }
            
            }
            @media (max-width: 768px) {
            .container {
            grid-template-columns: 1fr;
            }
            .left,
            .right {
            order: 2;
            }
            
            .main {
            order: 1;
            padding:0.3rem;
            }
            
            .lyrics {
            padding: 0.3rem;
            }
            
            header {
            position: static;
            flex-direction: column;
            align-items: stretch;
            padding: 0.6rem 1rem;
            }
            
            .heading-wrapper {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 10px;
            justify-content: flex-start;
            }
            
            .search {
           margin: 0; 
        line-height: 1rem;
            }
            
            
            .gsc-input-box,
            .gsc-input input.gsc-input,
            /* .gsc-search-button-v2, */
            #gsc-i-id1 {
            border-radius: 0px !important;
            }
            
            .gsc-input-box,
            .gsc-input input.gsc-input,
            #gsc-i-id1 {
            border-top-left-radius: 8px !important;
            border-bottom-left-radius: 8px !important;
            }
            
            .search button {
            padding: 0.8rem;
            border-radius: 0px !important;
            border-top-right-radius: 8px !important;
            border-bottom-right-radius: 8px !important;
            }
            
            nav li {
            margin: 0 0.4rem;  /* much tighter spacing */
            }
            
            nav a {
            font-size: 0.85rem; /* optional: slightly smaller font */
            }
            }
            