/* Site 1 - PlayWithDragon Style - Bright, Card-focused Design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    background-attachment: fixed;
}

/* Casino Card Styles - PlayWithDragon inspired */
.casino-card {
    background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(59, 130, 246, 0.3);
    border-color: #3b82f6;
}

.casino-card:hover::before {
    opacity: 1;
}

.casino-card.featured {
    border-color: #fbbf24;
    background: linear-gradient(145deg, #1e293b 0%, #334155 50%, #1e293b 100%);
    box-shadow: 0 8px 16px rgba(251, 191, 36, 0.3), 0 0 0 2px rgba(251, 191, 36, 0.5);
    animation: pulse-glow 2s ease-in-out infinite;
}

.casino-card.featured::after {
    content: "🏆 #1 TOP RATED";
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 16px rgba(251, 191, 36, 0.3), 0 0 0 2px rgba(251, 191, 36, 0.5);
    }
    50% {
        box-shadow: 0 8px 24px rgba(251, 191, 36, 0.5), 0 0 0 3px rgba(251, 191, 36, 0.7);
    }
}

/* Badge Styles - Vibrant colors */
.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    margin: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.badge:hover {
    transform: scale(1.1);
}

.badge-crypto {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.badge-card {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.badge-ewallet {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

.badge-fast {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.badge-instant {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.badge-medium {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
}

/* Button Styles - PlayWithDragon style */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #3b82f6;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #3b82f6;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Review Section - Enhanced styling */
.review-section {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 2px solid rgba(59, 130, 246, 0.3);
    background: rgba(15, 23, 42, 0.5);
    padding: 20px;
    border-radius: 12px;
    margin-left: -8px;
    margin-right: -8px;
}

.review-item {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 16px;
    border-left: 4px solid #3b82f6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.review-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.review-rating {
    color: #fbbf24;
    font-size: 18px;
    letter-spacing: 2px;
}

/* Payment Icons */
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.payment-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

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

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.fade-in {
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Game Catalog Cards */
.game-category-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.game-category-card:hover {
    transform: translateY(-6px) scale(1.05);
    border-color: #3b82f6;
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .casino-card {
        padding: 20px;
    }
    
    .casino-card.featured::after {
        font-size: 10px;
        padding: 4px 10px;
        top: 12px;
        right: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
    filter: blur(2px);
}



