body {
    margin: 0;
    background: radial-gradient(circle at top left, #101827 0%, #070b14 45%, #03050a 100%);
    color: white;
    font-family: 'Times New Roman', Times, serif;
}

main {
    border-top: 2px solid #f5c542;
    border-bottom: 2px solid #f5c542;
}

/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero {
    text-align: center;
    padding: clamp(30px, 6vw, 50px) 20px;
}

/* OUTER BORDER */
.hero-container {
    max-width: 1100px; /* 🔥 tighter */
    margin: auto;
    border-radius: 20px;
    padding: 2px;

    animation: glowPulse 6s ease-in-out infinite;

    background: linear-gradient(135deg, 
        #ff8c42, 
        #f5c542, 
        #9b5cff, 
        #4da6ff
    );
}

/* 🔥 toned-down glow */
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 
      0 0 15px rgba(255, 140, 66, 0.2),
      0 0 30px rgba(155, 92, 255, 0.15);
  }

  50% {
    box-shadow: 
      0 0 25px rgba(255, 140, 66, 0.35),
      0 0 50px rgba(155, 92, 255, 0.25);
  }
}

/* INNER */
.hero-inner {
    background: #070b14;
    border-radius: 18px;
    padding: clamp(25px, 4vw, 40px);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 5vw, 60px);
}

/* ============================= */
/* TEXT */
/* ============================= */
.hero-content {
    max-width: 520px; /* 🔥 better readability */
    text-align: left; /* 🔥 desktop fix */
}

.logo-text {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    color: #f5c542;
    margin-bottom: 15px;
}

.tagline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #dcdcdc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.hero-content p {
    color: #bfbfbf;
}

/* ============================= */
/* IMAGE */
/* ============================= */
.hero-image {
    max-width: 380px; /* 🔥 slightly smaller */
    width: 100%;
}

.image-border {
    padding: 2px;
    border-radius: 16px;

    background: linear-gradient(135deg, 
        #ff8c42, 
        #f5c542, 
        #9b5cff, 
        #4da6ff
    );

    transition: 0.3s;
}

.image-border:hover {
    box-shadow: 0 0 20px rgba(255, 140, 66, 0.4);
}

.logo-img {
    display: block;
    width: 100%;
    border-radius: 14px;
    background: #070b14;
    padding: clamp(10px, 2vw, 15px);
}

/* ============================= */
/* BUTTONS */
/* ============================= */
.buttons-format {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;

    justify-content: flex-start; /* 🔥 desktop fix */
}

.radio-button {
    background: linear-gradient(135deg, #f5c542, #ff8c42);
    color: #000;
    border: none;
    padding: clamp(12px, 2vw, 16px) clamp(20px, 3vw, 30px);
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.25s ease;
}

.radio-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 140, 66, 0.5);
}

/* ============================= */
/* TABLET */
/* ============================= */
@media (max-width: 900px) {

    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .buttons-format {
        justify-content: center;
    }

    .hero-image {
        max-width: 260px;
    }
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 480px) {

    .hero {
        padding: 40px 15px;
    }

    .hero-inner {
        padding: 20px;
    }

    .buttons-format {
        flex-direction: column;
        align-items: center;
    }

    .radio-button {
        width: 100%;
        max-width: 260px;
    }
}



/* ============================= */
/* RADIO SECTION */
/* ============================= */
#radio-section {
    display: none; /* keep hidden */
}

/* WRAPPER */
.radio-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(20px, 4vw, 30px);
    padding: clamp(20px, 6vw, 40px) 20px;
}

/* ============================= */
/* MAIN PLAYER CARD */
/* ============================= */
.radio-container {
    display: flex;
    align-items: center;
    gap: clamp(25px, 5vw, 60px);

    width: 100%;
    max-width: 1100px;
    margin: 0 auto;

    padding: clamp(25px, 5vw, 40px);
    border-radius: 25px;

    background: #070b14; /* 🔥 FIX */
    box-shadow:
        0 0 60px rgba(0,0,0,0.6),
        0 0 120px rgba(0,0,0,0.4);
}

/* ============================= */
/* IMAGE */
/* ============================= */
.cover-photo {
    width: clamp(180px, 30vw, 300px);
    height: clamp(180px, 30vw, 300px);
    object-fit: cover;
    border-radius: 14px;

    flex-shrink: 0; /* 🔥 prevents squish */
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
}

/* ============================= */
/* TEXT BLOCK */
/* ============================= */
.radio-info {
    max-width: 500px; /* 🔥 keeps text readable */
}

.radio-text {
    font-size: clamp(26px, 5vw, 42px);
    font-weight: bold;
    margin-bottom: 10px;
}

