/* ============================================================
   GLOBAL LAYOUT + BACKGROUND
   ============================================================ */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: url('../assets/images/background.png') center top / 100% 100vh no-repeat fixed;
    color: #fff;
    font-family: "Segoe UI", system-ui, sans-serif;
}

/* Push content right of sidebar */
.main-wrap {
    margin-left: 260px;
    padding: 40px;
}

/* ============================================================
   CONTENT PANEL (CHROME GLASS BOX)
   ============================================================ */
.content-panel {
    position: relative;
    padding: 40px 50px;
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    border: 3px solid transparent;
    background-clip: padding-box;
}

.content-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: 22px;
    background: linear-gradient(135deg, #aaa, #fff, #aaa);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-logo {
    max-width: 190px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 25px rgba(255,255,255,0.4));
}

.tagline {
    margin-bottom: 20px;
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Hero Title (Golden Amber Glow) */
.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #4ff;
    text-shadow:
        0 0 10px rgba(0,255,255,0.45),
        0 0 18px rgba(0,255,255,0.45),
        0 0 30px rgba(0,255,255,0.45);
}


/* Play Button (Golden Amber Neon) */
.button.play {
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
    background: #ffb300;
    text-decoration: none;
    box-shadow:
        0 0 20px #ffb300,
        0 0 40px #ffb300;
    transition: 0.2s ease;
}

.button.play:hover {
    background: #ffd35c;
    box-shadow:
        0 0 30px #ffd35c,
        0 0 60px #ffd35c;
}

/* ============================================================
   BUTTONS (GLOBAL)
   ============================================================ */
