.rcg-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 30px;
    text-align: center;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.rcg-display {
    margin-bottom: 20px;
}

.rcg-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    min-height: 50px;
    align-items: center;
}

.rcg-icon {
    font-size: 40px;
    transition: transform 0.3s;
}

.rcg-icon:hover {
    transform: scale(1.1);
}

.rcg-charade {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 20px 0;
    min-height: 40px;
}

.rcg-remaining {
    font-size: 14px;
    color: #666;
    margin: 10px 0;
}

.rcg-button, .rcg-reset {
    background: #0073aa;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
    transition: background 0.3s;
}

.rcg-button:hover, .rcg-reset:hover {
    background: #005177;
}

.rcg-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.rcg-reset {
    background: #dc3232;
}

.rcg-reset:hover {
    background: #a82323;
}