/* Wrapper */
.dst-wrapper {
    
    background: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08) !important;
    padding: 30px !important;
    margin: 10px 0;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Header */
.dst-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 25px !important;
}

.dst-header h3 {
    margin: 0 !important;
    font-size: 22px !important;
    font-weight: 600 !important;
}

.dst-badge {
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: #fff !important;
    padding: 6px 14px !important;
    border-radius: 50px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

/* FORCE GRID */
.dst-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
}

/* Card */
.dst-card {
    background: #f5f7fb !important;
    border-radius: 14px !important;
    padding: 20px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}

.dst-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

@media (max-width: 576px) {
    body {
        padding: 0px;
    }
}

/* Highlight */
.dst-card.highlight {
    background: linear-gradient(135deg, #0073aa, #00a0d2) !important;
    color: #ffffff !important;
}

/* Full width */
.dst-card.full {
    grid-column: span 2 !important;
}

/* Numbers */
.dst-number {
    display: block !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
}

/* Label */
.dst-label {
    font-size: 13px !important;
    opacity: 0.85 !important;
}

/* Mobile */
@media (max-width: 600px) {
    .dst-grid {
        grid-template-columns: 1fr !important;
    }

    .dst-card.full {
        grid-column: span 1 !important;
    }
}

.dst-row {
    display: flex !important;
    gap: 20px !important;
    align-items: stretch !important;
}

.dst-wrapper.half {
    flex: 1 !important;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .dst-row {
        flex-direction: column !important;
    }
}

/*Prize Log table*/
.dst-wrapper.full-width {
    margin-top: 25px;
    width: 100%;
}

.dst-prize-table {
    overflow-x: auto;
}

.dst-prize-table table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.dst-prize-table th,
.dst-prize-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-align: right;
}

.dst-header h3{
    font-size:15px !important;
}

.dst-wrapper{
    padding:15px !important;
}

.dst-prize-table th {
    font-size: 13px;
    letter-spacing: 0.5px;
}

.claim-btn {
    background: #4CAF50;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
}