/**
 * RadioDJ for WordPress - Complete Stylesheet
 * Based on original Radio 90 Hit design
 * @package RadioDJ
 * @version 3.0.0
 */

/* === CSS Variables === */
:root {
    --rdj-primary: #ff007f;
    --rdj-primary-hover: #cc0066;
    --rdj-secondary: #ffcc00;
    --rdj-button-bg: #ff60d0;
    --rdj-button-hover: #ff38b2;
    --rdj-card-bg: rgba(60,0,80,0.4);
    --rdj-text: #fff;
    --rdj-muted: #DDD1E0;
    --rdj-highlight: #FFD700;
    --rdj-shadow: rgba(255,255,255,0.05);
    --rdj-rank-gold: #FFD700;
    --rdj-rank-silver: #C0C0C0;
    --rdj-rank-bronze: #cd7f32;
    --rdj-font-family: 'Segoe UI', system-ui, sans-serif;
}

/* === Base Container === */
.rdj-wrap,
.rdj-container {
    font-family: var(--rdj-font-family);
    color: var(--rdj-text);
}

/* === Universal Image Square Fix === */
/* This forces ALL cover images in the plugin to be square */
[class*="rdj-"] [class*="-cover"],
[class*="rdj-"] [class*="img-wrapper"],
.song-card-img-wrapper,
.featured-img-wrapper {
    position: relative !important;
    overflow: hidden !important;
    background: rgba(0,0,0,0.3);
}

/* For containers that need padding-based aspect ratio */
.rdj-track-cover,
.song-card-img-wrapper {
    height: 0 !important;
    padding-top: 100% !important;
}

/* For containers with fixed dimensions */
.featured-img-wrapper {
    width: 300px !important;
    height: 300px !important;
    padding-top: 0 !important;
}

/* Force all images inside cover wrappers to fill and crop */
[class*="rdj-"] [class*="-cover"] img,
[class*="rdj-"] [class*="img-wrapper"] img,
.song-card-img-wrapper img,
.featured-img-wrapper img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
}
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* =====================================================
   REQUEST TABLE / TRACK LIST STYLES (request-table)
   ===================================================== */

.rdj-wrap.requests {
    --button-bg: #ff60d0;
    --button-hover: #ff38b2;
    color: var(--rdj-text);
}

/* Search Box */
.rdj-wrap.requests .searchbox,
.rdj-search {
    margin: 2rem auto;
    text-align: center;
}

.rdj-wrap.requests .searchbox fieldset {
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.05);
    border-radius: 12px;
    padding: 16px;
    margin: 0;
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.rdj-wrap.requests .searchbox input[type="text"],
.rdj-search-input {
    padding: 0.6rem 1rem;
    font-size: 1rem;
    width: 100%;
    max-width: 600px;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: #fff;
    outline: none;
    transition: border-color 0.3s ease;
}

.rdj-wrap.requests .searchbox input[type="text"]:focus,
.rdj-search-input:focus {
    border-color: var(--rdj-primary);
}

.rdj-wrap.requests .searchbox input[type="submit"] {
    background-color: var(--button-bg);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.rdj-wrap.requests .searchbox input[type="submit"]:hover {
    background-color: var(--button-hover);
}

/* Header & Note */
.rdj-header .rdj-note {
    color: #ccc;
    font-size: 0.92rem;
    text-align: center;
    margin: 0.5rem 0;
}

.rdj-header .rdj-note a {
    color: var(--rdj-primary);
}

/* Card Container / Grid */
.rdj-wrap.requests .rdj-card-container,
.rdj-container.rdj-requests .rdj-tracks-list,
.rdj-tracks-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    padding: 2rem 0;
    margin-top: 1rem;
}

/* Individual Card */
.rdj-wrap.requests .rdj-card,
.rdj-container.rdj-requests .rdj-track,
.rdj-track {
    background: var(--rdj-card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--rdj-shadow);
    overflow: hidden;
    width: 200px;
    text-align: center;
    color: var(--rdj-text);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}

