/**
 * Frontend Block Styles
 */


.jgambling-block {
    margin: 24px 0;
}


@keyframes jgambling-fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes jgambling-slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes jgambling-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}


.jgambling-fade-in {
    animation: jgambling-fadeIn 0.6s ease-out;
}


.jgambling-slide-in {
    animation: jgambling-slideIn 0.6s ease-out;
}


.jgambling-pulse {
    animation: jgambling-pulse 2s infinite;
}


.jgambling-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: jgambling-skeleton-loading 1.5s infinite;
}

@keyframes jgambling-skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.jgambling-skeleton-text {
    height: 16px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.jgambling-skeleton-title {
    height: 24px;
    border-radius: 4px;
    margin-bottom: 12px;
    width: 60%;
}

.jgambling-skeleton-image {
    height: 200px;
    border-radius: 8px;
    margin-bottom: 16px;
}


.jgambling-hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jgambling-hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.jgambling-hover-scale {
    transition: transform 0.3s ease;
}

.jgambling-hover-scale:hover {
    transform: scale(1.05);
}

.jgambling-hover-glow {
    transition: box-shadow 0.3s ease;
}

.jgambling-hover-glow:hover {
    box-shadow: 0 0 20px rgba(0, 115, 170, 0.3);
}


.jgambling-button {
    display: inline-block;
    background: linear-gradient(135deg, #0073aa 0%, #005a87 100%);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 115, 170, 0.2);
}

.jgambling-button:hover {
    background: linear-gradient(135deg, #005a87 0%, #004466 100%);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 115, 170, 0.3);
}

.jgambling-button:active {
    transform: translateY(0);
}

.jgambling-button:focus {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}

.jgambling-button-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #545b62 100%);
}

.jgambling-button-secondary:hover {
    background: linear-gradient(135deg, #545b62 0%, #3d4449 100%);
}

.jgambling-button-success {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
}

.jgambling-button-success:hover {
    background: linear-gradient(135deg, #1e7e34 0%, #155724 100%);
}

.jgambling-button-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.jgambling-button-danger:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
}

.jgambling-button-outline {
    background: transparent;
    border: 2px solid #0073aa;
    color: #0073aa;
}

.jgambling-button-outline:hover {
    background: #0073aa;
    color: #fff;
}


.jgambling-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.jgambling-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0073aa, #005a87);
}

.jgambling-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.jgambling-card-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.jgambling-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e1e1e;
    margin: 0;
    line-height: 1.3;
}

.jgambling-card-subtitle {
    font-size: 14px;
    color: #6c757d;
    margin-top: 4px;
}

.jgambling-card-body {
    margin-bottom: 20px;
    line-height: 1.6;
}

.jgambling-card-footer {
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}


.jgambling-grid {
    display: grid;
    gap: 24px;
}

.jgambling-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.jgambling-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.jgambling-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.jgambling-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.jgambling-grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1200px) {
    .jgambling-grid-6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .jgambling-grid-4,
    .jgambling-grid-5,
    .jgambling-grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .jgambling-grid-2,
    .jgambling-grid-3,
    .jgambling-grid-4,
    .jgambling-grid-5,
    .jgambling-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .jgambling-grid-2,
    .jgambling-grid-3,
    .jgambling-grid-4,
    .jgambling-grid-5,
    .jgambling-grid-6 {
        grid-template-columns: 1fr;
    }
}


.jgambling-badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.jgambling-badge-primary {
    background: #0073aa;
    color: #fff;
}

.jgambling-badge-success {
    background: #28a745;
    color: #fff;
}

.jgambling-badge-warning {
    background: #ffc107;
    color: #212529;
}

.jgambling-badge-danger {
    background: #dc3545;
    color: #fff;
}

.jgambling-badge-info {
    background: #17a2b8;
    color: #fff;
}

.jgambling-badge-light {
    background: #f8f9fa;
    color: #212529;
    border: 1px solid #dee2e6;
}

.jgambling-badge-dark {
    background: #343a40;
    color: #fff;
}


.jgambling-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.jgambling-rating-stars {
    display: flex;
    gap: 2px;
}

.jgambling-rating-star {
    width: 16px;
    height: 16px;
    fill: #ffc107;
}

.jgambling-rating-star.empty {
    fill: #e0e0e0;
}

.jgambling-rating-value {
    font-weight: 600;
    color: #1e1e1e;
    margin-left: 8px;
}


.jgambling-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.jgambling-image:hover {
    transform: scale(1.05);
}