.button {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    color: #000;
    background: linear-gradient(135deg, #ff7b00, #ffb366);
    box-shadow: 0 0 15px rgba(255,123,0,0.6);
    transition: 0.2s ease;
}

.button:hover {
    background: linear-gradient(135deg, #ff9a2b, #ffd4a3);
    box-shadow: 0 0 25px rgba(255,123,0,0.9);
    transform: translateY(-2px);
}

/* ============================================================
   INPUT FIELDS
   ============================================================ */
.input-field {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #fff;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.4);
    transition: 0.2s ease;
    box-sizing: border-box; /* <-- this is the key line */
}


.input-field:focus {
    border-color: #00eaff;
    background: rgba(0,0,0,0.55);
    outline: none;
    box-shadow: 0 0 12px #00eaff;
}

/* ============================================================
   COMMENT BOXES
   ============================================================ */
.comment {
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    border-left: 4px solid #00eaff;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

/* ============================================================
   MESSAGE BOXES
   ============================================================ */
.msg {
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 10px;
    font-weight: 600;
}

.msg.success {
    background: rgba(0,255,100,0.15);
    border-left: 4px solid #00ff88;
}

.msg.error {
    background: rgba(255,0,0,0.15);
    border-left: 4px solid #ff003c;
}

/* ============================================================
   POLL
   ============================================================ */
.radio {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.poll-results p {
    margin: 5px 0;
}

/* ============================================================
   DJ SCHEDULE GRID
   ============================================================ */
.schedule {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.schedule-box {
    flex: 1;
    min-width: 240px;
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow:
        0 0 15px rgba(0,0,0,0.6),
        inset 0 0 10px rgba(255,255,255,0.05);
}

.schedule-box h3 {
    margin-bottom: 10px;
    text-shadow: 0 0 6px #00eaff;
}

/* ============================================================
   SECTION HEADERS (TONED DOWN)
   ============================================================ */
.section-title {
    margin-bottom: 1rem;
    font-size: 2rem;
    letter-spacing: 1px;
    text-shadow:
        0 0 6px rgba(0,255,255,0.4),
        0 0 12px rgba(0,255,255,0.4);
}

/* ============================================================
   NEON FLICKER (BLUE VERSION — MATCHES BANNERS)
   ============================================================ */
@keyframes neon-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
        text-shadow:
            0 0 10px rgba(0,255,255,0.45),
            0 0 18px rgba(0,255,255,0.45),
            0 0 30px rgba(0,255,255,0.45);
    }
    20%, 24%, 55% {
        opacity: 0.4;
        text-shadow: none;
    }
}

.neon-flicker {
    animation: neon-flicker 2.5s infinite;
}


/* ============================================================
   VINYL RECORD DIVIDER
   ============================================================ */
.vinyl-divider {
    width: 100%;
    height: 40px;
    margin: 30px 0;
    opacity: 0.7;
    background: url('../assets/images/vinyl.png') repeat-x;
    background-size: 40px 40px;
    animation: spin-vinyl 12s linear infinite;
}

@keyframes spin-vinyl {
    from { background-position: 0 0; }
    to { background-position: 1000px 0; }
}

/* ============================================================
   RADIO STATIC HOVER EFFECT
   ============================================================ */
.radio-static {
    position: relative;
    overflow: hidden;
}

.radio-static::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: url('../assets/images/static.png');
    mix-blend-mode: screen;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.radio-static:hover::after {
    opacity: 0.25;
    animation: radio-static 0.2s infinite;
}

/* ============================================================
   NEON SERVICE BUTTONS (SOFTER)
   ============================================================ */
.neon-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 6px;
    background: rgba(0,0,0,0.6);
    border: 2px solid #4ff;
    color: #4ff;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 0 6px rgba(0,255,255,0.45), inset 0 0 6px rgba(0,255,255,0.45);
    transition: 0.2s ease-in-out;
}

.neon-service-btn img {
    height: 40px;
    filter: drop-shadow(0 0 4px rgba(0,255,255,0.45));
}

.neon-service-btn:hover {
    background: rgba(0,0,0,0.9);
    box-shadow: 0 0 10px rgba(0,255,255,0.45), inset 0 0 10px rgba(0,255,255,0.45);
    transform: scale(1.05);
}

/* ============================================================
   CLOCK BOXES (SOFTER)
   ============================================================ */
.clock-box {
    padding: 15px 25px;
    border-radius: 8px;
    background: linear-gradient(145deg, #1a1a1a, #000);
    border: 2px solid #4ff;
    color: #4ff;
    font-size: 1.3rem;
    text-shadow: 0 0 6px rgba(0,255,255,0.45);
    box-shadow: 0 0 8px rgba(0,255,255,0.45), inset 0 0 8px rgba(0,255,255,0.45);
    min-width: 160px;
}

.clock-box strong {
    font-size: 0.9rem;
    color: #fff;
    text-shadow: 0 0 4px #fff;
}

/* ============================================================
   LIVE INDICATOR
   ============================================================ */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #ff0033;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff0033;
    animation: livePulse 1s infinite alternate;
}

@keyframes livePulse {
    from { opacity: 0.4; transform: scale(0.9); }
    to   { opacity: 1;   transform: scale(1.2); }
}

.live-text {
    color: #ff0033;
    font-weight: bold;
    text-shadow: 0 0 6px #ff0033;
}

/* ============================================================
   CENTERING UTILITIES
   ============================================================ */
.center-text {
    text-align: center;
}

.center-divider {
    margin-left: auto;
    margin-right: auto;
}

/* Side-by-side clocks */
.clock-flex {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 15px;
}

/* Center section titles */
.section-title.center-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
    text-align: center;
    padding: 40px 20px;
}

.neon-title {
    font-size: 2.6rem;
    color: #4ff;
    text-shadow: 0 0 10px rgba(0,255,255,0.45), 0 0 18px rgba(0,255,255,0.45);
    margin-bottom: 10px;
}

.about-tagline {
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.85;
}

.neon-card,
.content-box {
    background: rgba(0,0,0,0.55);
    border: 2px solid #4ff;
    border-radius: 10px;
    padding: 25px;
    margin: 25px auto;
    max-width: 800px;
    box-shadow: 0 0 8px rgba(0,255,255,0.45), inset 0 0 8px rgba(0,255,255,0.45);
    color: #fff;
}

.neon-card h3 {
    color: #4ff;
    text-shadow: 0 0 6px rgba(0,255,255,0.45);
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #e6e6e6;
    max-width: 700px;
    margin: 0 auto;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    margin: 10px 0;
    font-size: 1.15rem;
    color: #fff;
}

.content-box .button {
    margin-top: 15px;
}
/* NEWS BANNER */
.news-banner {
    text-align: center;
    margin-bottom: 30px;
}

/* Latest News Banner – Soft Neon Blue */
.news-banner-text {
    font-size: 3rem;
    color: #4ff; /* soft neon blue */
    text-shadow:
        0 0 10px rgba(0,255,255,0.45),
        0 0 18px rgba(0,255,255,0.45),
        0 0 28px rgba(0,255,255,0.45);
}


/* DJ ICON */
.news-dj-icon img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #4ff;
    box-shadow: 0 0 10px rgba(0,255,255,0.45);
    margin-bottom: 15px;
}

