@keyframes scroll {
    0%,20%,to {
        transform: translateX(0)
    }

    90%,98% {
        transform: translateX(-100%)
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto,sans-serif
}

body {
    background-color: var(--background-dark);
    color: var(--text-primary);
    padding-bottom: 100px
}

.nav-container {
    background: var(--surface-dark);
    box-shadow: 0 2px 5px rgba(0,0,0,.3);
    position: sticky;
    top: 0;
    z-index: 1000
}

.main-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center
}

.station-selector {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.station-selector-toggle {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    font-size: 12px;
    transition: transform 0.3s;
}

.station-selector-toggle.active {
    transform: rotate(180deg);
}

.current-station,.station-dropdown {
    background: var(--surface-dark);
    border-radius: 4px
}

.current-station {
    display: flex;
    align-items: center;
    padding: .1rem;
    border: 0;
    cursor: pointer;
    width: 250px;
    aspect-ratio: 4/1;
    justify-content: center;
    text-decoration: none;
    display: block;
}

.current-station img,.station-option img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.station-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid var(--border-color);
    margin-top: .5rem;
    z-index: 1000;
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px;
}

.nav-item:hover .submenu,.station-selector.active .station-dropdown {
    display: block
}

.station-option {
    padding: .5rem;
    cursor: pointer;
    transition: background-color .2s;
    aspect-ratio: 4/1
}

.station-option:hover {
    background: rgba(255,255,255,.1)
}

.menu-toggle,.nav-item>a {
    padding: 1rem;
    color: var(--text-primary)
}

.menu-toggle {
    display: none;
    background: 0 0;
    border: 0;
    font-size: 1.5rem;
    cursor: pointer
}

.nav-items {
    display: flex;
    list-style: none
}

.nav-item {
    position: relative
}

.nav-item>a {
    display: block;
    text-decoration: none;
    font-weight: 700
}

.nav-item>a:hover {
    color: var(--website-primary-color)
}

.submenu,footer {
    background: var(--surface-dark)
}

.submenu {
    display: none;
    position: absolute;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,.3);
    list-style: none;
    border: 1px solid var(--border-color);
    border-radius: 4px
}

.submenu a {
    display: block;
    padding: .75rem 1rem
}


.newsletter-form input {
    padding: .5rem;
    margin-right: .5rem;
    border: 0;
    border-radius: 4px;
}

.newsletter-form button {
    padding: .5rem 1rem;
    background: var(--website-primary-color);
    border: 0;
    border-radius: 4px;
    color: #fff;
    cursor: pointer
}

.newsletter-form input {
    background: rgba(255,255,255,.1);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.submenu a:hover {
    background: rgba(255,255,255,.1);
    color: var(--text-primary);
}

.newsletter-description,.listen-apps-description {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.charts-newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.charts-newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.2s, background-color 0.2s;
}

.charts-newsletter-form input:focus {
    outline: none;
    border-color: var(--website-primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.charts-newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--website-primary-color);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.charts-newsletter-form button:hover {
    opacity: 0.9;
}

@media (max-width: 480px) {
    .charts-newsletter-form {
        flex-direction: column;
    }
    
    .charts-newsletter-form input,
    .charts-newsletter-form button {
        width: 100%;
    }
}

footer {
    color: var(--text-primary);
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color)
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 2rem
}

.footer-section h3 {
    margin-bottom: 1rem
}

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 280px;
}

.social-links a {
    text-decoration: none;
    margin: 0 8px;
}

.social-links a svg {
    width: 24px;
    height: 24px;
    fill: var(--text-primary);
    transition: transform 0.2s ease;
}

.social-links a:hover svg {
    transform: scale(1.2);
}

.submenu a {
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-section h3,.social-links a:hover {
    color: var(--website-primary-color)
}

/* Footer Charts */

.footer-chart-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
    border-radius: 8px;
}

.footer-chart-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-chart-image {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    object-fit: cover;
}

.footer-chart-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chart-title {
    color: var(--text-primary);
    font-weight: 500;
}

.chart-date {
    color: var(--text-secondary);
    font-size: 12px;
}

/* Footer News */

.footer-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rss-feed-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--website-primary-color);
    opacity: 0.7;
    transition: opacity 0.2s, transform 0.2s;
}

.rss-feed-link:hover {
    opacity: 1;
    transform: scale(1.1);
}

.rss-feed-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-news-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
    border-radius: 8px;
}

.footer-news-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-news-image {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    object-fit: cover;
}

.footer-news-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
}

.news-title {
    color: var(--text-primary);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-date {
    color: var(--text-secondary);
    font-size: 12px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-link:hover {
    color: var(--website-primary-color);
}

@media (max-width:768px) {
    .main-nav {
        flex-wrap: nowrap
    }

    .footer-links {
        gap: 0.5rem;
    }

    .station-selector {
        order: -1;
        width: auto;
        margin-right: 0;
        flex: 1;
    }

    .current-station {
        width: 100%;
        max-width: 250px;
    }

    .station-dropdown {
        width: 250px;
        left: 0;
    }

    .station-option {
        padding: .25rem;
    }

    .menu-toggle {
        display: block
    }

    .nav-items {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--surface-dark)
    }

    .nav-items.active {
        display: flex
    }

    .submenu {
        position: static;
        background: rgba(255,255,255,.05)
    }

    .nav-item:hover .submenu,.submenu {
        display: none
    }

    .nav-item.active .submenu {
        display: block
    }
}

@media (max-width: 480px) {
    .current-station {
        max-width: 150px;
    }

    .station-dropdown {
        width: 200px;
    }

    .station-selector-toggle {
        padding: 3px;
        font-size: 10px;
    }
}

#volume-control::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,.4);
    cursor: pointer;
    transition: all .2s;
    border: 2px solid var(--player-primary-color)
}

#volume-control::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border: 2px solid var(--player-primary-color);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,.4);
    cursor: pointer;
    transition: all .2s
}

#volume-control::-webkit-slider-thumb:active,#volume-control::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--player-primary-color)
}

#volume-control::-moz-range-thumb:active,#volume-control::-moz-range-thumb:hover {
    transform: scale(1.2);
    background: var(--player-primary-color)
}

#volume-control:hover {
    height: 6px
}

#audio-player,#player-station-list {
    position: fixed;
    background: var(--surface-dark)
}

#audio-player {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--border-color);
    z-index: 1000;
    flex-wrap: wrap;
    gap: 1rem
}

#player-station-list {
    width: 300px;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem;
    z-index: 999;
    display: none;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    max-height: 60vh;
    overflow-y: auto;
    box-shadow: 0-4px 20px rgba(0,0,0,.3)
}

#player-station-list h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--border-color)
}

#station-logo,.player-station-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer
}

.player-station-option {
    padding: .75rem;
    border-radius: 8px;
    transition: all .2s ease
}

#station-logo img,.player-station-option img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px
}

.player-station-option div {
    flex: 1
}

.player-station-option span {
    color: var(--text-primary);
    font-weight: 700
}

.player-station-option p {
    color: var(--text-secondary);
    font-size: .8rem;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%
}

.player-track-info {
    width: 150px;
    overflow: hidden;
}

#player-track-title {
    font-size: .9rem;
    width: 100%;
    max-width: 200px;
    white-space: nowrap
}

#player-track-artist {
    font-size: .8rem;
    color: var(--text-secondary);
    width: 100%;
    max-width: 200px;
    white-space: nowrap
}

.player-track-title-link {
    color: inherit;
    text-decoration: none;
}

.player-track-title-link:hover {
    color: var(--website-primary-color);
}

.player-track-artist-link {
    color: inherit;
    text-decoration: none;
}

.player-track-artist-link:hover {
    color: var(--website-primary-color);
}

.player-show-link {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.player-show-link:hover {
    color: var(--website-primary-color);
}

.on-air-indicator {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-on-air 1.5s ease-in-out infinite;
    box-shadow: 0 0 4px #ef4444;
}

@keyframes pulse-on-air {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.9);
    }
}

#station-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.station-logo-clickable {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

#station-logo {
    cursor: default;
}

#station-toggle-arrow {
    font-size: 1.2rem;
    color: #fff;
    transform: rotate(0deg);
    transition: transform .3s
}

#track-artist,#track-title {
    text-overflow: ellipsis
}

