body {
    background-color: #0b0c10;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.western-pop-cat{
    color: #ffffff;
}
.western-pop-cat a {
    color: inherit;
    text-decoration: none;
}

/* BACKGROUND ANIMATED GLOWS */
.western-pop-cat .glow-bg-1 {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.35) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(80px);
    z-index: -2;
    animation: western-pop-cat-pulseGlow 8s infinite alternate ease-in-out;
}

.western-pop-cat .glow-bg-2 {
    position: fixed;
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(100px);
    z-index: -2;
    animation: western-pop-cat-pulseGlow 10s infinite alternate-reverse ease-in-out;
}

@keyframes western-pop-cat-pulseGlow {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.2) translate(30px, -30px); }
}

/* NAVBAR */
.western-pop-cat .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(11, 12, 16, 0.6);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.western-pop-cat .category-title {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #ff007f, #00f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.western-pop-cat .nav-action-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff007f, #00f0ff);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
    transition: all 0.3s ease;
}

.western-pop-cat .nav-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.5);
}

/* HERO SECTION */
.western-pop-cat .hero-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 35px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    align-items: start;
}

.western-pop-cat .hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff007f, #00f0ff, #ff007f);
    background-size: 200% 100%;
    animation: western-pop-cat-gradientMove 4s linear infinite;
}

@keyframes western-pop-cat-gradientMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* LEFT SIDE: ALBUM + TEXT (STACKED UP & DOWN) */
.western-pop-cat .hero-left-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.western-pop-cat .album-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 0, 127, 0.3);
    transition: transform 0.4s ease;
    display: block;
}

.western-pop-cat .album-wrapper:hover {
    transform: scale(1.02) rotate(-1deg);
}

.western-pop-cat .album-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.western-pop-cat .song-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.western-pop-cat .genre-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 5px 14px;
    background: rgba(255, 0, 127, 0.2);
    border: 1px solid #ff007f;
    color: #ff77b4;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.western-pop-cat .genre-badge:hover {
    background: rgba(255, 0, 127, 0.4);
}

.western-pop-cat .song-title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.western-pop-cat .artist-name {
    font-size: 1.1rem;
    color: #66fcf1;
    font-weight: 700;
}

.western-pop-cat .meta-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #8e8e93;
    font-size: 0.85rem;
    margin-top: 4px;
}

/* VIEW FULL LYRICS BUTTON */
.western-pop-cat .view-full-lyrics-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 12px 20px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid #00f0ff;
    color: #00f0ff;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
}

.western-pop-cat .view-full-lyrics-btn:hover {
    background: #00f0ff;
    color: #0b0c10;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

/* RIGHT SIDE: YOUTUBE EMBED CONTAINER */
.western-pop-cat .hero-right-content {
    width: 100%;
}

.western-pop-cat .video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.western-pop-cat .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* TOOLBAR & CONTROLS */
.western-pop-cat .controls-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 20px 0;
    padding: 0 10px;
}

.western-pop-cat .section-headline {
    font-size: 1.5rem;
    font-weight: 700;
    border-left: 4px solid #ff007f;
    padding-left: 12px;
}

/* LYRICS SECTION */
.western-pop-cat .lyrics-container-pre {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.western-pop-cat .lyric-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px 25px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.western-pop-cat .lyric-block:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateX(8px);
    box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.3);
}

.western-pop-cat .lyric-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

/* THUMBNAIL LINK & IMG */
.western-pop-cat .lyric-thumb-link {
    display: block;
    flex: 0 0 48px;
    height: 48px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #00f0ff;
    transition: transform 0.2s ease;
}

.western-pop-cat .lyric-thumb-link:hover {
    transform: scale(1.08);
}

.western-pop-cat .lyric-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.western-pop-cat .lyric-meta {
    display: flex;
    flex-direction: column;
}

/* SONG TITLE LINK */
.western-pop-cat .lyric-song-title-link {
    display: inline-block;
}

.western-pop-cat .lyric-song-title {
    font-size: 1.05rem; /* 放大的歌名 */
    font-weight: 700;
    color: #ffffff;
    transition: color 0.2s ease;
}

.western-pop-cat .lyric-song-title-link:hover .lyric-song-title {
    color: #00f0ff;
}

.western-pop-cat .lyric-artist-name {
    font-size: 0.85rem; /* 放大的歌手名 */
    color: #8e8e93;
    margin-top: 2px;
}

.western-pop-cat .lyric-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* LYRICS TEXT (SLIGHTLY REDUCED SIZE) */
.western-pop-cat .lyric-west {
    font-size: 1.05rem; /* 略小一點的歌詞 */
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
}

.western-pop-cat .lyric-tw {
    font-size: 0.98rem; /* 略小一點的翻譯 */
    font-weight: 400;
    color: #45f3ff;
    line-height: 1.5;
}

/* RESPONSIVE DESIGN FOR MOBILE */
@media (max-width: 900px) {
    .western-pop-cat .hero-card {
        grid-template-columns: 1fr; /* 切換為單欄 */
        gap: 25px;
        padding: 20px;
    }

    .western-pop-cat .album-wrapper {
        max-width: 260px;
        margin: 0 auto;
    }

    .western-pop-cat .song-details {
        text-align: center;
        align-items: center;
    }

    .western-pop-cat .genre-badge {
        align-self: center;
    }

    .western-pop-cat .song-title {
        font-size: 1.8rem;
    }

    .western-pop-cat .controls-wrapper {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}