/* NEWS TITLE */
.news-title {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

/* FEATURED TAG */
.featured-tag {
    background: #ff0033;
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    box-shadow: 0 0 8px #ff0033;
}

/* META INFO */
.news-meta {
    margin-bottom: 15px;
    opacity: 0.85;
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.news-category {
    background: rgba(0,255,255,0.15);
    border: 1px solid #4ff;
    padding: 3px 8px;
    border-radius: 6px;
    text-shadow: 0 0 6px rgba(0,255,255,0.45);
}

/* PAGINATION */
.pagination a {
    margin: 0 10px;
}
/* TOP 50 BANNER */
.chart-banner {
    text-align: center;
    margin-bottom: 30px;
}

.chart-banner-text {
    font-size: 3rem;
    color: #4ff;
    text-shadow:
        0 0 10px rgba(0,255,255,0.45),
        0 0 18px rgba(0,255,255,0.45);
}

.chart-subtext {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* CHART GRID */
.chart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    margin: 20px auto;
}

/* CHART CARD */
.chart-card {
    background: rgba(0,0,0,0.55);
    border: 2px solid #4ff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 8px rgba(0,255,255,0.45), inset 0 0 8px rgba(0,255,255,0.45);
    transition: 0.2s ease;
}

.chart-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 14px rgba(0,255,255,0.6), inset 0 0 14px rgba(0,255,255,0.6);
}

/* RANK BADGE */
.rank-badge {
    font-size: 2rem;
    font-weight: bold;
    color: #4ff;
    text-shadow: 0 0 8px rgba(0,255,255,0.45);
    margin-bottom: 10px;
}

/* SPECIAL STYLING FOR TOP 3 */
.rank-1 .rank-badge {
    color: gold;
    text-shadow: 0 0 12px gold;
}

.rank-2 .rank-badge {
    color: silver;
    text-shadow: 0 0 12px silver;
}

.rank-3 .rank-badge {
    color: #cd7f32; /* bronze */
    text-shadow: 0 0 12px #cd7f32;
}

/* ALBUM ART */
.chart-art img {
    width: 100%;
    max-width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #4ff;
    box-shadow: 0 0 8px rgba(0,255,255,0.45);
    margin-bottom: 15px;
}

/* SONG INFO */
.chart-info h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 5px;
}

.chart-info p {
    font-size: 1rem;
    opacity: 0.85;
}
/* SCHEDULE BANNER */
.schedule-banner {
    text-align: center;
    margin-bottom: 30px;
}

.schedule-banner-text {
    font-size: 3rem;
    color: #4ff;
    text-shadow:
        0 0 10px rgba(0,255,255,0.45),
        0 0 18px rgba(0,255,255,0.45);
}

.schedule-subtext {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* DAY CARD */
.schedule-day {
    padding: 30px;
    text-align: center;
}

/* DAY TITLE */
.schedule-day-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #4ff;
    text-shadow: 0 0 10px rgba(0,255,255,0.45);
}