.radio-subtext {
    font-size: clamp(14px, 2.5vw, 16px);
    color: #bbb;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 900px) {

    .radio-container {
        flex-direction: column; /* 🔥 stack */
        text-align: center;
    }

    .radio-info {
        max-width: 100%;
    }
}

@media (max-width: 500px) {

    .cover-photo {
        width: 100%;
        max-width: 250px;
        height: auto;
    }

}

/* ============================= */
/* RECENTLY PLAYED SECTION */
/* ============================= */
.recent-tracks {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto; /* 🔥 FIX */

    padding: clamp(20px, 4vw, 40px);
    background: rgba(255,255,255,0.02);
    border-radius: 20px;

    backdrop-filter: blur(10px);
}

/* HEADING */
.recent-tracks h3 {
    font-size: clamp(20px, 3vw, 28px);
    margin-bottom: clamp(15px, 3vw, 30px);
    font-weight: bold;
}

/* ============================= */
/* TRACK LIST */
/* ============================= */
#recent-list {
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 3vw, 20px);
}

/* ============================= */
/* ITEM */
/* ============================= */
.recent-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;

    padding: clamp(12px, 2.5vw, 15px) clamp(15px, 3vw, 20px);
    border-radius: 15px;
    background: rgba(255,255,255,0.03);

    transition: 0.25s ease;
}

.recent-item:hover {
    background: rgba(255,255,255,0.06);
}

/* ============================= */
/* LEFT SIDE */
/* ============================= */
.recent-left {
    display: flex;
    align-items: center;
    gap: clamp(10px, 2vw, 18px);
    min-width: 0; /* 🔥 prevents overflow */
}