.rdj-wrap.requests .rdj-card:hover,
.rdj-container.rdj-requests .rdj-track:hover,
.rdj-track:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Cover Image - Force square with absolute positioning */
.rdj-wrap.requests .rdj-cover,
.rdj-container.rdj-requests .rdj-track-cover,
.rdj-track-cover {
    position: relative !important;
    width: 100% !important;
    height: 0 !important;
    padding-top: 100% !important; /* Forces 1:1 aspect ratio */
    overflow: hidden !important;
    background: rgba(0,0,0,0.3);
}

.rdj-wrap.requests .rdj-cover img,
.rdj-container.rdj-requests .rdj-track-cover img,
.rdj-track-cover img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
    transition: transform 0.3s ease-in-out;
}

.rdj-wrap.requests .rdj-card:hover .rdj-cover img,
.rdj-container.rdj-requests .rdj-track:hover .rdj-track-cover img,
.rdj-track:hover .rdj-track-cover img {
    transform: scale(1.05);
}

/* Details */
.rdj-wrap.requests .rdj-details,
.rdj-container.rdj-requests .rdj-track-info,
.rdj-track-info {
    padding: 1rem;
    color: var(--rdj-text);
    flex-grow: 1;
}

.rdj-wrap.requests .rdj-artist,
.rdj-container.rdj-requests .rdj-track-artist,
.rdj-track-artist {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--rdj-highlight);
}

.rdj-wrap.requests .rdj-title,
.rdj-container.rdj-requests .rdj-track-title,
.rdj-track-title {
    font-size: 0.95rem;
    color: var(--rdj-muted);
}

/* Action Buttons */
.rdj-wrap.requests .rdj-action,
.rdj-track-status {
    padding: 0 1rem 1rem;
}

.rdj-wrap.requests .request-btn,
.rdj-btn-primary {
    display: inline-block;
    background: var(--rdj-button-bg);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.rdj-wrap.requests .request-btn:hover,
.rdj-btn-primary:hover {
    background: var(--rdj-button-hover);
    box-shadow: 0 0 8px var(--rdj-button-hover);
}

.rdj-wrap.requests .disabled-request,
.rdj-badge-warning {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255,255,255,0.1);
    color: #aaa;
    font-size: 0.85rem;
    border-radius: 20px;
}

/* Pagination */
.rdj-wrap.requests .rdj-pagination,
.rdj-pagination,
.paginate {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem auto;
    text-align: center;
}

.rdj-wrap.requests .rdj-pagination a,
.paginate a,
.rdj-page-link {
    margin: 0 3px;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    background: var(--rdj-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.rdj-wrap.requests .rdj-pagination a:hover,
.paginate a:hover,
.rdj-page-link:hover {
    background: var(--rdj-primary-hover);
}

.paginate .current,
.rdj-page-link.rdj-page-current {
    background: var(--rdj-secondary);
    color: #000;
}

.paginate .disabled,
.rdj-page-link.rdj-page-disabled {
    background: #666;
    color: #ccc;
    cursor: not-allowed;
}

/* =====================================================
   TOP REQUESTED STYLES (top-requested)
   ===================================================== */

.top10-wrapper {
    --card-bg: rgba(60,0,80,0.4);
    --text: #fff;
    --accent: #FF6F61;
    --muted: #DDD1E0;
    --highlight: #FFD700;
    --rank-gold: #FFD700;
    --rank-silver: #C0C0C0;
    --rank-bronze: #cd7f32;
    
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--text);
    font-family: var(--rdj-font-family);
}

/* Featured #1 */
.top-rank-featured {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 14px rgba(255,255,255,0.05);
    min-height: 300px;
    transition: all 0.3s ease;
}

.top-rank-featured:hover {
    background: rgba(255,255,255,0.05);
    box-shadow: 0 0 20px rgba(255,255,255,0.15);
}

.featured-img-wrapper {
    flex: 0 0 300px;
    width: 300px !important;
    height: 300px !important;
    border-radius: 12px;
    overflow: hidden !important;
    position: relative !important;
    background: rgba(0,0,0,0.3);
}

.featured-img-wrapper img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
    border-radius: 12px;
}