/* 3 COLUMN LAYOUT */
.schedule-columns {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* PERIOD HEADERS */
.schedule-period {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 0 6px rgba(255,255,255,0.4);
}

/* LIST */
.schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-list li {
    padding: 10px 15px;
    margin-bottom: 10px;
    background: rgba(0,0,0,0.45);
    border: 2px solid #4ff;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0,255,255,0.35);
    display: flex;
    justify-content: space-between;
    gap: 15px;
    transition: 0.2s ease;
}

.schedule-list li:hover {
    transform: scale(1.05);
    box-shadow: 0 0 14px rgba(0,255,255,0.6);
}

/* TIME + DJ NAME */
.schedule-time {
    font-weight: bold;
    color: #4ff;
    text-shadow: 0 0 6px rgba(0,255,255,0.45);
}

.schedule-dj {
    color: #fff;
    opacity: 0.9;
}
/* LIVE NOW highlight */
.live-now {
    border-color: #ff0033 !important;
    box-shadow:
        0 0 12px rgba(255,0,60,0.7),
        inset 0 0 12px rgba(255,0,60,0.5);
    position: relative;
    animation: livePulseSchedule 1.2s infinite alternate;
}

@keyframes livePulseSchedule {
    from { transform: scale(1); }
    to   { transform: scale(1.03); }
}

/* LIVE NOW badge */
.live-now-badge {
    background: #ff0033;
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    margin-left: 10px;
    box-shadow: 0 0 10px #ff0033;
    text-shadow: 0 0 6px #ff0033;
}
/* 2 COLUMN LAYOUT */
.schedule-columns-2 {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
/* REQUESTS BANNER */
.requests-banner {
    text-align: center;
    margin-bottom: 30px;
}

.requests-banner-text {
    font-size: 3rem;
    color: #4ff;
    text-shadow:
        0 0 10px rgba(0,255,255,0.45),
        0 0 18px rgba(0,255,255,0.45);
}

.requests-subtext {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* REQUEST CARDS */
.request-card h4 {
    font-size: 1.4rem;
    color: #4ff;
    text-shadow: 0 0 6px rgba(0,255,255,0.45);
}

.request-card span {
    color: #fff;
}

.request-card .dedication {
    color: #4ff;
    font-weight: bold;
    text-shadow: 0 0 6px rgba(0,255,255,0.45);
}
/* MOST REQUESTED SONGS */
.most-requested-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.most-requested-card {
    background: rgba(0,0,0,0.55);
    border: 2px solid #4ff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 8px rgba(0,255,255,0.45), inset 0 0 8px rgba(0,255,255,0.45);
    transition: 0.2s ease;
}

.most-requested-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 14px rgba(0,255,255,0.6), inset 0 0 14px rgba(0,255,255,0.6);
}

/* RANK BADGE */
.mr-rank {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #4ff;
    text-shadow: 0 0 8px rgba(0,255,255,0.45);
}

/* TOP 3 SPECIAL COLORS */
.rank-1 .mr-rank {
    color: gold;
    text-shadow: 0 0 12px gold;
}

.rank-2 .mr-rank {
    color: silver;
    text-shadow: 0 0 12px silver;
}

.rank-3 .mr-rank {
    color: #cd7f32;
    text-shadow: 0 0 12px #cd7f32;
}

/* SONG INFO */
.mr-info h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 5px;
}

.mr-info p {
    font-size: 1rem;
    opacity: 0.85;
}

.mr-count {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(0,255,255,0.15);
    border: 1px solid #4ff;
    color: #4ff;
    font-size: 0.9rem;
    text-shadow: 0 0 6px rgba(0,255,255,0.45);
}
/* DJ PAGE BANNER */
.dj-banner {
    text-align: center;
    margin-bottom: 30px;
}

.dj-banner-text {
    font-size: 3rem;
    color: #4ff;
    text-shadow:
        0 0 10px rgba(0,255,255,0.45),
        0 0 18px rgba(0,255,255,0.45);
}

.dj-subtext {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* DJ CARD */
.dj-card {
    padding: 30px;
    text-align: center;
}

/* DJ IMAGE */
.dj-image-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.dj-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #4ff;
    box-shadow: 0 0 12px rgba(0,255,255,0.45);
}

/* DJ NAME */
.dj-name {
    font-size: 2rem;
    color: #4ff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0,255,255,0.45);
}

/* DJ BIO */
.dj-bio {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #e6e6e6;
    max-width: 700px;
    margin: 0 auto;
}
/* FRIENDS PAGE BANNER */
.friends-banner {
    text-align: center;
    margin-bottom: 30px;
}

.friends-banner-text {
    font-size: 3rem;
    color: #4ff;
    text-shadow:
        0 0 10px rgba(0,255,255,0.45),
        0 0 18px rgba(0,255,255,0.45);
}

.friends-subtext {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* 2-COLUMN GRID */
.friends-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

/* FRIEND CARD */
.friend-card {
    padding: 30px;
    text-align: center;
}

/* FRIEND IMAGE */
.friend-image-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.friend-image {
    max-width: 260px;
    max-height: 160px;
    object-fit: contain;
    border-radius: 10px;
    border: 2px solid #4ff;
    box-shadow: 0 0 12px rgba(0,255,255,0.45);
}

/* FRIEND NAME */
.friend-name {
    font-size: 1.8rem;
    color: #4ff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0,255,255,0.45);
}

/* FRIEND DESCRIPTION */
.friend-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e6e6e6;
    max-width: 600px;
    margin: 0 auto 20px auto;
}

/* VISIT BUTTON */
.friend-btn {
    margin-top: 10px;
    font-size: 1rem;
    padding: 10px 20px;
}
/* CONTACT PAGE BANNER */
.contact-banner {
    text-align: center;
    margin-bottom: 30px;
}

.contact-banner-text {
    font-size: 3rem;
    color: #4ff;
    text-shadow:
        0 0 10px rgba(0,255,255,0.45),
        0 0 18px rgba(0,255,255,0.45);
}

.contact-subtext {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* CONTACT INFO CARD */
.contact-info-card {
    padding: 30px;
    max-width: 700px;
    margin: 0 auto;
}
/* JOIN PAGE BANNER */
.join-banner {
    text-align: center;
    margin-bottom: 30px;
}

.join-banner-text {
    font-size: 3rem;
    color: #4ff;
    text-shadow:
        0 0 10px rgba(0,255,255,0.45),
        0 0 18px rgba(0,255,255,0.45);
}

.join-subtext {
    font-size: 1.2rem;
    opacity: 0.8;
}
#track-text {
    display: block;
    text-align: center;
}
.content-box #track-text,
.content-box .track-info,
.content-box .nowplaying,
.content-box {
    text-align: center !important;
}
.content-box {
    text-align: center;
}
.content-box #track-text {
    display: block;
    text-align: center;
    width: 100%;
}
.neon-card.content-box,
.content-box {
    text-align: center !important;
}
/* ============================================================
   GLOBAL BUTTON FIXES — Prevent overflow and improve layout
   ============================================================ */

