/**
 * Base styles for Casino Blocks Ultimate
 * Extracted from inline styles for better performance
 */

.cbu-block {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.cbu-block * {
    box-sizing: border-box;
}

.cbu-block img {
    display: block;
    max-width: 100%;
    height: auto;
}

.cbu-block button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.cbu-block button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .cbu-block .cbu-flex {
        flex-direction: column !important;
    }
    .cbu-block button {
        width: 100% !important;
    }
}