.featured-info {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-left: 1rem;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.featured-artist {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 0.4rem;
    color: var(--text);
}

.featured-title {
    font-size: 1.4rem;
    margin: 0.2rem 0 1rem;
    color: var(--muted);
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.6rem;
}

.featured-stats {
    margin-top: auto;
    display: flex;
    gap: 1.5rem;
    font-size: 1.2rem;
    color: var(--muted);
    align-items: center;
}

.featured-stats.big {
    font-size: 2rem;
}

.featured-stats i {
    margin-right: 0.5rem;
}

.featured-rank-huge {
    flex: 0 0 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.huge-rank-badge {
    width: 120px;
    height: 120px;
    line-height: 120px;
    font-size: 4rem;
    font-weight: 900;
    color: var(--highlight);
    background: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
    flex-shrink: 0;
}

/* Grid for positions 2-10 */
.rank-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1rem 0 2rem;
}

/* Song Card */
.song-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 0 12px rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
}

.song-card:hover {
    transform: scale(1.03);
    border-color: var(--highlight);
}

/* Song Card Image - Force square with absolute positioning */
.song-card-img-wrapper,
.top10-wrapper .song-card .song-card-img-wrapper {
    position: relative !important;
    width: 100% !important;
    height: 0 !important;
    padding-top: 100% !important; /* Forces 1:1 aspect ratio */
    overflow: hidden !important;
    background: rgba(0,0,0,0.3);
}

.song-card-img-wrapper img,
.top10-wrapper .song-card .song-card-img-wrapper img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
}

.song-card-rank {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 0.85rem;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 50px;
}

.song-card-info {
    padding: 1rem;
    text-align: center;
}

.song-card-artist {
    font-size: 1.05rem;
    font-weight: bold;
    color: var(--text);
    margin: 0;
}

.song-card-title {
    font-size: 0.95rem;
    color: var(--muted);
    margin-top: 0.3rem;
}

.song-card-stats {
    margin-top: 0.6rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.song-card-stat i {
    margin-right: 4px;
}

/* =====================================================
   MESSAGE BOXES & NOTICES
   ===================================================== */

.rdj-notice-card,
.rdj-message,
.rdj-error,
.rdj-success,
.rdj-info {
    background: linear-gradient(135deg, #1e0033, #3c0066);
    color: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 1.5rem auto;
    max-width: 800px;
    box-shadow: 0 0 15px rgba(255,0,255,0.2);
    font-family: var(--rdj-font-family);
    text-align: center;
}

.rdj-message.info {
    background: linear-gradient(135deg, #002a4d, #004080);
    border-left: 4px solid #00ccff;
}

.rdj-message.error,
.errordiv {
    background: linear-gradient(135deg, #4d001a, #800033);
    border-left: 4px solid #ff0040;
}

.rdj-message strong,
.rdj-notice-card strong {
    color: #ffcc00;
}

/* ===================================================== 
   BLOCKED/PAUSED MESSAGE STYLES
   ===================================================== */

.rdj-blocked {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(30,0,50,0.95), rgba(60,0,100,0.9));
    border-radius: 20px;
    max-width: 700px;
    margin: 2rem auto;
    border: 2px solid rgba(255,0,127,0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.rdj-blocked-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.rdj-blocked h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 1rem;
    color: var(--rdj-primary);
    text-shadow: 0 0 20px rgba(255,0,127,0.3);
}

.rdj-blocked p {
    font-size: 1.1rem;
    color: var(--rdj-text);
    margin: 0.5rem 0 1.5rem;
    line-height: 1.6;
}

.rdj-blocked-show {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    margin: 1.5rem 0;
    border: 1px solid rgba(255,255,255,0.2);
}

.rdj-blocked-show-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--rdj-secondary);
}

.rdj-blocked-show-name a {
    color: var(--rdj-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.rdj-blocked-show-name a:hover {
    color: var(--rdj-highlight);
}

.rdj-blocked-presenter {
    color: var(--rdj-muted);
    font-size: 1rem;
}

/* Countdown Timer */
.rdj-countdown {
    display: inline-flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
}

.rdj-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--rdj-primary), var(--rdj-button-bg));
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    min-width: 80px;
    box-shadow: 0 4px 15px rgba(255,0,127,0.3);
    animation: countdownPulse 1s ease-in-out infinite;
}

@keyframes countdownPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.rdj-countdown-value {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.rdj-countdown-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    opacity: 0.9;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.rdj-mt-6 {
    margin-top: 2rem;
}

.rdj-btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
}

/* ===================================================== 
   ALERT MESSAGES (Error, Success, Info)
   ===================================================== */

.rdj-alert {
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 1.5rem auto;
    max-width: 700px;
    border-left: 4px solid;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.rdj-alert-error {
    background: linear-gradient(135deg, rgba(220,38,38,0.15), rgba(153,27,27,0.2));
    border-color: #ef4444;
    color: #fff;
}

.rdj-alert-success {
    background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(22,163,74,0.2));
    border-color: #22c55e;
    color: #fff;
}

.rdj-alert-warning {
    background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(217,119,6,0.2));
    border-color: #f59e0b;
    color: #fff;
}