/* Ensure buttons never overflow their containers */
.button {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

/* Ensure button rows wrap cleanly */
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 15px;
}

/* Prevent overflow in cards and containers */
.neon-card,
.content-box,
.friend-card,
.request-card,
.dj-card {
    overflow: hidden;
    box-sizing: border-box;
}

/* Optional: make form buttons stack on narrow screens */
form .button {
    width: auto;
    min-width: 140px;
    text-align: center;
}
/* ----------------------------------------------------------
   GLOBAL FOOTER — SIDEBAR STYLE
---------------------------------------------------------- */

.site-footer {
    margin-top: 40px;
    padding: 40px 20px;
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    overflow: hidden;

    /* Brushed black chrome */
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    background-size: 200% 200%;

    /* Chrome shine */
    box-shadow:
        0 0 20px rgba(0,0,0,0.6),
        inset 0 0 10px rgba(255,255,255,0.05),
        inset 0 0 30px rgba(0,0,0,0.6);

    border: 2px solid #444;
    border-radius: 12px;
    z-index: 1;
}

.site-footer .neon-top,
.site-footer .neon-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 6px;
    filter: blur(2px);
    opacity: 0.9;
}

.site-footer .neon-top {
    top: 0;
    background: linear-gradient(to right, #00aaff, #ff7b00);
    box-shadow: 0 0 15px #00aaff, 0 0 30px #ff7b00;
}

.site-footer .neon-bottom {
    bottom: 0;
    background: linear-gradient(to right, #ff7b00, #00aaff);
    box-shadow: 0 0 15px #ff7b00, 0 0 30px #00aaff;
}

.site-footer a {
    color: #00aaff;
    text-decoration: none;
    margin: 0 8px;
    display: inline-block;
    transition: transform 0.25s ease, color 0.25s ease;
}

.site-footer a:hover {
    color: #0ff;
    transform: scale(1.15);
}
.news-card {
    padding: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.news-card h2 {
    color: #4ff;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0,255,255,0.45);
}


/* ==== Custom Oldies icon border + merged pages ==== */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at 12% 18%, rgba(0,255,255,.10), transparent 18%),
      radial-gradient(circle at 84% 20%, rgba(255,200,87,.12), transparent 20%),
      radial-gradient(circle at 20% 80%, rgba(255,123,0,.10), transparent 18%),
      radial-gradient(circle at 90% 76%, rgba(0,255,255,.08), transparent 20%);
    z-index: -1;
}
.page-decor {
    position: fixed;
    width: 92px;
    height: 92px;
    opacity: .26;
    pointer-events: none;
    z-index: 0;
    filter: drop-shadow(0 0 12px rgba(0,255,255,.35));
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    animation: decorFloat 9s ease-in-out infinite;
}
.decor-mic { top: 78px; left: 96px; background-image: url('/assets/icons/retro-mic.svg'); }
.decor-vinyl { top: 78px; right: 42px; background-image: url('/assets/icons/vinyl.svg'); animation-delay: -2s; }
.decor-jukebox { top: 48%; left: 38px; background-image: url('/assets/icons/jukebox.svg'); animation-delay: -4s; }
.decor-headphones { bottom: 86px; right: 56px; background-image: url('/assets/icons/headphones.svg'); animation-delay: -1s; }
.decor-note { bottom: 100px; left: 104px; background-image: url('/assets/icons/note.svg'); animation-delay: -5s; }
@keyframes decorFloat { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-12px) rotate(3deg)} }
.main-wrap,.content-panel,.site-footer { position: relative; z-index: 1; }
.service-buttons { display:flex; flex-wrap:wrap; justify-content:center; gap:14px; margin-top:22px; }
.pagination { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.form label { display:block; margin: 10px 0 6px; color:#aef; }
.request-card,.news-card,.dj-card,.friend-card,.team-card,.fan-card,.event-card,.player-card,.chat-card { padding:26px; margin-bottom:24px; text-align:left; }
.friends-grid,.fans-grid,.feature-grid,.chart-grid,.admin-grid-v2,.media-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:22px; }
.friend-card img,.fan-card img,.media-thumb { width:100%; max-height:220px; object-fit:cover; border-radius:12px; border:2px solid rgba(79,255,255,.4); box-shadow:0 0 12px rgba(0,255,255,.2); }
.friend-actions,.card-actions,.page-action-row,.button-row,.top-actions { display:flex; flex-wrap:wrap; gap:10px; align-items:center; }
.admin-topbar { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:18px; }
.admin-return,.admin-btn { display:inline-flex; align-items:center; justify-content:center; padding:10px 16px; border-radius:10px; color:#4ff; text-decoration:none; background:rgba(0,20,30,.72); border:1px solid rgba(79,255,255,.35); box-shadow:0 0 10px rgba(0,255,255,.16); }
.admin-btn.primary,.admin-return:hover,.admin-btn:hover { background:rgba(0,70,84,.88); box-shadow:0 0 16px rgba(0,255,255,.3); }
.admin-title { margin-top:0; }
.admin-note { opacity:.82; }
.admin-stat-grid,.admin-form-grid,.page-builder-grid,.admin-grid-2 { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:16px; }
.admin-stat-card,.admin-card-panel,.nav-link-row,.chat-mod-row,.page-list-row { background:rgba(0,0,0,.34); border:1px solid rgba(79,255,255,.22); border-radius:14px; padding:18px; }
.admin-card-link { display:flex; flex-direction:column; justify-content:space-between; min-height:150px; padding:22px; background:rgba(10,20,30,.75); border-radius:14px; border:2px solid rgba(0,255,255,0.22); color:#dffaff; text-decoration:none; box-shadow:0 0 14px rgba(0,255,255,.12); transition:.2s ease; }
.admin-card-link:hover { transform:translateY(-4px); border-color:#4ff; box-shadow:0 0 22px rgba(0,255,255,.26); }
.card-emoji { font-size:2rem; margin-bottom:10px; }
.card-title { font-size:1.2rem; font-weight:700; color:#4ff; }
.card-desc,.card-foot,.admin-stat-meta { opacity:.86; }
.admin-stat-value { font-size:2rem; color:#ffc857; font-weight:800; }
.admin-table { width:100%; border-collapse:collapse; }
.admin-table th,.admin-table td { padding:10px 12px; border-bottom:1px solid rgba(255,255,255,.08); text-align:left; }
.chat-box { max-height:360px; overflow:auto; display:flex; flex-direction:column; gap:10px; }
.chat-msg { background:rgba(255,255,255,.06); border:1px solid rgba(79,255,255,.18); border-radius:12px; padding:12px; }
.chat-msg.admin { border-color:rgba(255,200,87,.34); }
.chat-msg .meta { display:flex; justify-content:space-between; gap:12px; font-size:.9rem; opacity:.8; margin-bottom:6px; }
.request-input,.request-textarea,.admin-input { width:100%; padding:14px; border-radius:10px; border:2px solid rgba(255,255,255,.15); background:rgba(0,0,0,.4); color:#fff; box-sizing:border-box; }
.request-field { margin-bottom:14px; }
.emoji-panel { display:none; margin:10px 0; padding:14px; border-radius:12px; background:rgba(0,0,0,.55); border:1px solid rgba(79,255,255,.22); }
.emoji-panel.open { display:block; }
.emoji-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(44px,1fr)); gap:8px; margin-top:10px; }
.emoji-pick { font-size:1.4rem; padding:8px; border-radius:10px; border:1px solid rgba(79,255,255,.22); background:rgba(255,255,255,.05); color:#fff; cursor:pointer; }
.hero-image img { width:100%; max-height:320px; object-fit:cover; border-radius:14px; border:2px solid rgba(79,255,255,.2); }
.rich-content { line-height:1.7; }
.page-builder-preview,.page-wireframe-empty { border-radius:12px; padding:18px; background:rgba(255,255,255,.05); border:1px dashed rgba(79,255,255,.2); }
.media-thumb-wrap { display:flex; flex-direction:column; gap:10px; }
.main-wrap {
  margin: 0 24px 0 168px;
  width: min(1360px, calc(100vw - 216px));
  padding: 34px 32px 26px;
  box-sizing: border-box;
}
.site-footer {
  display: block;
  width: min(820px, 100%);
  max-width: 820px;
  margin: 34px auto 28px;
  box-sizing: border-box;
  clear: both;
}

@media (min-width: 981px){
  .main-wrap {
    margin-left: 168px;
    width: min(1360px, calc(100vw - 216px));
  }
}

@media (min-width: 1200px){
  .main-wrap {
    margin-left: 176px;
    width: min(1500px, calc(100vw - 232px));
  }
}

@media (max-width: 980px){
  .page-decor { display:none; }
  .main-wrap,
  .site-footer {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 32px);
  }
  .main-wrap { padding: 24px 16px; max-width: none; }
  .site-footer { margin-top: 24px; margin-bottom: 20px; max-width: 820px; }
}