#audio-player>div:last-child {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 300px;
    flex: 0 1 200px;
    min-width: 100px
}

#audio-player>div:nth-child(2) {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 1rem;
    flex: 0 0 auto
}

#play-button {
    padding: .5rem;
    border: 0;
    background: var(--player-primary-color);
    color: var(--text-primary);
    border-radius: 50%;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s,background-color .2s
}

/* HDR display enhancement for play button */
@media (dynamic-range: high) {
    #play-button {
        background: var(--player-primary-color-hdr, var(--player-primary-color));
        box-shadow: 0 0 20px var(--player-primary-color-hdr-glow, transparent);
    }
    #play-button:hover {
        filter: brightness(1.15);
        box-shadow: 0 0 30px var(--player-primary-color-hdr-glow, transparent);
    }
}

#volume-control {
    width: 100px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right,var(--player-primary-color) 0%,var(--player-primary-color) 50%,rgba(255,255,255,.1) 50%,rgba(255,255,255,.1) 100%);
    height: 4px;
    border-radius: 2px;
    cursor: pointer;
    transition: height .2s ease-in-out
}

@media (max-width:768px) {
    #audio-player {
        padding: 1rem;
        justify-content: space-between
    }

    #audio-player>div:nth-child(2) {
        order: 2;
        margin: 0
    }

    #audio-player>div:last-child {
        order: 3;
        flex: 1
    }
}

@media (max-width:480px) {
    #audio-player {
        padding: .75rem
    }

    #station-logo img {
        width: 48px;
        height: 48px
    }

    #volume-control {
        width: 80px
    }
}

#track-artist,#track-title {
    margin: 0;
    position: relative;
    width: 100%;
    max-width: 200px;
    overflow: hidden;
    white-space: nowrap
}

#track-artist span,#track-title span {
    display: inline-block;
    padding-right: 50px;
    animation: scroll 15s linear infinite;
    animation-play-state: running
}

#track-title {
    font-size: .9rem
}

#track-artist {
    font-size: .8rem;
    color: var(--text-secondary)
}

main {
    min-height: 500px;
    padding: 2rem
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: block
}

.left-row {
    flex: 1;
    min-width: 0;
    width: 70%
}

.right-row {
    width: 30%;
    min-width: 300px
}

.content-block {
    background: var(--surface-dark);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color)
}

.content-block h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem
}

.content-block p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem
}

.content-columns {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

@media (max-width:1024px) {
    .row-container {
        flex-direction: column
    }

    .left-row,.right-row {
        width: 100%
    }

    .right-row {
        margin-top: 1rem
    }

    .main-content,main {
        padding: 0
    }
}

.row-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%
}

.preview-button {
    position: relative;
    overflow: hidden
}

.preview-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.3);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform .1s linear;
    pointer-events: none
}

.main-page-1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem
}

.main-header-1  {
    margin-bottom: 3rem;
    background: var(--surface-dark);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.main-header-2 {
    margin-bottom: 3rem;
    text-align: center
}

.main-header-3 {
    margin-bottom: 2rem;
    background: var(--surface-dark);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.main-header-4 {
    margin-bottom: 3rem;
}
.main-header-4 h1 {
    color: var(--website-primary-color);
    margin-bottom: 1rem;
    text-align: left;
}

.main-header-3-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
}

.main-header-3 h1 {
    color: var(--website-primary-color);
    font-size: 2rem;
}

.header-listen-button {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: var(--website-primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    margin-left: auto;
}

.header-listen-button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.header-listen-button:active {
    transform: scale(0.98);
}

.header-listen-button svg {
    flex-shrink: 0;
}

@media (min-width: 769px) {
    .header-listen-button {
        display: flex;
    }
}

.section {
    background: var(--surface-dark);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.section h2 {
    color: var(--website-primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem
}

.main-header-1 h1,.main-header-2 h1 {
    color: var(--website-primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem
}

.main-header-1 p,.main-header-2 p {
    color: var(--text-secondary);
    font-size: 1.2rem
}

/* Preview button */
.preview-button {
    padding: 0.5rem;
    border: none;
    background: var(--website-primary-color);
    color: var(--text-primary);
    border-radius: 50%;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.preview-button:hover {
    transform: scale(1.1);
}


/* Template */
.margin-bottom-3 {
    margin-bottom: 3rem;
}
.margin-top-1 {
    margin-top: 1rem;
}

/* Contact Page */
.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem
}

.contact-form-container {
    background: var(--surface-dark);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color)
}

.contact-form {
    max-width: 800px;
    margin: 0 auto
}

.form-group {
    margin-bottom: 1.5rem
}

.form-group label {
    display: block;
    margin-bottom: .5rem;
    color: var(--text-primary)
}

.form-group input,.form-group select,.form-group textarea {
    width: 100%;
    padding: .75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: rgba(255,255,255,.1);
    color: var(--text-primary);
    font-size: 1rem
}

.form-group select option {
    background: var(--surface-dark);
    color: var(--text-primary)
}

.form-group textarea {
    resize: vertical
}

.newsletter-options {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255,255,255,.05);
    border-radius: 8px
}

.newsletter-options h3 {
    color: var(--website-primary-color);
    margin-bottom: .5rem
}

.newsletter-notice {
    color: var(--text-secondary);
    font-size: .9rem;
    margin-bottom: 1rem;
    font-style: italic
}

.checkbox-group {
    margin: 1rem 0
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--text-primary);
    cursor: pointer
}

.checkbox-group input[type=checkbox] {
    width: auto
}

.captcha-container {
    margin: 2rem 0
}

.submit-button {
    background: var(--website-primary-color);
    color: #fff;
    border: 0;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform .2s
}

.submit-button:hover {
    transform: translateY(-2px)
}

.success-message {
    color: #4caf50;
    text-align: center;
    padding: 2rem;
    font-size: 1.2rem;
}

.error-message {
    color: #f44336;
    margin-top: 1rem;
    text-align: center;
}

/* Station badges */

.station-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.station-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: white;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.station-badge:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
}

/* Posts default */
.post-header {
    margin-bottom: 2rem
}
.post-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem
}

.post-header h1,.post-meta a {
    color: var(--website-primary-color)
}
.post-header h1 {
    font-size: 2.5rem
}

.post-header-image {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden
}
.post-header-image img {
    width: 100%;
    height: auto;
    object-fit: cover
}