.rdj-alert-info {
    background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(37,99,235,0.2));
    border-color: #3b82f6;
    color: #fff;
}

.rdj-alert-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rdj-alert p {
    margin: 0.5rem 0 0;
    line-height: 1.6;
}

/* Animation classes */
.rdj-fade-in {
    animation: fadeIn 0.5s ease-out;
}

.rdj-scale-in {
    animation: scaleIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Countdown */
#countdown {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 1.2rem;
    font-weight: bold;
}

.countdown-box {
    display: inline-block;
    background: var(--rdj-primary);
    color: #fff;
    padding: 0.25rem 0.5rem;
    margin: 0 0.25rem;
    border-radius: 0.5rem;
    font-weight: bold;
}

/* Return Link */
.rdj-return-link,
.rdj-return {
    display: inline-block;
    background: var(--rdj-primary);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1.5rem;
    transition: background 0.3s ease;
}

.rdj-return-link:hover,
.rdj-return:hover {
    background: var(--rdj-primary-hover);
}

/* =====================================================
   REQUEST FORM STYLES
   ===================================================== */

.rdj-request-form {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 600px;
    margin: 2rem auto;
}

.rdj-request-track {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.rdj-request-track-cover {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.rdj-request-track-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rdj-request-track-info h3 {
    font-size: 1.2rem;
    margin: 0 0 0.25rem;
    color: var(--rdj-highlight);
}

.rdj-request-track-info p {
    color: var(--rdj-muted);
    margin: 0;
}

.rdj-request-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rdj-request-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #ccc;
}

.rdj-request-field input,
.rdj-request-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.rdj-request-field input:focus,
.rdj-request-field textarea:focus {
    outline: none;
    border-color: var(--rdj-primary);
}

.rdj-request-field textarea {
    resize: vertical;
    min-height: 80px;
}

.rdj-request-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.rdj-request-actions .rdj-btn {
    flex: 1;
    text-align: center;
}

.rdj-btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.rdj-btn-ghost:hover {
    border-color: var(--rdj-primary);
    color: var(--rdj-primary);
}

/* Request Success */
.rdj-request-success {
    text-align: center;
    padding: 2rem;
}

.rdj-request-success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.rdj-request-success h2 {
    color: #10b981;
    margin-bottom: 1rem;
}

/* =====================================================
   UTILITIES
   ===================================================== */

.sr-only {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px,1px,1px,1px);
    white-space: nowrap;
}

.noticediv {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    color: #fff;
    text-align: center;
}

