/*
 * Top Donate Podium Design - Premium CSS
 * Thiết kế hoành tráng cho box top nạp với podium và bảng quà
 */

 
 
/* Main content layout */
.top-donate-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
 
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Left side - Rankings */
.rankings-section {
    flex: 2;
    min-width: 0; /* Allows flex shrinking */
    overflow: hidden;
}

/* Rewards section styling */
 
.rewards-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 15px;
}

.rewards-title {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(45deg, var(--main-color), var(--main-color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleShine 3s ease-in-out infinite;
    margin-bottom: 10px;
}

.countdown-display {
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
}

.rewards-list { 
    overflow-y: auto; 
}

 

.reward-item.my-reward {
    border-color: rgba(0, 255, 90, 0.4);
    background: linear-gradient(135deg, rgba(0, 255, 90, 0.15), rgba(0, 255, 90, 0.05));
}

.reward-rank {
    font-size: 18px;
    font-weight: 800;
    color: #ffc226;
    min-width: 40px;
    text-align: center;
}

.reward-info {
    flex: 1;
    margin: 0 15px;
}

.reward-player {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.reward-amount {
    font-size: 13px;
    font-weight: 600;
    color: #ffc226;
    margin-bottom: 2px;
}

.reward-total {
    font-size: 11px;
    color: #adb5bd;
}

.reward-action {
    min-width: 80px;
}

.reward-btn {
    padding: 8px 12px;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.reward-btn.claim {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border: 1px solid #28a745;
}

.reward-btn.claim:hover {
    background: linear-gradient(45deg, #218838, #1e9a85);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.reward-btn.steal {
    background: linear-gradient(45deg, #dc3545, #fd7e14);
    color: white;
    border: 1px solid #dc3545;
}

.reward-btn.steal:hover {
    background: linear-gradient(45deg, #c82333, #e96b00);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.reward-btn.disabled {
    background: linear-gradient(45deg, #6c757d, #868e96);
    color: #adb5bd;
    border: 1px solid #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.reward-note {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px; 
    color: #e6bb21;
    font-style: italic;
}

.action-btn, .action-btn-small {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.action-btn-small {
    padding: 6px 12px;
    font-size: 10px;
}

.action-btn.claim, .action-btn-small.claim {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border: 2px solid #28a745;
}

.action-btn.claim:hover, .action-btn-small.claim:hover {
    background: linear-gradient(45deg, #218838, #1e9a85);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.action-btn.steal, .action-btn-small.steal {
    background: linear-gradient(45deg, #dc3545, #fd7e14);
    color: white;
    border: 2px solid #dc3545;
}

.action-btn.steal:hover, .action-btn-small.steal:hover {
    background: linear-gradient(45deg, #c82333, #e96b00);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.action-btn.disabled, .action-btn-small.disabled {
    background: linear-gradient(45deg, #6c757d, #868e96);
    color: #adb5bd;
    border: 2px solid #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Countdown timers */
.podium-countdown, .ranking-countdown {
    font-size: 11px;
    color: #ffc226;
    font-weight: 600;
    text-align: center;
    margin-top: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

 
 
/* Right side - Rewards */
.rewards-section {
    flex: 1;
    min-width: 300px;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* Podium container */
.podium-container {
    margin-bottom: 10px;
    padding: 20px;
    background: #000;
    border-radius: 15px;
    backdrop-filter: blur(10px); 
    text-align: center;
}

.podium-title {
    text-align: center;
    color: var(--main-color);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    margin: 1px auto 65px;
    min-height: 200px;
    max-width: 600px;
}

/* Podium positions */
.podium-position {
    text-align: center;
    position: relative;
    border-radius: 15px 15px 0 0;
    padding: 20px 15px 15px;
    min-width: 120px;
    animation: podiumRise 1s ease-out;
    transition: transform 0.3s ease; 
}

 
@keyframes podiumRise {
    from {
        transform: translate (0, 100px);
        opacity: 0;
    }
    to {
        transform: translateY(0, 0);
        opacity: 1;
    }
}

/* Position 1 - Gold */
.podium-position.rank-1 {
    background-image: url(/assets/top/top-1.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 230px;
    width: 142px;
     animation: crownBounce 2s ease-in-out infinite;
}

.podium-position.rank-2 {
   background-image: url(/assets/top/top-2.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 230px;
    width: 142px;
     animation: crownBounce 2s ease-in-out infinite;
      top: 40px;
}

/* Position 3 - Bronze */
.podium-position.rank-3 {
        background-image: url(/assets/top/top-3.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 230px;
    width: 142px;
     animation: crownBounce 2s ease-in-out infinite;
     top: 40px;
}

@keyframes crownBounce {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(0) translateY(-5px); }
}

/* Player info in podium */
.podium-rank {
    font-size: 24px;
    font-weight: 900;
    margin-top: 46px;
}

.rank-1 .podium-rank {
       color: #ff0000;
    text-shadow: 0 0 10px rgb(255 255 255 / 80%);
}

.rank-2 .podium-rank {
        color: #ffe871;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.8);
}

.rank-3 .podium-rank {
        color: #e9e9e9;
    text-shadow: 0 0 10px rgba(205, 127, 50, 0.8);
}

.podium-username {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    word-break: break-word;
    margin-top: 55px;
}

.podium-amount {
    font-size: 12px; 
     
}

.rank-1 .podium-amount {    color: #bfbfbf;
    text-shadow: 1px 1px #000000;
    font-weight: 900;
}
.rank-2 .podium-amount {    color: #bfbfbf;
    text-shadow: 1px 1px #000000;
    font-weight: 900;
}
.rank-3 .podium-amount {    color: #bfbfbf;
    text-shadow: 1px 1px #000000;
    font-weight: 900;
    }
.rank-3 .podium-amount {    text-shadow: 1px 1px #000000;
    text-shadow: 1px 1px #000000;
    font-weight: 900;
}

/* Rankings 4-10 */
.other-rankings {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.other-rankings-title {
    color: #ffc226;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ranking-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 8px;
    background: #202020;
    border-radius: 10px; 
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

 

.ranking-number {
    font-size: 18px;
    font-weight: 900;
    color: #ffc226;
    min-width: 40px;
    text-align: center;
}

.ranking-username {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0 15px;
}

.ranking-amount {
    font-size: 13px;
    font-weight: 600;
    color: #ffc226;
    min-width: 100px;
    text-align: right;
}

/* Rewards section */
.rewards-box {
    background: #000;
    border-radius: 15px;
    padding: 20px; 
    backdrop-filter: blur(10px);
}

.rewards-title {
    color: #ffc226;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reward-item {
       display: flex;
    align-items: center;
    padding: 12px;
    margin-bottom: 10px;
    background: #151515;
    border-radius: 10px; 
    transition: all 0.3s ease;
}

 
.reward-rank {
    font-size: 14px;
    font-weight: 700;
    color: #ffc226;
    min-width: 35px;
    text-align: center;
}

.reward-info {
    flex: 1;
    margin: 0 10px;
}

.reward-name {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.reward-items {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.reward-action {
    min-width: 80px;
}

.reward-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reward-btn.claim {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.reward-btn.claim:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    transform: scale(1.05);
}

.reward-btn.disabled {
    background: rgba(108, 117, 125, 0.5);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
}

/* Responsive design */
@media (max-width: 991px) {
    .top-donate-content {
        flex-direction: column;
        gap: 20px; 
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .rankings-section {
        flex: 1;
        width: 100%; 
    }
    
    .rewards-section {
        flex: 1;
        width: 100%;
        order: 1;
        margin-bottom: 20px;
    }
    
    .podium {
        gap: 8px;
        min-height: 180px;
        padding: 0 10px;
        justify-content: center;
    }
 
    
 
    
    .top-donate-title {
        font-size: 28px;
        letter-spacing: 2px;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .rewards-list { 
        overflow-y: auto;
    }
}

@media (max-width: 768px) {
    .top-donate-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .podium {
        gap: 5px;
        min-height: 150px;
    }
    
 .podium-position.rank-2,
 .podium-position.rank-1,
 .podium-position.rank-3 {
    height: auto;
    width: auto;
    background-size: contain;
    background-position: center;
 }
 .podium-rank {
    font-size: 22px;
    font-weight: 900;
    margin-top: 16px;
}
   
.podium-username {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    word-break: break-word;
    margin-top: 20px;
}
    .top-donate-title {
        font-size: 24px;
        letter-spacing: 2px;
    }
}

@media (max-width: 411px) {
    .top-donate-content {
        padding: 0 5px;
        gap: 15px;
    }
    
    .rewards-section {
        flex: 1;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .podium-container {
        padding: 15px 10px;
        margin-bottom: 15px;
    }
    
    .podium-title {
        font-size: 16px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }
    
    .top-donate-title {
        font-size: 20px;
        letter-spacing: 1px;
        padding: 0 10px;
        text-align: center;
    }
    
    .podium {
        gap: 2px;
        min-height: 140px;
        padding: 0 5px;
        margin: 0 auto 20px;
    }
    
    .podium-position {
        min-width: 70px;
        max-width: 80px;
        padding: 12px 3px 10px 3px;
        margin: 0 1px;
    }
    
 
    
    .podium-rank {
        font-size: 18px;
        margin-top: 35px;
    }
    
    .rank-2 .podium-rank,
    .rank-3 .podium-rank {
        margin-top: 20px;
    }
    
    .podium-username {
        font-size: 11px;
        margin-bottom: 6px;
        margin-top: 15px;
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .podium-amount {
        font-size: 10px;
        padding: 2px 4px;
        border-radius: 6px;
    }
    
    /* Rewards list responsive */
    .rewards-list { 
        overflow-y: auto;
        padding-right: 5px;
    }
    
    .reward-item {
        padding: 8px;
        margin-bottom: 8px;
        border-radius: 8px;
    }
    
    .reward-rank {
        font-size: 14px;
        min-width: 30px;
    }
    
    .reward-info {
        flex: 1;
        min-width: 0;
    }
    
    .reward-player {
        font-size: 12px;
        font-weight: 600;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .reward-amount {
        font-size: 11px;
        color: #ffc226;
    }
    
    .reward-total {
        font-size: 10px;
        color: #888;
    }
    
    .reward-btn {
        padding: 4px 8px;
        font-size: 10px;
        min-width: 60px;
        border-radius: 4px;
    }
    
    /* Rankings section responsive */
    .rankings-section {
        padding: 0 5px;
    }
    
    .ranking-item {
        padding: 8px;
        margin-bottom: 6px;
        border-radius: 8px;
    }
    
    .ranking-number {
        font-size: 14px;
        min-width: 30px;
    }
    
    .ranking-username {
        font-size: 12px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .ranking-amount {
        font-size: 11px;
    }
    
    /* Countdown and headers */
    .countdown-display {
        font-size: 12px;
    }
    
    .rewards-title {
        font-size: 16px;
    }
    
    .rewards-header {
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
    
    .reward-note {
        font-size: 10px;
        padding: 5px;
        margin-top: 10px;
    }
}

@media (max-width: 406px) {
    .podium-position {   
    padding: 17px 5px 15px 5px;
    min-width: 90px; 
}
    .podium {
        gap: 0px; 
        margin-bottom: 60px;
    }
        .podium-rank { 
        margin-top: 19px;
    }
    .rank-2 .podium-rank,
    .rank-3 .podium-rank {
        margin-top: 17px;
    }
   
}
 .small, small {
    font-size: 95% !important;
    font-weight: 400;
}
.loading-state {
    font-size: 15px;
}
 
/* Loading state */
.loading-state {
    text-align: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.6);
}

.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    border-top-color: #ffc226;
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

 
 
 
 
 
 
/* Security box styling */
.top-donate-premium .scurity-box {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

/* ==== UNCLAIMED CARDS STYLING ==== */
.unclaimed-cards-container {
    margin-top: 20px;
}

/* Unclaimed header - compact */
.unclaimed-header {
    text-align: center;
    margin-bottom: 15px;
}

.unclaimed-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffc226;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.unclaimed-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* Unclaimed tabs styling */
#unclaimedTabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center; 
}

.unclaimed-tab {
        background:#000;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 5px 14px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    font-size: 12px;
}

.unclaimed-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.6s;
}

.unclaimed-tab:hover {
    border-color: rgb(255, 216, 40);
    color: #f4f2bd;
    transform: translateY(-2px); 
}

.unclaimed-tab:hover::before {
    left: 100%;
}

.unclaimed-tab.active {
    background: linear-gradient(145deg, #ffc226, #ff8c00);
    border-color: #ffc226;
    color: #000000;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.unclaimed-tab.active::before {
    display: none;
}
#unclaimedCardWrapper {
    width: 100%
}
#unclaimedCardsList .unclaimed-items-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Force exactly 4 columns */
    gap: 12px;
    max-height: none;
    overflow: visible;
    padding: 0;
    width: 100%;
}

/* Pagination controls */
.unclaimed-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px 0;
}

.pagination-info {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 15px;
}

.pagination-btn {
   background: var(--main-color);
    border: 1px solid #161c29;
    border-radius: 6px;
    padding: 8px 12px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 12px;
    min-width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover:not(.disabled) {
    transform: translateY(-1px); 
}

.pagination-btn.active {
    background: #263b5a;
    border-color: #7d7d7d;
    color: #ffffff;
}

.pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(100, 100, 100, 0.2);
    border-color: rgba(100, 100, 100, 0.3);
    color: rgba(255, 255, 255, 0.4);
}

.pagination-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

.pagination-ellipsis {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    display: flex;
    align-items: center;
    padding: 0 5px;
}

/* Custom scrollbar */
.unclaimed-items-list::-webkit-scrollbar {
    width: 8px;
}

.unclaimed-items-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

 

/* Unclaimed item card - CARD GRID VERSION */
.unclaimed-item { 
    background-color: #000 !important;
    border-radius: 12px;
    padding: 12px; /* Reduced from 16px to 12px */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s ease-out;
    min-height: 160px;  
    display: flex;
    flex-direction: column;
    z-index: 999;
}
 
/* Unclaimed item layout - CARD LAYOUT */
.unclaimed-item-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.unclaimed-rank {
    font-size: 18px;
    font-weight: 900;
    color: #ffcc4a; 
    text-align: center;
    padding: 6px;
    background: #202020;
    border-radius: 8px;
    margin-bottom: 6px;
}

.unclaimed-info {
    display: flex;
    flex-direction: column;
    gap: 6px; /* Reduced from 8px to 6px */
    flex: 1;
}

.unclaimed-player {
    font-size: 14px; /* Reduced from 16px to 14px */
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.unclaimed-amount {
    font-size: 12px; /* Reduced from 14px to 12px */
    color: #ffc226;
    font-weight: 600;
    text-align: center;
}

.unclaimed-close-time {
    font-size: 11px; /* Reduced from 12px to 11px */
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.unclaimed-countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 6px 0; /* Reduced from 8px to 6px */
    padding: 6px; /* Reduced from 8px to 6px */
    background: #202020;
    border-radius: 6px;
}

.unclaimed-expire-time {
    font-size: 10px; /* Reduced from 11px to 10px */
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3px; /* Reduced from 4px to 3px */
}

.unclaimed-remaining {
    font-size: 12px; /* Reduced from 13px to 12px */
    font-weight: 600;
    color: #ff6b6b;
    text-shadow: 0 0 8px rgba(255, 107, 107, 0.3);
}

.unclaimed-actions {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

 
/* Responsive design for unclaimed cards */
@media (max-width: 1200px) {
    #unclaimedCardsList .unclaimed-items-list {
        grid-template-columns: repeat(4, 1fr); /* Keep 4 columns on medium screens */
    }
}

@media (max-width: 768px) {
    #unclaimedCardsList .unclaimed-items-list {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
        gap: 8px;
    }
    
    .unclaimed-item {
        padding: 10px;
        min-height: 150px;
    }
    
    .unclaimed-rank {
        font-size: 16px;
        padding: 5px;
    }
    
    .unclaimed-player {
        font-size: 13px;
    }
    
    .unclaimed-amount {
        font-size: 11px;
    }
    
    
    
    .pagination-btn {
        padding: 6px 10px;
        font-size: 11px;
        min-width: 30px;
    }
}

@media (max-width: 500px) {
    #unclaimedCardsList .unclaimed-items-list {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 15px;
        max-height: none;
        overflow: visible; 
        justify-items: center;
    }
    
    .unclaimed-item {
        padding: 16px;
        min-height: 180px;
        width: 100%; 
        margin: 0 auto;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .unclaimed-rank {
        font-size: 18px;
        font-weight: bold;
    }
    
    .unclaimed-player {
        font-size: 15px;
        font-weight: 600;
    }
    
    .unclaimed-amount {
        font-size: 13px;
    }
    
    .unclaimed-countdown {
        padding: 8px;
        font-size: 13px;
        margin: 8px 0;
    }
    
    /* Pagination styles for mobile single item view */
    .pagination-info {
        font-size: 14px;
        margin: 15px 0;
    }
    
    .pagination-btn {
        padding: 10px 15px;
        font-size: 13px;
        min-width: 40px;
    }
}

@media (min-width: 501px) and (max-width: 480px) {
    #unclaimedCardsList .unclaimed-items-list {
        grid-template-columns: 1fr 1fr; /* 2 columns on mobile */
        gap: 6px;
    }
    
    .unclaimed-item {
        padding: 8px;
        min-height: 140px;
    }
    
    .unclaimed-rank {
        font-size: 14px;
    }
    
    .unclaimed-player {
        font-size: 12px;
    }
    
    .unclaimed-countdown {
        padding: 4px;
    }
}

/* Empty state for unclaimed */
.unclaimed-empty {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.6);
}

.unclaimed-empty i {
    font-size: 48px;
    color: rgba(255, 215, 0, 0.3);
    margin-bottom: 15px;
}

.unclaimed-empty h4 {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

/* Animation for unclaimed items */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOutUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-30px);
    }
}

/* Responsive design for unclaimed */
@media (max-width: 768px) {
    .unclaimed-item-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .unclaimed-countdown {
        min-width: auto;
    }
    
    .unclaimed-actions {
        flex-direction: row;
        justify-content: center;
        min-width: auto;
    }
    
    
}
 
 