html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #222;
 font-size: 16px;
line-height: 1.6;
}
body {
  min-height: 100vh;   /* ensures full height */
}
/* Header */
header {
  background-color: #301934; /* dark purple for top part */
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
/* Logo + Title inline */
.logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 18px;  /* taller */
  background-color: #301934; /* stays dark */
}

.header-logo {
  height: 40px; /* slightly larger logo */
}

.campaign-name {
  font-size: 18px; /* larger title text */
  font-weight: bold;
  margin: 0;
  color: white;
}
.desktop-menu {
  display: flex;
  align-items: center;
  background-color: #563c5c;
  padding: 3px 15px;
  position: relative;
}

/* Center the menu absolutely */
.menu {
  list-style: none;
  margin: 0 auto;   /* centers inside flexbox */
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Right-aligned join button */
.join-btn {
  margin-left: auto; /* pushes only this one to the right */
}

.join-btn a {
  background-color: #301934; /* same as top header */
  color: #d3d3d3;            /* light gray text */
  padding: 4px 10px;         /* smaller size */
  border-radius: 0;          /* square edges */
  text-decoration: none;
  font-weight: 500;          /* slightly lighter than bold */
  font-size: 14px;           /* smaller font */
  border: 1px solid #d3d3d3; /* subtle gray border */
  transition: all 0.3s ease;
}

.join-btn a:hover {
  background-color: #d3d3d3; /* gray highlight on hover */
  color: #301934;            /* dark purple text */
  border-color: #d3d3d3;
}

.menu a {
  color: white;
  text-decoration: none;
  padding: 6px 12px; /* smaller padding for compact look */
  display: block;
  font-weight: 500;
}

.menu a:hover {
  background-color: #7B68EE; /* hover effect */
  color: white;
}

.menu li {
  position: relative;
  margin: 5px;
}

.dropbtn {
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s, color 0.3s;
}

.dropbtn i {
  font-size: 0.8em;
  margin-left: 4px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Dropdown Menu (Desktop) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #E6E6FA;
  min-width: 160px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.dropdown-content a {
  padding: 12px 16px;
  color: black;
}
/* Hide toggle button on desktop */
.menu-toggle-wrapper {
  display: none;
}
/* ðŸ”’ Hide sidebar on desktop */
.sidebar {
  display: none;
}

/* Footer */
.last-container {
  text-align: center;
  padding: 20px;
  background-color: #301934;
  color: white;
}

.last-container .social-icons {
  margin: 10px 0;
}

.last-container .social-icons a {
  color: white;
  font-size: 20px;
  margin: 0 10px;
  text-decoration: none;
}

/* Social Label Section */
.social-label {
  text-align: center;
  font-weight: bold;
  color: #301934;
  margin-top: 40px;
  font-size: 18px;
  letter-spacing: 1px;
}

.social-divider {
  margin: 15px auto 30px;
  padding: 15px 0;
  max-width: 320px;
  border: 2px solid #301934;
  border-radius: 10px;
  text-align: center;
}

.social-divider a {
  color: #301934;
  font-size: 24px;
  margin: 0 12px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-divider a:hover {
  color: #6a1b9a;
}

/*MAIN PAGE */
*{
box-sizing:border-box;
}

img, iframe{
max-width:100%;
height:auto;
display:block;
}

#latest-page {
  flex: 1; /* takes all remaining vertical space */
  margin-top: 120px; /* your header height */
  padding: 40px;
  background: #D8BFD8;     /* ✅ same as donate */
  color: #301934;          /* ✅ main text color */
}
.latest-container{
display:grid;
grid-template-columns: 1fr 320px;
gap:30px;
align-items:start;
}

/* toggle */
.artist-toggle{
display:flex;
justify-content:center;
margin-bottom:25px;
}

.artist-btn{
padding:10px 30px;
border:none;
border-radius:20px;
background:#6b5fbf;
color:white;
cursor:pointer;
}

.artist-btn.active{
background:white;
color:#333;
}

/* featured */

.featured-card img{
width:100%;
height:100%;
border-radius:12px;
max-height:300px;
}

.featured-title{
font-size:30px;
font-weight:bold;
margin-bottom:10px;
}
.featured-description {
    font-size: 15px;      /* smaller than title */
    line-height: 1.4;     /* spacing for readability */
    max-height: 120px;    /* optional: limits height if too long */
    overflow: hidden;     /* hide overflow */
    margin-bottom: 8px;
    color: black;          /* slightly lighter than white */
}
.featured-caption{
opacity:.8;
margin-top:8px;
font-size:15px;
}

.featured-tag{
background:#7c5cff;
padding:5px 12px;
border-radius:20px;
font-size:12px;
display:inline-block;
margin-top:10px;
}

/* news */

.news-title{
margin-top:40px;
margin-bottom:20px;
}

.news-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.news-card{
background:#563c5c;
padding:15px;
border-radius:12px;
color:white;
}

.news-card img{
width:100%;
border-radius:10px;
}

.news-card h4{
margin-top:10px;
color:white;
}

.news-card p{
font-size:13px;
opacity:.8;
}

.news-card a {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;       /* smaller size */
  background: #7c5cff;     /* your purple theme */
  color: white;
  font-weight: 500;
  font-size: 12px;         /* smaller font */
  text-transform: lowercase; /* lowercase text */
  border-radius: 15px;     /* smaller pill shape */
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* hover effect */
.news-card a:hover {
  background: #5a3edc;     /* darker shade on hover */
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* sidebar */

.latest-menu{
background:rgba(0,0,0,.25);
padding:20px;
border-radius:14px;
/* important fixes */
height:auto;
min-height:fit-content;
align-self:start;
overflow:visible;
position:sticky;
top:140px;
}
.menu-section{
margin-bottom:20px;
}

.menu-section h3{
font-size:14px;
margin-bottom:10px;
}

/* playlist */
.playlist-link{
display:block;
padding:6px;
border-radius:6px;
text-decoration:none;
color:white;
}
/* Playlist items */
.playlist-item {
    display: flex;
    align-items: left;
    margin-bottom: 8px;
    font-size: 14px;
    color: white;
}

.playlist-item i {
    margin-right: 8px;
    font-size: 18px;
    color: #7c5cff; /* icon color */
}

/* Hyperlink on text only */
.playlist-link-text {
    color: #fff;
    text-decoration: underline;
    cursor: pointer;
}

.playlist-link-text:hover {
    color: #ffd700;
}
/* ==========================
SUPPORT / DONATE STYLE
========================== */

.latestdropdwn{
background:#47043E;
border-radius:10px;
margin-bottom:12px;
overflow:hidden;
border:1px solid rgba(255,255,255,0.08);
}

.latestdropdwn-header{
padding:10px 14px;
font-size:14px;
font-weight:600;
cursor:pointer;
color:white;
background:#563c5c;

display: flex;
    justify-content: flex-start;   /* ✅ force left */
    align-items: center;           /* ✅ correct vertical align */
    gap: 8px;
}

.latestdropdwn-content{
display:none;
padding:10px 12px;
}
.latestdropdwn-header i {
    color: #ffffff !important;   /* force visible */
    font-size: 16px;
    min-width: 18px;            /* prevents collapse */
}
/* FIXED dropdown open */
.latestdropdwn.open .latestdropdwn-content{
display:block;
}
/* Dropdown arrow */

/* push arrow to the far right */
.latestdropdwn-header::after {
    content: "▾";
    font-size: 14px;
    margin-left: auto;   /* ✅ THIS is the key */
    transition: 0.3s;
    opacity: 0.8;
}

/* rotate when open */
.latestdropdwn.open .latestdropdwn-header::after {
    transform: rotate(180deg);
}
.playlist-link-text {
    font-size: 13px;
    text-decoration: underline;
    display: inline-block;
}
/* Donate row */
.donate-row{
display:flex;
align-items:center;
justify-content:space-between;
padding:8px 0;
border-bottom:1px solid rgba(255,255,255,0.08);
}

.donate-row:last-child{
border-bottom:none;
}

.donate-label{
font-size:13px;
opacity:.9;
}

/* Donate button */
.donate-btn{
background:#7c5cff;
border:none;
color:white;
padding:5px 14px;
border-radius:16px;
font-size:12px;
cursor:pointer;
transition:.2s;
}

.donate-btn:hover{
background:#9a86ff;
}

/* dropdown */

.latestdropdwn{
background:#301934;;
border-radius:8px;
margin-bottom:10px;
color:white;
}
/* ==========================
DROPDOWN BUTTONS (Stream / Buy / Donate)
========================== */

.dropdown-btn{
display:block;
width:100%;
background:#7c5cff;
border:none;
color:white;
padding:8px 14px;
margin-bottom:8px;
border-radius:20px;
font-size:13px;
cursor:pointer;
text-align:center;
transition:0.2s;
}

.dropdown-btn:hover{
background:#9a86ff;
transform:translateX(3px);
}
/* video */

.video-embed iframe{
width:100%;
height:200px;
border:none;
border-radius:10px;
}
.more-guides{
margin-top:10px;
text-align:right;
}

.more-guides a{
font-size:13px;
text-decoration:none;
color:#5b2a86;
font-weight:600;
}

.more-guides a:hover{
text-decoration:underline;
}
.ip-check{
font-size:inherit;   /* match guides content */
line-height:inherit; /* same spacing */
margin-bottom:12px;  /* better as intro */
opacity:0.9;
}
.ip-check a{
text-decoration:underline;
}
/* ==========================
BUY GROUP STYLING
========================== */

.buy-desc{
font-size:12px;
color:#aaa;
margin-bottom:10px;
}

.buy-desc p{
margin:2px 0;
}

.buy-country{
margin-top:10px;
font-size:13px;
color:#fff;
}
/*MOBILE VIEW */
@media (max-width: 768px) {
  .desktop-menu { display: none; }
  .menu-toggle-wrapper {
    display: flex; align-items: center; justify-content: center;
    background: #563c5c; padding: 4px 8px; height: 34px; gap: 4px; width: 100%;
  }
  .menu-toggle { font-size: 18px; color: white; }
  .menu-label { font-size: 14px; color: white; font-weight: 600; }

  .sidebar {
    display: block;
    position: fixed;
    top: 60px;
    left: 0; right: 0;
    width: auto; max-width: none;
    height: 50vh; /* ⬅️ Half the screen height */
    background: #6d4c7d;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    overflow-y: auto;
    opacity: 0; visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
    padding: 20px 15px;
  }
  .sidebar.show { opacity: 1; visibility: visible; transform: translateY(0); }
  .sidebar ul li { margin-bottom: 20px; } /* more spacing */
  .sidebar ul li a {
    text-decoration: none;
    color: #f2e9f8;
    font-size: 18px; /* balanced size */
    line-height: 1.5;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    display: block;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.3s;
  }
  .sidebar ul {
  list-style: none;
  padding: 20px 0 0 0; /* ⬅️ pushes menu items down */
  margin: 0;
}
  .sidebar ul li a:hover { background: #8a6b96; }

  .sidebar .dropdown-content {
    background: #c9b6d4;
    border-radius: 6px;
    padding: 4px 0;
  }
  .sidebar .dropdown-content a {
    color: #301934;
    font-size: 18px;
    padding: 8px 14px;
    display: block;
  }
  .sidebar .dropdown-content a:hover { background: #b497c4; color: #fff; }

  /* Bigger close button */
  .sidebar .close-btn {
    position: absolute;
    top: 8px; right: 20px;
    font-size: 36px; /* ⬅️ Bigger for easy tapping */
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    background:transparent;
  }
  .sidebar .dropdown > a i {
  transition: transform 0.3s;
}
.sidebar .dropdown > a i.rotate {
  transform: rotate(180deg);
}
/* Make all sidebar menu labels uppercase */
.sidebar ul li a,
.sidebar .dropdown-content a {
  text-transform: uppercase;
}
/* General Body + Main Layout */
  html, body {
    overflow-x: hidden;
    background-color: #fdfdfd;
  }
#latest-page {
    margin-top:100px;
    padding:0;
  }

/* ================= LAYOUT ================= */

.latest-container{
grid-template-columns: repeat(2, 1fr); /* 2 columns remain */
gap: 6px;                             /* smaller gap between columns */
align-items:start;
margin-bottom:100px;
}
 
/* ================= SIDEBAR MENU ================= */

.latest-menu{
padding:14px;
top:110px;
border-radius:12px;
transition:width .3s ease;
}

.latest-menu.expanded{
width:260px;
}

.latest-container.menu-expanded{
grid-template-columns:1fr 260px;
}


/* ================= FEATURED ================= */

.featured-title{
font-size:22px;
line-height:1.3;
}

.featured-card img{
max-height:190px;
object-fit:cover;
border-radius:10px;
}

.featured-caption{
font-size:12px;
}
/* Optional: reduce padding inside cards */
  .featured-card, .news-card {
    padding-left: 4px;
    padding-right: 4px;
  }

/* ================= NEWS ================= */

.news-grid{
grid-template-columns:repeat(2,1fr);
gap:10px;
}

.news-card{
border-radius:10px;
display:flex;
flex-direction:column;
height:100%;
}

.news-card img{
border-radius:8px;
margin-bottom:6px;
}

.news-card h4{
font-size:13px;
line-height:1.2;
margin:6px 0;
}

.news-card p{
font-size:11px;
line-height:1.3;
flex-grow:1;
}

.news-card a{
font-size:10px;
padding:3px 9px;
margin-top:6px;
align-self:flex-start;
}


/* ================= PLAYLIST ================= */

.playlist-item{
font-size:14px;   /* bigger for readability */
margin-bottom:6px;
}

.playlist-item i{
font-size:15px;
margin-right:6px;
}


/* ================= DROPDOWNS ================= */

.latestdropdwn{
border-radius:8px;
}

.latestdropdwn-header{
font-size:12px;
padding:7px 9px;
}

.latestdropdwn-content{
padding:8px;
}
  /* ==========================
     MOBILE: DROPDOWN CONTENT SIZE
  ========================== */
  .latestdropdwn-content,
.latestdropdwn-content b,
.latestdropdwn-content ul li,
.latestdropdwn-content .ip-check {
  font-size: 14px !important;
  line-height: 1.4;
}

/* ================= DONATE ================= */

.donate-row{
padding:6px 0;
}

.donate-label{
font-size:11px;
}

.donate-btn{
font-size:10px;
padding:3px 9px;
}


/* ================= BUTTONS ================= */

.dropdown-btn{
font-size:11px;
padding:6px 9px;
border-radius:16px;
}


/* ================= VIDEO ================= */

.video-embed iframe{
height:130px;
border-radius:8px;
}

}
/* =========================================================
TABLET (1024px and below)
Layout becomes slightly compact
========================================================= */

@media (max-width:1024px){

/* page */
#latest-page{
padding:25px 10px 25px 10px;
}

/* layout */
.latest-container{
grid-template-columns: 1fr 260px;
gap:20px;
}

/* featured */
.featured-title{
font-size:30px;
}
.featured-description {
    font-size: 14px;      /* smaller than title */
    line-height: 1.4;     /* spacing for readability */
    max-height: 120px;    /* optional: limits height if too long */
    overflow: hidden;     /* hide overflow */
    margin-bottom: 8px;
}
/* news grid */
.news-grid{
grid-template-columns:repeat(2,1fr);
}

}
/* ================= SMALL PHONES ================= */

@media (max-width:480px){

.latest-container{
grid-template-columns:1fr 165px;
gap:10px;
}

.news-grid{
grid-template-columns:1fr;
}

.featured-title{
font-size:20px;
}

.news-card h4{
font-size:12px;
}

.news-card p{
font-size:10px;
}

}