.jgambling-image-rounded {
    border-radius: 50%;
}

.jgambling-image-square {
    border-radius: 0;
}


.jgambling-text-center { text-align: center; }
.jgambling-text-left { text-align: left; }
.jgambling-text-right { text-align: right; }

.jgambling-text-muted { color: #6c757d; }
.jgambling-text-primary { color: #0073aa; }
.jgambling-text-success { color: #28a745; }
.jgambling-text-warning { color: #ffc107; }
.jgambling-text-danger { color: #dc3545; }
.jgambling-text-info { color: #17a2b8; }

.jgambling-font-weight-normal { font-weight: 400; }
.jgambling-font-weight-medium { font-weight: 500; }
.jgambling-font-weight-bold { font-weight: 700; }

.jgambling-text-sm { font-size: 14px; }
.jgambling-text-lg { font-size: 18px; }
.jgambling-text-xl { font-size: 20px; }
.jgambling-text-2xl { font-size: 24px; }


.jgambling-mt-0 { margin-top: 0; }
.jgambling-mt-1 { margin-top: 8px; }
.jgambling-mt-2 { margin-top: 16px; }
.jgambling-mt-3 { margin-top: 24px; }
.jgambling-mt-4 { margin-top: 32px; }
.jgambling-mt-5 { margin-top: 40px; }

.jgambling-mb-0 { margin-bottom: 0; }
.jgambling-mb-1 { margin-bottom: 8px; }
.jgambling-mb-2 { margin-bottom: 16px; }
.jgambling-mb-3 { margin-bottom: 24px; }
.jgambling-mb-4 { margin-bottom: 32px; }
.jgambling-mb-5 { margin-bottom: 40px; }

.jgambling-p-0 { padding: 0; }
.jgambling-p-1 { padding: 8px; }
.jgambling-p-2 { padding: 16px; }
.jgambling-p-3 { padding: 24px; }
.jgambling-p-4 { padding: 32px; }
.jgambling-p-5 { padding: 40px; }


.jgambling-border { border: 1px solid #e0e0e0; }
.jgambling-border-top { border-top: 1px solid #e0e0e0; }
.jgambling-border-bottom { border-bottom: 1px solid #e0e0e0; }
.jgambling-border-left { border-left: 1px solid #e0e0e0; }
.jgambling-border-right { border-right: 1px solid #e0e0e0; }

.jgambling-rounded { border-radius: 4px; }
.jgambling-rounded-lg { border-radius: 8px; }
.jgambling-rounded-xl { border-radius: 12px; }
.jgambling-rounded-full { border-radius: 50%; }


.jgambling-shadow-sm { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
.jgambling-shadow { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }
.jgambling-shadow-lg { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); }
.jgambling-shadow-xl { box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2); }


.jgambling-bg-primary { background-color: #0073aa; }
.jgambling-bg-secondary { background-color: #6c757d; }
.jgambling-bg-success { background-color: #28a745; }
.jgambling-bg-warning { background-color: #ffc107; }
.jgambling-bg-danger { background-color: #dc3545; }
.jgambling-bg-info { background-color: #17a2b8; }
.jgambling-bg-light { background-color: #f8f9fa; }
.jgambling-bg-dark { background-color: #343a40; }
.jgambling-bg-white { background-color: #fff; }


.jgambling-d-none { display: none; }
.jgambling-d-block { display: block; }
.jgambling-d-inline { display: inline; }
.jgambling-d-inline-block { display: inline-block; }
.jgambling-d-flex { display: flex; }
.jgambling-d-grid { display: grid; }


.jgambling-flex-row { flex-direction: row; }
.jgambling-flex-column { flex-direction: column; }
.jgambling-flex-wrap { flex-wrap: wrap; }
.jgambling-flex-nowrap { flex-wrap: nowrap; }
.jgambling-justify-start { justify-content: flex-start; }
.jgambling-justify-center { justify-content: center; }
.jgambling-justify-end { justify-content: flex-end; }
.jgambling-justify-between { justify-content: space-between; }
.jgambling-justify-around { justify-content: space-around; }
.jgambling-align-start { align-items: flex-start; }
.jgambling-align-center { align-items: center; }
.jgambling-align-end { align-items: flex-end; }
.jgambling-align-stretch { align-items: stretch; }


@media (max-width: 768px) {
    .jgambling-mobile-hidden { display: none; }
    .jgambling-mobile-visible { display: block; }
}

@media (min-width: 769px) {
    .jgambling-desktop-hidden { display: none; }
    .jgambling-desktop-visible { display: block; }
}