.recent-cover {
    width: clamp(45px, 8vw, 65px);
    height: clamp(45px, 8vw, 65px);
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-title {
    font-size: clamp(15px, 2.5vw, 18px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recent-time {
    font-size: clamp(12px, 2vw, 14px);
    opacity: 0.6;
    white-space: nowrap;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 600px) {

    .recent-item {
        flex-direction: column; /* 🔥 stack */
        align-items: flex-start;
    }

    .recent-time {
        align-self: flex-end;
    }

}



/* ============================= */
/* TIER SECTION */
/* ============================= */
.tiers {
    padding: 40px 20px;
}

.tiers-container {
    max-width: 1200px;
    margin: auto;
}

/* ============================= */
/* GRID (FIXED) */
/* ============================= */
.tiers-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* 🔥 FIX */
    gap: 30px;
}

/* ============================= */
/* HEADING */
/* ============================= */
.tiers-heading {
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 50px;
    color: #f5c542;
    text-align: center;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(245, 197, 66, 0.4),
        0 0 25px rgba(245, 197, 66, 0.2);
}

/* ============================= */
/* CARD */
/* ============================= */
.tiers-section {
    position: relative;
    border-radius: 20px;
    padding: 30px 20px 40px;
    background: #070b14;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;

    box-shadow: inset 0 0 20px rgba(255,255,255,0.03);
}

/* Glow layer */
.tiers-section::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.6;
    filter: blur(12px);
    transition: 0.3s ease;
}

/* Hover */
.tiers-section:hover {
    transform: translateY(-6px); /* 🔥 reduced (less breakage) */
}

.tiers-section:hover::before {
    opacity: 1;
}

/* ============================= */
/* FEATURED CARD (FIXED) */
/* ============================= */
.tiers-section:nth-child(3) {
    border: 2px solid #ff8c42;
    box-shadow: 0 0 25px rgba(255, 140, 66, 0.3);
}

/* ============================= */
/* COLORS */
/* ============================= */
.tiers-section:nth-child(1) { border-color: rgba(77,166,255,0.4); }
.tiers-section:nth-child(2) { border-color: rgba(155,92,255,0.4); }
.tiers-section:nth-child(4) { border-color: rgba(255,70,140,0.4); }

.tiers-section:nth-child(1)::before { background: rgba(0,170,255,0.5); }
.tiers-section:nth-child(2)::before { background: rgba(155,92,255,0.5); }
.tiers-section:nth-child(4)::before { background: rgba(255,70,140,0.5); }

/* ============================= */
/* BADGE */
/* ============================= */
.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff8c42, #ffb347);
    color: black;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

/* ============================= */
/* HEADER */
/* ============================= */
.section-heading {
    text-align: center;
    border-radius: 20px;
    padding: 14px;
    font-weight: bold;
    color: white;
}

.section-heading::after {
    content: "";
    display: block;
    height: 2px;
    margin-top: 8px;
    border-radius: 10px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    opacity: 0.4;
}

/* Header colors */
.tiers-section:nth-child(1) .section-heading {
    background: rgba(0,170,255,0.15);
}

.tiers-section:nth-child(2) .section-heading {
    background: rgba(155,92,255,0.15);
}

.tiers-section:nth-child(3) .section-heading {
    background: rgba(255,140,66,0.2);
}

.tiers-section:nth-child(4) .section-heading {
    background: rgba(255,70,140,0.15);
}

/* ============================= */
/* PRICE */
/* ============================= */
.section-subheading {
    text-align: center;
    font-size: 26px;
    margin-top: 12px;
    color: #f5c542;
    font-weight: bold;
}

/* ============================= */
/* TEXT */
/* ============================= */
.section-text {
    font-size: 15px;
    color: #dcdcdc;
    text-align: center;
}

/* ============================= */
/* BULLETS (FIXED) */
/* ============================= */
.section-bulletpoints {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-bulletpoints li {
    position: relative;
    padding-left: 18px;
}

.section-bulletpoints li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff8c42;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {
    .tiers {
        padding: 30px 15px;
    }
}




/* ============================= */
/* COVER SECTION */
/* ============================= */
.cover {
    padding: clamp(30px, 5vw, 60px) 20px;
}

/* OUTER GRADIENT BORDER */
.cover-container {
    max-width: 1100px;
    margin: 0 auto; /* 🔥 FIX */

    border-radius: 20px;
    padding: 2px;

    background: linear-gradient(135deg, 
        #ff8c42, 
        #f5c542, 
        #9b5cff, 
        #4da6ff
    );
}

/* INNER CONTENT */
.cover-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;

    background-color: #070b14;
    border-radius: 18px;
    padding: clamp(30px, 5vw, 60px);

    box-shadow: 0 0 25px rgba(244,197,108,0.2);
}

/* RIGHT CARD */
.cover-right {
    border: 2px solid #ff8c42;
    border-radius: 20px;
    padding: 25px;
}

/* ============================= */
/* TEXT */
/* ============================= */
.cover-heading {
    font-size: clamp(26px, 4vw, 40px);
    color: #f4c56c;
    font-weight: bold;
}

.cover-text {
    font-size: clamp(15px, 2vw, 18px);
    margin-top: 20px;
    color: #ddd;
}

/* LIST */
.cover-list {
    margin-top: 15px;
    padding-left: 18px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    font-size: 20px;
    color: #e6e6e6;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 900px) {

    .cover-sections {
        grid-template-columns: 1fr; /* 🔥 STACK */
        gap: 30px;
    }

    .cover-right {
        padding: 20px;
    }
}

@media (max-width: 500px) {

    .cover {
        padding: 30px 15px;
    }

    .cover-sections {
        padding: 25px 20px;
    }

    .cover-list {
        font-size: 15px;
    }
}

/* ============================= */
/* INFO SECTION */
/* ============================= */
.info {
    padding: 40px 20px;
}

/* CONTAINER */
.info-container {
    max-width: 1100px;
    margin: 0 auto; /* 🔥 FIX */

    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

/* CARD WRAPPER (gradient border) */
.info-section {
    border-radius: 20px;
    padding: 2px;

    background: linear-gradient(135deg, 
        #9b5cff, 
        #4da6ff
    );
}

/* INNER CARD */
.info-inner-section {
    background-color: #070b14;
    border-radius: 18px;
    padding: clamp(25px, 4vw, 40px);
}

/* ============================= */
/* TEXT */
/* ============================= */
.info-heading {
    font-size: clamp(26px, 4vw, 40px);
    margin-bottom: 25px;
    color: #f4c56c;
    font-weight: bold;
}

/* LIST */
.info-list {
    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: column;
    gap: 16px;

    font-size: 20px;
    color: #e6e6e6;
}

.info-list li {
    transition: 0.3s;
}

.info-list li:hover {
    color: #f4c56c;
    transform: translateX(5px);
}

/* ============================= */
/* GRID (table style) */
/* ============================= */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.info-grid > div {
    padding: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* labels + values */
.grid-label {
    color: #aaa;
    font-size: 15px;
}

.grid-value {
    font-size: 15px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 900px) {

    .info-container {
        grid-template-columns: 1fr; /* 🔥 STACK */
    }

}

@media (max-width: 500px) {

    .info {
        padding: 30px 15px;
    }

    .info-inner-section {
        padding: 20px;
    }

    .info-grid {
        grid-template-columns: 1fr; /* 🔥 stack label/value */
    }

    .grid-label {
        font-weight: bold;
    }
}