.rdj-text-error {
    color: #ff4444;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 992px) {
    .rank-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-rank-featured {
        flex-direction: column;
        text-align: center;
    }
    
    .featured-img-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
        flex: none;
    }
    
    .featured-info {
        text-align: center;
        padding-left: 0;
        border-left: none;
    }
    
    .featured-stats {
        justify-content: center;
    }
    
    .featured-rank-huge {
        margin-top: 1rem;
    }
    
    .huge-rank-badge {
        width: 80px;
        height: 80px;
        line-height: 80px;
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .rank-grid {
        grid-template-columns: 1fr;
    }
    
    .rdj-wrap.requests .rdj-card-container,
    .rdj-tracks-list {
        gap: 1rem;
    }
    
    .rdj-wrap.requests .rdj-card,
    .rdj-track {
        width: 100%;
        max-width: 300px;
    }
    
    .rdj-notice-card,
    .rdj-message {
        padding: 1rem;
    }
    
    .paginate {
        gap: 0.3rem;
    }
    
    .rdj-return-link {
        width: 100%;
        text-align: center;
    }
    
    .rdj-request-track {
        flex-direction: column;
        text-align: center;
    }
    
    .rdj-request-actions {
        flex-direction: column;
    }
    
    /* Blocked message responsive */
    .rdj-blocked {
        padding: 2rem 1rem;
        margin: 1rem;
    }
    
    .rdj-blocked h2 {
        font-size: 1.5rem;
    }
    
    .rdj-blocked p {
        font-size: 1rem;
    }
    
    .rdj-blocked-show {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .rdj-blocked-show-name {
        font-size: 1.1rem;
    }
    
    .rdj-countdown {
        gap: 0.75rem;
    }
    
    .rdj-countdown-item {
        padding: 0.75rem 1rem;
        min-width: 60px;
    }
    
    .rdj-countdown-value {
        font-size: 2rem;
    }
    
    .rdj-countdown-label {
        font-size: 0.75rem;
    }
    
    .rdj-blocked-icon {
        font-size: 3rem;
    }
    
    .rdj-alert {
        padding: 1rem 1.5rem;
        margin: 1rem;
    }
}


/* =====================================================
   REQUEST SUCCESS & DONATION CTA
   ===================================================== */

.rdj-success-wrapper {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1rem;
}

/* Success Card */
.rdj-success-card {
    background: linear-gradient(135deg, rgba(30,0,50,0.9), rgba(60,0,100,0.8));
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.rdj-success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.rdj-success-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #00ff88;
    margin: 0 0 1rem;
    text-shadow: 0 0 20px rgba(0,255,136,0.3);
}

.rdj-success-text {
    font-size: 1.1rem;
    color: var(--rdj-text);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.rdj-success-text strong {
    color: var(--rdj-highlight);
}

.rdj-success-note {
    font-size: 1rem;
    color: var(--rdj-muted);
    margin-bottom: 1.5rem;
}

.rdj-success-actions {
    margin-top: 1.5rem;
}

.rdj-btn-secondary {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: var(--rdj-text);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.rdj-btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--rdj-primary);
    color: #fff;
}

/* Donation CTA */
.rdj-donation-cta {
    background: linear-gradient(135deg, rgba(255,0,127,0.15), rgba(100,0,150,0.2));
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin-top: 1.5rem;
    border: 2px solid rgba(255,0,127,0.3);
    box-shadow: 0 0 30px rgba(255,0,127,0.1);
    animation: ctaGlow 3s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(255,0,127,0.1); }
    50% { box-shadow: 0 0 40px rgba(255,0,127,0.25); }
}

.rdj-donation-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.15); }
    30% { transform: scale(1); }
    45% { transform: scale(1.1); }
    60% { transform: scale(1); }
}

.rdj-donation-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--rdj-primary);
    margin: 0 0 0.8rem;
}

.rdj-donation-text {
    font-size: 0.95rem;
    color: var(--rdj-muted);
    margin-bottom: 1.2rem;
    line-height: 1.5;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.rdj-btn-donation {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff007f, #ff60d0);
    color: #fff !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 4px 20px rgba(255,0,127,0.4);
    transition: all 0.3s ease;
}

.rdj-btn-donation:hover {
    background: linear-gradient(135deg, #ff38b2, #ff007f);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255,0,127,0.5);
}

.rdj-donation-btn-icon {
    font-size: 1.2rem;
}

.rdj-donation-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 600px) {
    .rdj-success-wrapper {
        padding: 0.5rem;
    }
    
    .rdj-success-card,
    .rdj-donation-cta {
        padding: 1.5rem;
    }
    
    .rdj-success-title {
        font-size: 1.4rem;
    }
    
    .rdj-btn-donation {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}
