/* Daily Reward Minigame Styles */
/* assets/css/drm-style.css */

.drm-container {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.drm-container h2 {
    color: #2c3e50; /* Darker blue-gray */
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.drm-container p {
    color: #34495e; /* Slightly lighter blue-gray */
    line-height: 1.6;
}

.drm-button {
    background-color: #3498db; /* Brighter blue */
    color: white;
    border: none;
    padding: 12px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 0;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: bold;
}

.drm-button:hover {
    background-color: #2980b9; /* Darker blue on hover */
    transform: translateY(-1px);
}

.drm-button:active {
    transform: translateY(0px);
}


.drm-button:disabled {
    background-color: #bdc3c7; /* Gray for disabled */
    cursor: not-allowed;
    transform: none;
}

.drm-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 5px;
    font-size: 0.95em;
}

.drm-message.drm-success {
    background-color: #e8f5e9; /* Lighter green */
    border: 1px solid #a5d6a7; /* Light green border */
    color: #2e7d32; /* Darker green text */
}

.drm-message.drm-error {
    background-color: #ffebee; /* Lighter red */
    border: 1px solid #ef9a9a; /* Light red border */
    color: #c62828; /* Darker red text */
}

.drm-message.drm-notice {
    background-color: #fff3e0; /* Lighter orange/yellow */
    border: 1px solid #ffcc80; /* Light orange/yellow border */
    color: #e65100; /* Darker orange text */
}

.drm-current-points {
    margin-top: 20px;
    font-size: 1.1em;
    color: #7f8c8d; /* Grayish blue */
}

#drm-total-points-display {
    font-weight: bold;
    color: #2c3e50; /* Dark blue-gray for emphasis */
}