.post-meta {
    color: var(--text-secondary);
    font-size: .9rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.post-meta a {
    text-decoration: none
}

.post-meta a:hover {
    text-decoration: underline
}
.post-body {
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 1.1rem;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    gap: 10px;
}

.nav-button {
    padding: 8px 16px;
    background: none;
    border-radius: 4px;
    text-decoration: none;
    color: var(--website-primary-color);
    transition: opacity 0.2s;
}

.nav-button:hover {
    opacity: 0.8;
}

.prev-week {
    margin-right: auto;
}

.next-week {
    margin-left: auto;
}

/* Charts */
.chart-article {
    text-align: justify;
    text-justify: inter-word
}

.chart-article strong {
    color: #ffffff;
    font-weight: bold;
    background-color: var(--website-primary-color);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    display: inline-block;
}

/* Article */
.article {
    text-align: justify;
    text-justify: inter-word;
}




/* Charts shortcode */
.oh-charts {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px 0 20px 0;
    box-sizing: border-box;
}

.chart-entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-dark);
    margin-top: 10px;
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.chart-entry .chart-number {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-align: center;
    flex: 0 0 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pop-number-background {
    background-color: #c1272d;
}

.japan-number-background {
    background-color: #278bc1;
}

.kpop-number-background {
    background-color: #c12789;
}

.chart-entry .chart-cover {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.chart-title-artist-container {
    flex: 1;
    margin-left: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chart-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chart-artist {
    font-size: 16px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chart-position-change {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    height: 20px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    margin: 0 10px;
}

.chart-position-change.new,
.chart-position-change.reentry {
    background: gold;
    color: black;
}

.chart-position-change.reentry {
    font-size: 8px;
}

.chart-position-change.up {
    background: transparent;
    color: #4CAF50;
}

.chart-position-change.down {
    background: transparent;
    color: #F44336;
}

.chart-position-change.neutral {
    background: transparent;
    color: var(--text-secondary);
}

.chart-arrow {
    display: inline-block;
    width: 16px;
    height: 16px;
}

.chart-track-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    display: block;
}


.chart-artist-link {
    color: var(--text-secondary);
    text-decoration: none;
}

.chart-artist-link:hover {
    color: var(--website-primary-color);
}

a.chart-track-title:hover {
    color: var(--website-primary-color);
}

.chart-preview-button-container {
    margin-right: 10px;
}

/* Posts Sections */
.posts-section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--website-primary-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: gap 0.2s ease;
}

.view-all-link:hover {
    gap: 0.75rem;
}

.view-all-link svg {
    transition: transform 0.2s ease;
}

.view-all-link:hover svg {
    transform: translateX(3px);
}

/* Featured Posts */

.featured-posts-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1.5rem;
}

.featured-post {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--surface-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-post:first-child {
    grid-row: span 2;
}

.featured-post:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.featured-post-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.featured-post-image {
    position: relative;
    overflow: hidden;
}

.featured-post:first-child .featured-post-image {
    height: 100%;
    min-height: 300px;
}

.featured-post:not(:first-child) .featured-post-image {
    height: 160px;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-post:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-post:first-child .featured-post-link {
    position: relative;
}

.featured-post:first-child .featured-post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
}

.featured-post:first-child .featured-post-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.featured-post:first-child .featured-post-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.featured-post:not(:first-child) .featured-post-content {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.featured-post:not(:first-child) .featured-post-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-post:not(:first-child) .featured-post-description {
    display: none;
}

.category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--website-primary-color);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.featured-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: auto;
}

.featured-post:first-child .featured-post-meta {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
    .featured-posts-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .featured-post:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .featured-post:first-child .featured-post-image {
        min-height: 250px;
    }
}

@media (max-width: 640px) {
    .featured-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-post:first-child {
        grid-column: span 1;
    }
    
    .featured-post:first-child .featured-post-content h3 {
        font-size: 1.3rem;
    }
    
    .featured-post:not(:first-child) .featured-post-image {
        height: 180px;
    }
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.post-preview {
    background: var(--surface-dark);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease;
    height: 100%;
}

.post-preview:hover {
    transform: translateY(-4px);
}

.post-preview-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-preview-image {
    position: relative;
    padding-top: 56.25%;
}

.post-preview-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-preview-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--website-primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-preview-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-preview-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.post-preview-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.post-preview-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: auto;
}

.post-preview-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-preview-author i {
    font-size: 0.8rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem 0;
}

.pagination-link,
.pagination-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    background: var(--surface-dark);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination-link:hover,
.pagination-arrow:hover {
    background: var(--website-primary-color);
    color: white;
}

.pagination-link.active {
    background: var(--website-primary-color);
    color: white;
}

.pagination-arrow svg {
    width: 20px;
    height: 20px;
}

/* Base content design */
.content-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Album design */
.album-header-cover {
    flex-shrink: 0;
}

.album-header-cover img {
    width: 300px;
    height: 300px;
    border-radius: 12px;
    object-fit: cover;
}

.album-header-info {
    flex: 1;
}

.album-header-info h1 {
    color: var(--website-primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.album-header-artists {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.artist-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.2rem;
}

.artist-link:hover {
    color: var(--website-primary-color);
}

.album-header-release {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.album-header-copyright {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-style: italic;
}

.album-tracks {
    background: var(--surface-dark);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-bottom: 3rem;
}

.album-tracks h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.album-tracks-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.album-tracks-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    text-decoration: none;
    color: var(--text-primary);
    border-radius: 8px;
    transition: background-color 0.2s;
}

.album-tracks-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.album-tracks-number {
    width: 2.5rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.album-tracks-info {
    flex: 1;
    min-width: 0;
}

.album-tracks-title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.album-tracks-artists {
    color: var(--text-secondary);
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Artist design */
.artist-page-info h1 {
    color: var(--website-primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

/* Track content */
.tracks-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.track-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: background-color 0.2s;
    max-width: 100%;
}

.track-row-card {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    display: flex;
    flex: 1;
    min-width: 0;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

.track-row:hover {
    background: rgba(255, 255, 255, 0.1);
}

.track-row-timestamp {
    color: var(--text-secondary);
    font-size: 0.9rem;
    width: 100px;
}

.track-row-cover {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.track-row-cover img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
}

.track-row-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 0;
}

.track-row-title {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.recently-played-tracks-list {
    position: relative;
    overflow: hidden;
    height: calc(92px * 3 + 3rem);
}

.track-row.sliding-out {
    transform: translateY(-100%);
    opacity: 0;
}

.track-row.sliding-in {
    transform: translateY(0);
    opacity: 1;
}

.track-row.new-track {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
}

a.track-row-title:hover {
    color: var(--website-primary-color);
}

.track-row-release-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-row-artists {
    color: var(--text-secondary);
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.track-row-artist-link {
    color: var(--text-secondary);
    text-decoration: none;
}

.track-row-artist-link:hover {
    color: var(--website-primary-color);
}

.preview-button-container {
    flex-shrink: 0;
}

/* Track page */
.track-header-cover {
    flex-shrink: 0;
    width: 300px;
}

.track-header-cover img {
    width: 300px;
    height: 300px;
    border-radius: 16px;
    object-fit: cover;
}

.track-header-info {
    flex: 1;
}

.track-header-info h1 {
    color: var(--website-primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.track-header-artists {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.track-header-artist-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
}

.track-header-artist-link:hover {
    color: var(--website-primary-color);
}

.track-header-album {
    margin-bottom: 1rem;
}

.track-header-album-link {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.track-header-album-link:hover {
    color: var(--website-primary-color);
}

.track-header-album-info {
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.track-header-number {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.track-header-release {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.track-last-plays {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    min-width: 300px;
}

.track-last-plays h3 {
    color: var(--website-primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.track-play-history {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.track-play-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s;
    flex-wrap: wrap;
}

.track-play-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.track-play-timestamp {
    color: var(--text-secondary);
    font-size: 0.9rem;
    min-width: 150px;
}

.track-station-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.track-station-badge:hover {
    opacity: 0.8;
}
.track-lyrics {
    margin-top: 3rem;
    background: var(--surface-dark);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.track-lyrics h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.track-lyrics-language-notice {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.track-lyrics-content {
    color: var(--text-primary);
    white-space: pre-wrap;
    line-height: 1.2;
}

.track-lyrics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.track-lyrics-versions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.track-lyrics-version-btn {
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.track-lyrics-version-btn:hover {
    background: var(--surface-lighter);
}

.track-lyrics-version-btn.active {
    background: var(--website-primary-color);
    color: white;
    border-color: var(--website-primary-color);
}

.track-lyrics-content {
    display: none;
}

.track-lyrics-content.active {
    display: block;
}

.track-lyrics-options {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;  /* Reduced from 10px for tighter spacing below versions */
}

.track-lyrics-options label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.9em;
    color: var(--text-secondary);
}

.track-lyrics-options input[type="checkbox"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
}

.track-platform-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.track-platform-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.2s, background-color 0.2s;
}

.track-platform-links a:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

.track-platform-links img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .track-platform-links {
        justify-content: center;
    }
}

/* Related content */
.related-content {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.related-content h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.related-card {
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s;
}

.related-card:hover {
    transform: translateY(-5px);
    background: var(--surface-light);
}

.related-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.related-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.related-card-info h3 {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-card-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Browse */
.browse-artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.browse-artist-card {
    background: var(--surface-darker);
    padding: 1rem;
    border-radius: 8px;
    transition: transform 0.2s;
}

.browse-artist-card:hover {
    transform: translateY(-5px);
}

.browse-artist-card-link {
    text-decoration: none;
    color: var(--text-primary);
}

.browse-artist-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.browse-artist-info:hover {
    color: var(--website-primary-color);
}

.browse-play-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Showcase tracks grid */
.showcase-tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.showcase-track-card {
    position: relative;
    color: var(--text-primary);
    transition: transform 0.2s;
    margin-bottom: 0.5rem;
}

.showcase-track-card:hover {
    transform: translateY(-5px);
}

.showcase-track-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.showcase-track-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.showcase-track-card-content {
    display: flex;
    flex-direction: column;
    padding-right: 40px;
}

.showcase-track-card-info {
    flex: 1;
    min-width: 0;
}

.showcase-track-card-info h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    line-height: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.showcase-track-artists {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.showcase-info {
    color: var(--text-secondary);
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.showcase-track-card:hover .showcase-track-card-info h3 {
    color: var(--website-primary-color);
}

.showcase-preview-button-container {
    position: absolute;
    right: 0px;
    bottom: 0px;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--surface-dark);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.member-image-link {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.team-list-member-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--website-primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin: 0 auto;
}

.team-list-member-info {
    text-align: center;
}

.team-list-member-info h2 {
    margin-bottom: 0.5rem;
}

.team-list-member-info h2 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.team-list-member-info h2 a:hover {
    color: var(--website-primary-color);
}

.member-role {
    color: var(--website-primary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-list-member-shows {
    margin-top: 1rem;
}

.team-list-member-shows h3 {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.team-list-member-shows ul {
    list-style: none;
    padding: 0;
}

.team-list-member-shows li {
    margin-bottom: 0.25rem;
}

.team-list-member-shows a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.team-list-member-shows a:hover {
    color: var(--website-primary-color);
}

/* Team member page */
.member-header {
    background: var(--surface-dark);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.member-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.member-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--website-primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.member-details h1 {
    color: var(--website-primary-color);
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.member-role {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.shows-section {
    background: var(--surface-dark);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.shows-section h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.show-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.show-card:hover {
    transform: translateY(-5px);
}

.show-image, .show-placeholder {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.1);
}

.show-info {
    padding: 1.5rem;
}

.show-info h3 {
    margin-bottom: 1rem;
}

.show-info h3 a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.2s;
}

.show-info h3 a:hover {
    color: var(--website-primary-color);
}

.show-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.team-member-episodes-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-member-episode-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

.team-member-episode-card:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
}

.team-member-episode-time {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.team-member-episode-time .date {
    color: var(--text-primary);
    font-size: 1rem;
}

.team-member-episode-time .time {
    color: var(--website-primary-color);
    font-weight: bold;
}

.team-member-episode-info {
    flex: 1;
    margin-left: 2rem;
}

.team-member-episode-info h3 {
    margin-bottom: 0.5rem;
}

.team-member-episode-info h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.team-member-episode-info h3 a:hover {
    color: var(--website-primary-color);
}

.team-member-description {
    color: var(--text-secondary);
    margin-top: 1rem;
    line-height: 1.6;
    max-width: 800px;
}

/* Show page */

.show-header-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.show-header-main {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem 2rem;
    align-items: start;
}

.show-header-main .show-page-image {
    grid-row: 1 / 3;
}

.show-header-main .show-header-info {
    grid-column: 2;
    grid-row: 1;
}

.show-header-main .show-page-team {
    grid-column: 2;
    grid-row: 2;
}

.show-page-image {
    width: 300px;
    height: 200px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.show-header-info {
    flex: 1;
}

.show-header-info h1 {
    color: var(--website-primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.show-page-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.show-page-team {
    margin: 0;
    padding: 0;
}

.show-page-team h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.show-page-team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.show-page-team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 120px;
}

.show-page-team-member:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.show-page-team-member img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.show-page-team-member-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--website-primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.show-page-team-member-name {
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.show-page-team-member-role {
    color: var(--text-secondary);
    font-size: 0.8rem;
    opacity: 0.7;
    text-align: center;
}

.schedule-time {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.time {
    color: var(--website-primary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.date {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.days {
    display: flex;
    gap: 0.5rem;
}

.day {
    color: var(--text-secondary);
    font-size: 0.8rem;
    opacity: 0.3;
}

.day.active {
    color: var(--text-primary);
    opacity: 1;
}

.station-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.schedule-card.special {
    border: 1px solid var(--website-primary-color);
}

.schedule-show-info {
    display: flex;
    gap: 1rem;
}

.show-time {
    color: var(--website-primary-color);
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Schedule */

.schedule-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.schedule-container h1 {
    color: var(--website-primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.schedule-day {
    background: var(--surface-dark);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.schedule-day h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.schedule-day h2 span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.shows-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-show-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.schedule-show-card:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
}

.schedule-show-info {
    display: flex;
    gap: 1rem;
}

.schedule-show-image {
    width: 100px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.schedule-show-details {
    flex: 1;
}

.schedule-show-details h3 {
    margin: 0 0 0.5rem 0;
}

.schedule-show-details h3 a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.schedule-show-details h3 a:hover {
    color: var(--website-primary-color);
}

.schedule-show-description {
    margin: 0.5rem 0 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.schedule-show-description-small {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-top: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.schedule-team-member {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s;
}

.schedule-team-member:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.schedule-team-member img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.schedule-team-member span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}


.crossing-indicator {
    font-size: 0.8em;
    color: var(--text-secondary);
    font-style: italic;
    display: block;
    margin-top: 0.2em;
}

/* Home page */

.button-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--website-primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.2s;
}

.button-link:hover {
    opacity: 0.9;
}

.home-stations-grid {
    display: grid;
    gap: 1rem;
}

.home-station-promo-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--surface-dark);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.2s, background-color 0.2s;
}

.home-station-promo-card:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.05);
}

.home-station-promo-logo {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.home-station-promo-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.home-station-promo-info h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--website-primary-color);
}

.home-station-promo-info p {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Sidebar */

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section h3 {
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
    color: var(--website-primary-color);
}

.sidebar-tracks-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-track-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    background: var(--background-dark);
}

.sidebar-track-cover {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.sidebar-track-info {
    flex: 1;
    min-width: 0;
}

.sidebar-track-title {
    display: block;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.sidebar-track-title:hover {
    color: var(--website-primary-color);
}

.sidebar-track-artists {
    font-size: 0.9rem;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.sidebar-track-artist-link {
    color: var(--text-secondary);
    text-decoration: none;
}

.sidebar-track-artist-link:hover {
    color: var(--website-primary-color);
}

/* Newsletter */

.success {
    background: green;
    color: white;
    padding: 1rem;
    border-radius: 8px;
}

.error {
    background: red;
    color: white;
    padding: 1rem;
    border-radius: 8px;
}

/* Listen page */

.listen-platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.listen-platform-card {
    background: var(--surface-dark);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.listen-platform-card h3 {
    margin-bottom: 1rem;
}

.listen-platform-card .button-link {
    display: inline-block;
    margin: 0.25rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.9rem;
}

.listen-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.listen-link-card {
    background: var(--surface-dark);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.listen-link-card img {
    width: 64px;
    height: 64px;
    border-radius: 4px;
}

.listen-link-formats {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.listen-link-formats .button-link {
    padding: 0.25rem 1rem;
}

@media (max-width: 768px) {
    .listen-link-card {
        flex-direction: column;
        text-align: center;
    }
}

.listen-discord-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.discord-commands {
    background: var(--surface-dark);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-top: 2rem;
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.command-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 4px;
}

.command-item code {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    color: var(--website-primary-color);
}

.command-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.listen-platform-card .button-link {
    display: block;
    margin: 0.5rem 0;
}

.platform-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.platform-links .button-link {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 120px;
    max-width: 150px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#discord-section {
    scroll-margin-top: 2rem;
}

.listen-platform-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem auto;
    color: var(--website-primary-color);
}

.listen-platform-icon svg {
    width: 100%;
    height: 100%;
}

.listen-platform-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive */

@media (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .main-page-1 {
        padding: 1rem;
    }
    .home-stations-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width:768px) {
    .main-header-2 {
        margin-bottom: 2rem;
    }

    .content-columns {
        grid-template-columns: 1fr;
    }

    .main-header-1 h1,.main-header-2 h1 {
        font-size: 2rem;
    }

    .main-header-1 p,.main-header-2 p {
        font-size: 1rem;
    }

    .contact-form-container,.contact-page {
        padding: 1rem;
    }

    .post-page {
        padding: 0rem;
    }

    .post-header h1 {
        font-size: 2rem;
    }

    .post-meta {
        gap: 0.5rem;
    }

    .chart-entry .chart-cover {
        width: 60px;
        height: 60px;
    }

    .chart-entry .chart-number {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .posts-section {
        padding: 0 1rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .post-preview-content h3 {
        font-size: 1.2rem;
    }

    .content-header {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .album-header-cover {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .album-header-cover img {
        width: 100%;
        height: auto;
        max-width: 300px;
    }

    .album-header-info h1 {
        font-size: 1.75rem;
        text-align: center;
    }

    .album-header-artists {
        justify-content: center;
    }

    /* Showcase tracks grid */
    .showcase-tracks-grid {
        grid-template-columns: 1fr;
    }
    .showcase-track-card {
        flex-direction: column;
    }

    .showcase-track-card img {
        width: 100%;
        height: auto;
    }
    .showcase-tracks-grid {
        grid-template-columns: repeat(2, minmax(130px, 1fr));
        gap: 1rem;
    }

    /* History tracks */

    .track-row {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .track-row-cover {
        width: 50px;
        height: 50px;
    }

    .track-row-info {
        width: 0;
    }

    .track-row-button-container {
        margin-left: auto;
    }
    
    .track-row-timestamp {
        width: 100%;
        text-align: right;
        font-size: 0.8rem;
    }
    
    /* Team */

    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .member-image, .member-placeholder {
        width: 150px;
        height: 150px;
    }

    /* Team member page */

    .team-member-page {
        padding: 1rem;
    }

    .member-info {
        flex-direction: column;
        text-align: center;
    }

    .team-member-shows-grid {
        grid-template-columns: 1fr;
    }

    .team-member-episode-card {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .team-member-episode-info {
        margin-left: 0;
    }

    .team-member-description {
        text-align: left;
    }

    .shows-grid {
        grid-template-columns: 1fr;
    }

    .home-stations-grid {
        grid-template-columns: 1fr;
    }


    /* Show */

    .show-header-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .show-header-main .show-page-image {
        grid-row: auto;
    }
    
    .show-header-main .show-header-info,
    .show-header-main .show-page-team {
        grid-column: auto;
        grid-row: auto;
    }
    
    .show-page-team {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .show-page-team-members {
        justify-content: center;
    }

    .show-page-image {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .content-header {
        padding: 1rem;
    }
    .album-header-cover {
        max-width: 200px;
    }

    .album-header-info h1 {
        font-size: 1.5rem;
    }

    .related-card {
        padding: 0.5rem;
    }
    
    .related-card img {
        margin-bottom: 0.5rem;
    }
    
    .related-card-info h3 {
        font-size: 0.85rem;
    }
    
    .related-card-info p {
        font-size: 0.75rem;
    }
    .related-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 1rem;
    }
    .track-last-plays {
        padding: 0.75rem;
    }

    .track-last-plays h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .track-play-item {
        background: rgba(255, 255, 255, 0.03);
        border-radius: 6px;
    }

    .captcha-container {
        transform:scale(0.77);
        transform-origin:0 0;
    }
}


.charts-newsletter-container {
    background: var(--surface-dark);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin: 2rem 50px;
}

.charts-newsletter-description {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.charts-newsletter-privacy {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 0.75rem;
    text-align: center;
    font-style: italic;
}


.charts-newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .charts-newsletter-container {
        padding: 1rem;
    }
    
    .charts-newsletter-description {
        font-size: 1rem;
    }
}

/* Unfilled ads */
ins.adsbygoogle {
    display: block !important;
}
ins.adsbygoogle[data-ad-status="unfilled"] {
    display: none !important;
}
ins.adsbygoogle[data-ad-status="filled"] {
    display: block !important;
}

.show-card .station-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem;
}

/* Team Member Articles Section */
.member-articles-section {
    background: var(--surface-dark);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.member-articles-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.member-articles-header .articles-icon {
    color: var(--website-primary-color);
    flex-shrink: 0;
}

.member-articles-header h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.member-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.member-article-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.member-article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--website-primary-color);
}

.member-article-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.member-article-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.member-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.member-article-card:hover .member-article-image img {
    transform: scale(1.05);
}

.member-article-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    color: var(--text-secondary);
}

.member-article-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--website-primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.member-article-content {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.member-article-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.member-article-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.member-article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: auto;
}

.member-article-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.member-article-date svg {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .member-articles-section {
        padding: 1.5rem;
    }
    
    .member-articles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .member-articles-header h2 {
        font-size: 1.25rem;
    }
}

/* Partners Page Styles */
.partner-details {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.partner-details.reversed {
    flex-direction: row-reverse;
}

.partner-image {
    flex: 0 0 40%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.partner-text {
    flex: 1;
}

.partner-text h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.partner-text h4 {
    margin: 1.5rem 0 0.75rem;
    font-size: 1.2rem;
}

.partner-text ol,
.partner-text ul {
    padding-left: 1.5rem;
}

.partner-text li {
    margin-bottom: 0.5rem;
}

.partner-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.partner-buttons .button-link {
    min-width: 120px;
    text-align: center;
}

.listen-platform-icon-image {
    height: 48px;
    width: 48px;
    object-fit: contain;
}

.platform-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.margin-top-1 {
    margin-top: 1rem;
}

/* Responsive adjustments for partners page */
@media (max-width: 768px) {
    .partner-details,
    .partner-details.reversed {
        flex-direction: column;
    }
    
    .partner-image {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
}

/* Article container */
.article-container {
    margin: 0 auto;
    max-width: 800px;
}

.article-container h1 {
    color: var(--website-primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.article-container h2 {
    color: var(--website-primary-color);
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    text-align: left;
}

.article-container p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: var(--text-primary);
}

.article-container img {
    max-width: 100%;
    border-radius: 12px;
    margin: 1.5rem auto;
    display: block;
}

.article-container strong {
    color: #ffffff;
    font-weight: bold;
    background-color: var(--website-primary-color);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    display: inline-block;
}

.article-container em {
    font-style: italic;
}

.article-container ul, .article-container ol {
    margin: 1.2rem 0;
    padding-left: 2rem;
}

.article-container li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-container blockquote {
    border-left: 4px solid var(--website-primary-color);
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-secondary);
}

.article-container a {
    color: var(--website-primary-color);
    text-decoration: none;
    transition: color 0.2s, border-bottom 0.2s;
    border-bottom: 1px solid transparent;
}

.article-container a:hover {
    color: var(--website-primary-color);
    border-bottom: 1px solid var(--website-primary-color);
}

.article-container a:visited {
    color: var(--website-primary-color);
    opacity: 0.85;
}

/* Override for button-links inside articles */
.article-container a.button-link,
.article-container a.button-link:hover,
.article-container a.button-link:visited {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--website-primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    border-bottom: none;
    opacity: 1;
    transition: opacity 0.2s;
    text-align: center;
}

.article-container a.button-link:hover {
    opacity: 0.85;
}

/* Translated screenshot styling */
.translated-screenshot {
    margin: 1.5rem 0;
    text-align: center;
}

.translated-screenshot img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.translated-caption {
    font-size: 0.85rem;
    color: var(--text-secondary, #888);
    font-style: italic;
    margin-top: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: rgba(128, 128, 128, 0.1);
    border-radius: 4px;
    display: inline-block;
}

@media (max-width: 768px) {
    .article-container h1 {
        font-size: 1.8rem;
    }
    
    .article-container h2 {
        font-size: 1.4rem;
    }
}

/* Show and Team Member Article Sections */
.show-article,
.member-article {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--background-dark);
    border-radius: 16px;
    border: 1px solid var(--border-color, rgba(255,255,255,0.1));
}

.show-article p,
.member-article p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.show-article p:first-of-type,
.member-article p:first-of-type {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.show-article h2,
.member-article h2 {
    color: var(--website-primary-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--website-primary-color);
}

.show-article h3,
.member-article h3 {
    color: #fff;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
}

.show-article strong,
.member-article strong {
    color: var(--website-primary-color);
    font-weight: 600;
}

.show-article ul,
.member-article ul,
.show-article ol,
.member-article ol {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
}

.show-article li,
.member-article li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
    color: var(--text-primary);
    position: relative;
}

.show-article ul li::marker,
.member-article ul li::marker {
    color: var(--website-primary-color);
}

.show-article a,
.member-article a {
    color: var(--website-primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.show-article a:hover,
.member-article a:hover {
    border-bottom-color: var(--website-primary-color);
}

@media (max-width: 768px) {
    .show-article,
    .member-article {
        margin: 1rem;
        padding: 1.25rem;
    }
    
    .show-article h2,
    .member-article h2 {
        font-size: 1.3rem;
    }
    
    .show-article p,
    .member-article p {
        font-size: 1rem;
    }
}

/* Sidebar sections */
.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section h3 {
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
    color: var(--website-primary-color);
}

/* Sidebar posts list */
.sidebar-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-post-link {
    display: flex;
    gap: 1rem;
    align-items: center;
    border-radius: 6px;
    padding: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    background: var(--background-dark);
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar-post-link:hover {
    background: var(--surface-light);
    transform: translateY(-2px);
}

.sidebar-post-image {
    width: 60px;
    height: 60px;
    min-width: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.sidebar-post-info {
    flex: 1;
    min-width: 0;
}

.sidebar-post-title {
    display: block;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.sidebar-post-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Music Platforms Shortcode Styles */
.music-platforms-container {
    background: var(--surface-dark);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin: 2rem 50px;
}

.music-platforms-description {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    text-align: center;
}

.music-platforms-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
}

.music-platform-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.music-platform-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--website-primary-color);
    transform: translateY(-1px);
    text-decoration: none;
    color: var(--text-primary);
}

.music-platform-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.music-platform-button span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .music-platforms-container {
        margin: 2rem 20px;
        padding: 1rem;
    }
    
    .music-platforms-buttons {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.5rem;
    }
    
    .music-platform-button {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .music-platforms-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .music-platforms-container {
        margin: 2rem 10px;
    }
    
    .music-platforms-buttons {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}

/* ================================
   VOTING SYSTEM STYLES
   ================================ */

/* Landing Page */
.vote-landing-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.vote-hero {
    background: linear-gradient(135deg, rgba(193, 39, 45, 0.3), rgba(39, 139, 193, 0.3), rgba(193, 39, 137, 0.3));
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
}

.vote-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(193, 39, 45, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(39, 139, 193, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(193, 39, 137, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.vote-hero-content {
    position: relative;
    z-index: 1;
}

.vote-year-badge {
    display: inline-block;
    background: var(--website-primary-color);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.vote-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.vote-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Countdown Timer */
.vote-countdown {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    min-width: 70px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
}

.vote-deadline-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.vote-ended-notice {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #1a1a1a;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.vote-ended-icon {
    font-size: 1.5rem;
}

/* Vote Reveal CTA Button (landing page) */
.vote-reveal-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    animation: revealPulse 2s infinite;
}

.vote-reveal-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
}

@keyframes revealPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(254, 202, 87, 0.5); }
}

.vote-reveal-cta-icon {
    font-size: 2rem;
}

.vote-reveal-cta-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.vote-reveal-cta-text strong {
    font-size: 1.2rem;
}

.vote-reveal-cta-text small {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Vote Now Hero Button (landing page - scroll to categories) */
.vote-now-hero-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--website-primary-color);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    animation: voteNowPulse 2s infinite;
}

.vote-now-hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--website-primary-color-rgb), 0.4);
}

.vote-now-hero-button svg {
    animation: bounceDown 1.5s infinite;
}

@keyframes voteNowPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(var(--website-primary-color-rgb), 0.3); }
    50% { box-shadow: 0 6px 25px rgba(var(--website-primary-color-rgb), 0.5); }
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* Vote Reveal Banner (category page) */
.vote-reveal-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(254, 202, 87, 0.2) 100%);
    border: 1px solid rgba(255, 107, 107, 0.4);
    color: #feca57;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.vote-reveal-banner:hover {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.3) 0%, rgba(254, 202, 87, 0.3) 100%);
    border-color: rgba(254, 202, 87, 0.6);
}

.vote-reveal-banner-icon {
    font-size: 1.5rem;
}

.vote-reveal-banner-text {
    flex: 1;
}

/* Categories Section */
.vote-categories-section {
    margin-bottom: 3rem;
}

.vote-categories-section h2 {
    text-align: center;
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.vote-rules-summary {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.vote-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.vote-category-card {
    background: var(--surface-dark);
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    color: var(--text-primary);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.vote-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--category-color);
}

.vote-category-card:hover {
    border-color: var(--category-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.vote-category-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--category-color);
}

.vote-category-icon svg {
    width: 32px;
    height: 32px;
}

.vote-category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--category-color);
}

.vote-category-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.vote-category-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--category-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s;
}

.vote-category-card:hover .vote-category-cta {
    transform: scale(1.05);
}

/* Info Section */
.vote-info-section {
    margin-bottom: 3rem;
}

.vote-info-card {
    background: var(--surface-dark);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

.vote-info-card h3 {
    text-align: center;
    color: var(--website-primary-color);
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.vote-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.vote-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.vote-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--website-primary-color);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.vote-step-content h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.vote-step-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ================================
   CATEGORY VOTING PAGE
   ================================ */

.vote-category-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem;
}

.vote-category-header {
    margin-bottom: 2rem;
}

.vote-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    transition: color 0.2s;
}

.vote-back-link:hover {
    color: var(--category-color);
}

.vote-category-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vote-category-title-row h1 {
    color: var(--category-color);
    font-size: 2rem;
    margin: 0;
}

.vote-total-counter {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.vote-total-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--category-color);
    line-height: 1;
}

.vote-total-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vote-category-title-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.vote-share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vote-share-btn:hover {
    background: var(--category-color);
    border-color: var(--category-color);
    color: white;
    transform: translateY(-2px);
}

.vote-share-btn svg {
    flex-shrink: 0;
}

.vote-share-btn-modal {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    background: rgba(var(--website-primary-color-rgb, 139, 92, 246), 0.15);
    border-color: var(--website-primary-color);
}

.vote-share-btn-modal:hover {
    background: var(--website-primary-color);
}

/* Share dropdown container */
.vote-share-dropdown-container {
    position: relative;
    display: inline-block;
}

.vote-share-dropdown-modal-container {
    width: 100%;
}

.vote-share-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: var(--bg-secondary, #1a1a2e);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.vote-share-dropdown-modal-container .vote-share-dropdown {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-10px);
    bottom: calc(100% + 8px);
    top: auto;
}

.vote-share-dropdown-modal-container .vote-share-dropdown.show {
    transform: translateX(-50%) translateY(0);
}

.vote-share-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vote-share-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-primary, #fff);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: left;
}

.vote-share-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.vote-share-dropdown-item[data-share="twitter"]:hover {
    background: rgba(29, 155, 240, 0.2);
    color: #1d9bf0;
}

.vote-share-dropdown-item[data-share="twitter"]:hover svg {
    fill: #1d9bf0;
}

.vote-share-dropdown-item[data-share="facebook"]:hover {
    background: rgba(24, 119, 242, 0.2);
    color: #1877f2;
}

.vote-share-dropdown-item[data-share="facebook"]:hover svg {
    fill: #1877f2;
}

.vote-share-dropdown-item[data-share="copy"]:hover {
    background: rgba(var(--website-primary-color-rgb, 139, 92, 246), 0.2);
    color: var(--website-primary-color, #8b5cf6);
}

.vote-share-dropdown-item svg {
    flex-shrink: 0;
    transition: fill 0.15s ease;
}

.vote-modal-share {
    margin-bottom: 1rem;
    padding-top: 0.5rem;
}

.vote-modal-vote-id {
    font-size: 0.8rem;
    color: var(--text-tertiary, #888);
    margin: 0.5rem 0 1rem;
    font-family: monospace;
    opacity: 0.7;
}

.vote-modal-share-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.vote-badge-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #ffd700;
    text-decoration: none;
    margin-top: 0.75rem;
    opacity: 0.9;
    transition: opacity 0.2s, color 0.2s;
}

.vote-badge-link:hover {
    opacity: 1;
    color: #ffe44d;
    text-decoration: underline;
}

.vote-badge-link svg {
    flex-shrink: 0;
}

.vote-share-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(76, 175, 80, 0.95);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10001;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.vote-share-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.vote-ended-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #1a1a1a;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.vote-positions-hidden-banner,
.vote-positions-hidden-notice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2) 0%, rgba(103, 58, 183, 0.2) 100%);
    border: 1px solid rgba(156, 39, 176, 0.4);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    font-weight: 500;
    color: #ce93d8;
}

.vote-positions-hidden-notice {
    margin-bottom: 1rem;
    justify-content: center;
}

.vote-positions-hidden-icon {
    font-size: 1.5rem;
}

.vote-remaining-container {
    background: var(--surface-dark);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.vote-remaining-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.vote-remaining-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.vote-remaining-count {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--category-color);
}

.vote-remaining-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.vote-remaining-progress {
    height: 100%;
    background: var(--category-color);
    border-radius: 3px;
    transition: width 0.3s ease;
}

/* Search Section */
.vote-search-section {
    margin-bottom: 2rem;
}

.vote-search-container {
    position: relative;
    margin-bottom: 1rem;
}

.vote-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}

.vote-search-input {
    width: 100%;
    padding: 1rem 3rem;
    background: var(--surface-dark);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.2s;
}

.vote-search-input:focus {
    outline: none;
    border-color: var(--category-color);
}

.vote-search-input::placeholder {
    color: var(--text-secondary);
}

.vote-search-clear {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.vote-search-clear:hover {
    color: var(--text-primary);
}

.vote-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.vote-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.vote-filter-btn:hover {
    border-color: var(--category-color);
    color: var(--text-primary);
}

.vote-filter-btn.active {
    background: var(--category-color);
    border-color: var(--category-color);
    color: white;
}

/* Songs List */
.vote-songs-container {
    margin-bottom: 3rem;
}

.vote-songs-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vote-song-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--surface-dark);
    border-radius: 12px;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    transition: all 0.2s;
}

.vote-song-card.vote-song-pinned {
    border: 2px solid var(--website-primary-color, #FFD700);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, var(--surface-dark) 100%);
    position: relative;
    margin-top: 12px;
}

.vote-song-card.vote-song-pinned::before {
    content: "★ " attr(data-pinned-label);
    position: absolute;
    top: -10px;
    left: 12px;
    background: var(--website-primary-color, #FFD700);
    color: #1a1a2e;
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.vote-song-card:hover {
    border-color: var(--category-color);
    background: rgba(255, 255, 255, 0.02);
}

.vote-song-cover {
    position: relative;
    flex-shrink: 0;
}

.vote-song-cover img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}

.vote-song-cover .vote-preview-btn {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 28px;
    height: 28px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vote-song-info {
    flex: 1;
    min-width: 0;
}

.vote-song-title-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.vote-song-position {
    background: var(--category-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    flex-shrink: 0;
}

.vote-song-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vote-song-title:hover {
    color: var(--category-color);
}

.vote-song-artist {
    color: var(--text-secondary);
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.25rem;
}

.vote-song-artist-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.vote-song-artist-link:hover {
    color: var(--website-primary-color);
}

.vote-song-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.vote-song-votes {
    color: var(--category-color);
    font-weight: 600;
}

.vote-song-actions {
    flex-shrink: 0;
}

.vote-song-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: var(--category-color);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.vote-song-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.vote-song-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.vote-song-btn.voted {
    background: #4CAF50;
    opacity: 1;
}

/* Loading States */
.vote-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--text-secondary);
    gap: 1rem;
}

.vote-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--category-color, var(--website-primary-color));
    border-radius: 50%;
    animation: vote-spin 1s linear infinite;
}

.vote-loading-spinner.small {
    width: 20px;
    height: 20px;
    border-width: 2px;
}

@keyframes vote-spin {
    to { transform: rotate(360deg); }
}

.loading-dots::after {
    content: '';
    animation: loading-dots 1.5s steps(4) infinite;
}

@keyframes loading-dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

.vote-empty-state,
.vote-error-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--text-secondary);
    text-align: center;
    gap: 1rem;
}

.vote-retry-btn {
    padding: 0.75rem 1.5rem;
    background: var(--website-primary-color);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
}

/* Load More */
.vote-load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.vote-load-more-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--category-color);
    border-radius: 50px;
    color: var(--category-color);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.vote-load-more-btn:hover {
    background: var(--category-color);
    color: white;
}

/* Vote Modal */
.vote-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.vote-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.vote-modal-content {
    position: relative;
    background: var(--surface-dark);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    border: 1px solid var(--border-color);
    animation: modal-appear 0.3s ease;
}

@keyframes modal-appear {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.vote-modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.vote-modal-icon.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.vote-modal-icon.error {
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
}

.vote-modal-content h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.vote-modal-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.vote-modal-close {
    padding: 0.75rem 2rem;
    background: var(--website-primary-color);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.vote-modal-close:hover {
    transform: scale(1.05);
}

/* No votes remaining state in modal */
.vote-modal-no-votes {
    margin: 1rem 0 1.5rem;
    padding: 1.25rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.vote-modal-no-votes-message {
    color: var(--text-primary) !important;
    font-size: 0.95rem;
    margin-bottom: 1rem !important;
    line-height: 1.5;
}

.vote-modal-other-categories {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.vote-modal-category-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--cat-color, var(--website-primary-color));
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.vote-modal-category-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: white;
}

.vote-modal-category-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .vote-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .vote-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .vote-hero {
        padding: 3rem 1.5rem;
    }
    
    .vote-hero h1 {
        font-size: 2.5rem;
    }
    
    .vote-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .countdown-item {
        padding: 0.75rem 1rem;
        min-width: 55px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
        padding-bottom: 0.75rem;
    }
    
    .vote-categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .vote-category-card {
        flex-direction: row;
        text-align: left;
        padding: 1.5rem;
    }
    
    .vote-category-card::before {
        width: 4px;
        height: 100%;
        top: 0;
        bottom: 0;
        right: auto;
    }
    
    .vote-category-icon {
        margin-bottom: 0;
        margin-right: 1rem;
        width: 48px;
        height: 48px;
    }
    
    .vote-category-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }
    
    .vote-category-card p {
        font-size: 0.85rem;
        margin-bottom: 0;
        display: none;
    }
    
    .vote-category-cta {
        margin-left: auto;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .vote-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vote-step {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }
    
    .vote-step-number {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .vote-category-title-row h1 {
        font-size: 1.5rem;
    }
    
    .vote-category-title-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .vote-share-btn span {
        display: none;
    }
    
    .vote-share-btn {
        padding: 0.75rem;
        border-radius: 50%;
    }
    
    .vote-share-btn-modal span {
        display: inline;
    }
    
    .vote-share-btn-modal {
        padding: 0.875rem 1.5rem;
        border-radius: 50px;
    }
    
    .vote-song-card {
        flex-wrap: wrap;
    }
    
    .vote-song-cover img {
        width: 60px;
        height: 60px;
    }
    
    .vote-song-info {
        flex: 1;
        min-width: 150px;
    }
    
    .vote-song-actions {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .vote-song-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .vote-hero h1 {
        font-size: 2rem;
    }
    
    .vote-hero-subtitle {
        font-size: 1rem;
    }
    
    .countdown-item {
        padding: 0.5rem 0.75rem;
        min-width: 45px;
    }
    
    .countdown-number {
        font-size: 1.25rem;
    }
    
    .vote-info-card {
        padding: 1.5rem;
    }
    
    .vote-modal-content {
        padding: 1.5rem 1.25rem;
        max-width: 340px;
    }
    
    .vote-modal-icon {
        width: 60px;
        height: 60px;
    }
    
    .vote-modal-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .vote-modal-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .vote-modal-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .vote-modal-vote-id {
        font-size: 0.75rem;
        margin: 0.25rem 0 0.75rem;
    }
    
    .vote-modal-no-votes {
        margin: 0.75rem 0 1rem;
        padding: 1rem;
    }
    
    .vote-modal-no-votes-message {
        font-size: 0.85rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .vote-modal-other-categories {
        gap: 0.5rem;
    }
    
    .vote-modal-category-btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .vote-modal-category-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .vote-modal-share {
        margin-bottom: 0.75rem;
        padding-top: 0.25rem;
    }
    
    .vote-modal-share-label {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .vote-share-btn-modal {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .vote-badge-link {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
    
    .vote-modal-close {
        padding: 0.625rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .vote-filters {
        width: 100%;
    }
    
    .vote-filter-btn {
        flex: 1;
        justify-content: center;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}


/* ========== START: END OF YEAR VOTING - TRACK PAGE BANNER - REMOVE AFTER DEC 29, 2025 ========== */
.track-vote-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
}

.track-vote-banner-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.track-vote-banner-icon {
    font-size: 1.5rem;
}

.track-vote-banner-text {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.track-vote-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.track-vote-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.track-vote-banner-btn svg {
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .track-vote-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .track-vote-banner-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .track-vote-banner-btn {
        width: 100%;
        justify-content: center;
    }
}
/* ========== END: END OF YEAR VOTING - TRACK PAGE BANNER ========== */

/* Fix for vote banner text wrapping */
.track-vote-banner {
    flex-wrap: wrap;
}

.track-vote-banner-text {
    flex: 1;
    min-width: 200px;
}

/* Track vote banner actions layout */
.track-vote-banner-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.track-vote-banner-btn {
    cursor: pointer;
    border: none;
}

.track-vote-banner-btn:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

.track-vote-banner-btn.voted {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

.track-vote-banner-browse {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.85rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.track-vote-banner-browse:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.track-vote-banner-browse svg {
    flex-shrink: 0;
}

/* Vote message feedback */
.track-vote-message {
    position: absolute;
    bottom: -2.5rem;
    left: 0;
    right: 0;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    text-align: center;
    animation: slideUp 0.3s ease;
}

.track-vote-message.success {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.track-vote-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Make banner position relative for message positioning */
.track-vote-banner {
    position: relative;
    margin-bottom: 1.5rem;
    margin-top: -1.5rem;
}

@media (max-width: 600px) {
    .track-vote-banner-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    
    .track-vote-banner-browse {
        width: 100%;
        justify-content: center;
    }
}
/* ========== START: VOTE MENU BUTTON - REMOVE AFTER DEC 29, 2025 ========== */
.nav-item-vote .nav-vote-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #ffd700 !important;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-item-vote .nav-vote-link:hover {
    color: #ffe44d !important;
}

.nav-vote-icon {
    font-size: 0.9em;
    line-height: 1;
}
/* ========== END: VOTE MENU BUTTON ========== */

/* ========== START: VOTE NOT STARTED STYLES - REMOVE AFTER DEC 1, 2025 ========== */
.vote-not-started-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.2) 0%, rgba(255, 193, 7, 0.2) 100%);
    border: 1px solid rgba(255, 193, 7, 0.4);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    font-weight: 500;
    color: #ffc107;
}

.vote-not-started-icon {
    font-size: 1.5rem;
}

.vote-starts-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 152, 0, 0.2) 100%);
    border: 1px solid rgba(255, 193, 7, 0.4);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffc107;
    margin-bottom: 1.5rem;
}

.vote-starts-icon {
    font-size: 1.3rem;
}
/* ========== END: VOTE NOT STARTED STYLES ========== */

/* ========== START: REVEAL PAGE STYLES ========== */
.reveal-page {
    min-height: 100vh;
    padding-bottom: 2rem;
}

.reveal-header {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(180deg, rgba(var(--category-color-rgb, 193, 39, 45), 0.15) 0%, transparent 100%);
}

.reveal-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

.reveal-back-link:hover {
    color: var(--text-primary);
}

.reveal-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    background: linear-gradient(135deg, var(--category-color) 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reveal-countdown-container {
    margin: 2rem 0;
}

.reveal-starts-text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.reveal-countdown {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Space Mono', monospace;
}

.reveal-progress-container {
    max-width: 500px;
    margin: 0 auto;
}

.reveal-progress-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.reveal-progress-text span {
    color: var(--category-color);
}

.reveal-progress-bar {
    height: 8px;
    background: var(--surface-dark);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.reveal-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--category-color) 0%, #ffd700 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.reveal-next-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.reveal-next-text span {
    color: var(--category-color);
    font-weight: 600;
    font-family: 'Space Mono', monospace;
}

.reveal-songs-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.reveal-waiting {
    text-align: center;
    padding: 4rem 2rem;
}

.reveal-waiting-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.reveal-waiting h2 {
    font-size: 1.8rem;
    margin: 0 0 1rem;
}

.reveal-waiting p {
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto;
}

.reveal-songs-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.reveal-song-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.4s ease;
}

.reveal-song-card.hidden {
    opacity: 0.5;
    background: var(--surface-darker);
}

.reveal-song-card.revealed {
    opacity: 1;
}

.reveal-song-card.latest {
    border-color: var(--category-color);
    box-shadow: 0 0 20px rgba(var(--category-color-rgb, 193, 39, 45), 0.3);
    animation: revealGlow 2s ease-out;
}

@keyframes revealGlow {
    0% {
        transform: scale(1.02);
        box-shadow: 0 0 30px rgba(var(--category-color-rgb, 193, 39, 45), 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(var(--category-color-rgb, 193, 39, 45), 0.3);
    }
}

.reveal-song-position {
    flex-shrink: 0;
    width: 60px;
    text-align: center;
}

.position-number {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--category-color) 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reveal-song-card[data-position="1"] .position-number {
    font-size: 2rem;
}

.reveal-song-card[data-position="2"] .position-number,
.reveal-song-card[data-position="3"] .position-number {
    font-size: 1.75rem;
}

.reveal-song-cover {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.reveal-song-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reveal-song-info {
    flex: 1;
    min-width: 0;
}

.reveal-song-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    text-decoration: none;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reveal-song-title:hover {
    color: var(--category-color);
}

.reveal-song-artist {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reveal-song-votes {
    font-size: 0.9rem;
    color: var(--category-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

.reveal-song-mystery {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mystery-icon {
    width: 80px;
    height: 80px;
    background: var(--surface-darker);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-tertiary);
}

.mystery-text {
    color: var(--text-tertiary);
    font-style: italic;
}

/* Reveal Landing Page */
.reveal-landing {
    min-height: 100vh;
}

.reveal-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
}

.reveal-year-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #000;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.reveal-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 1rem;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reveal-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.reveal-starts-notice {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 140, 0, 0.2) 100%);
    border: 1px solid rgba(255, 215, 0, 0.4);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    color: #ffd700;
}

.reveal-starts-icon {
    font-size: 1.5rem;
}

.reveal-categories-section {
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.reveal-categories-section h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.reveal-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.reveal-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--surface-dark);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.reveal-category-card:hover {
    border-color: var(--category-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(var(--category-color-rgb, 193, 39, 45), 0.2);
}

.reveal-category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--category-color) 0%, rgba(var(--category-color-rgb, 193, 39, 45), 0.6) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.reveal-category-icon svg {
    width: 30px;
    height: 30px;
    color: #fff;
}

.reveal-category-card h3 {
    font-size: 1.4rem;
    margin: 0 0 1rem;
    color: var(--text-primary);
}

.reveal-category-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--category-color);
    font-weight: 600;
    margin-top: auto;
}

@media (max-width: 600px) {
    .reveal-header h1 {
        font-size: 1.5rem;
    }
    
    .reveal-song-card {
        flex-wrap: wrap;
    }
    
    .reveal-song-position {
        width: 50px;
    }
    
    .position-number {
        font-size: 1.2rem;
    }
    
    .reveal-song-cover {
        width: 60px;
        height: 60px;
    }
    
    .mystery-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .reveal-hero h1 {
        font-size: 1.8rem;
    }
}
/* ========== END: REVEAL PAGE STYLES ========== */

/* Track vote banner - not started state */
.track-vote-banner.not-started {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.15) 0%, rgba(255, 193, 7, 0.15) 100%);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.track-vote-banner-countdown {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    white-space: nowrap;
}

/* Vote step highlight - special announcement */
.vote-step-highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.5rem;
}

.vote-step-highlight .vote-step-number {
    background: linear-gradient(135deg, #ffd700 0%, #ff9500 100%);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vote-step-highlight h4 {
    color: #ffd700;
}

/* Vote step full width - spans entire row below the grid */
.vote-step-fullwidth {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
    margin-top: 1.5rem;
}

.vote-step-fullwidth .vote-step-number {
    margin-bottom: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vote-step-fullwidth .vote-step-content {
    flex: 1;
}

.vote-step-fullwidth .vote-step-content p {
    margin: 0.3rem 0 0;
    color: #aaa;
    font-size: 0.95rem;
}

.vote-step-timezone {
    margin-top: 0.75rem !important;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: #ffd700 !important;
    font-size: 0.9rem !important;
}

.vote-step-timezone span {
    font-weight: 600;
}

/* Now on air time display */
.now-on-air-time {
    font-weight: 400;
    font-size: 0.7em;
    color: var(--website-primary-color);
    margin-left: 0.5rem;
    opacity: 0.85;
}
