.content-wrapper {
    position: relative;
    transition: filter 0.5s ease;
    z-index: 1;
}

/* Blur effect class */
.content-wrapper.blurred {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
}

/* Modal overlay - positioned above content but below modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal container - positioned above everything */
.login-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background-color: #111;
    border-radius: 12px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    border: 1px solid rgba(252, 188, 4, 0.3);
}

.login-modal.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.modal-header {
    display: block !important;
    background-color: #fcbc04;
    color: #222;
    padding: 5px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    text-align: center;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.modal-body {
    padding: 28px;
    color: #fff;
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fcbc04;
    text-align: center;
}

.modal-icon-img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}

.fallback-icon {
    font-size: 3rem;
}

.modal-content {
    text-align: center;
}

.modal-content ul {
    text-align: left;
    margin: 0px 0;
    padding-left: 70px;
    list-style-type: none;
}

.modal-content li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.modal-content li:before {
    content: "✓";
    color: #fcbc04;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.modal-footer {
    padding: 0 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-primary {
    background-color: #fcbc04;
    color: #222;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.login-prompt {
    color: #aaa;
    text-align: center;
    font-size: 0.9rem;
}

.login-prompt a {
    color: #fcbc04;
    text-decoration: none;
    font-weight: 500;
}

.login-prompt a:hover {
    text-decoration: underline;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 7px;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 10;
    background-color: white;
    border-radius: 10px;
    padding: 5px;
}

.modal-close-btn svg {
    width: 18px;
    height: 18px;
    color: #888;
}

.modal-close-btn:hover svg {
    color: #333;
}

/* Artist Tags */
.artist-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.artist-tag {
    background: rgba(176, 207, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(176, 207, 0, 0.2);
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
}