/**
 * Casino Hydra - Game Types Styles v2.0
 * 10 New Styles + Original (0)
 * Prefix: cdp-games
 */

/* ==========================================
   BASE WRAPPER
   ========================================== */
.cdp-games-grid-wrapper {
    margin: 20px 0;
}

/* ==========================================
   STYLE 0: ORIGINAL (Default - Current Style)
   ========================================== */
.cdp-games-style-0 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.cdp-games-style-0 .cdp-game-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}
.cdp-games-style-0 .cdp-game-icon {
    font-size: 32px;
    flex-shrink: 0;
}
.cdp-games-style-0 .cdp-game-content {
    flex: 1;
}
.cdp-games-style-0 .cdp-game-label {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 4px;
}
.cdp-games-style-0 .cdp-game-value {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

/* ==========================================
   STYLE 1: VERTICAL CARDS
   ========================================== */
.cdp-games-style-1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.cdp-games-style-1 .cdp-game-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
}
.cdp-games-style-1 .cdp-game-icon {
    font-size: 40px;
    margin-bottom: 12px;
}
.cdp-games-style-1 .cdp-game-value {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}
.cdp-games-style-1 .cdp-game-label {
    font-size: 13px;
    color: #64748b;
}

/* ==========================================
   STYLE 2: COMPACT HORIZONTAL
   ========================================== */
.cdp-games-style-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.cdp-games-style-2 .cdp-game-item {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.cdp-games-style-2 .cdp-game-icon {
    font-size: 24px;
}
.cdp-games-style-2 .cdp-game-value {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-right: 4px;
}
.cdp-games-style-2 .cdp-game-label {
    font-size: 13px;
    color: #64748b;
}

/* ==========================================
   STYLE 3: GRADIENT BOXES
   ========================================== */
.cdp-games-style-3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.cdp-games-style-3 .cdp-game-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    color: white;
}
.cdp-games-style-3 .cdp-game-item:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.cdp-games-style-3 .cdp-game-item:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.cdp-games-style-3 .cdp-game-item:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}
.cdp-games-style-3 .cdp-game-icon {
    font-size: 36px;
    margin-bottom: 10px;
}
.cdp-games-style-3 .cdp-game-value {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}
.cdp-games-style-3 .cdp-game-label {
    font-size: 13px;
    opacity: 0.95;
}

/* ==========================================
   STYLE 4: TABLE LIST
   ========================================== */
.cdp-games-style-4 {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}
.cdp-games-style-4 .cdp-game-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
}
.cdp-games-style-4 .cdp-game-item:last-child {
    border-bottom: none;
}
.cdp-games-style-4 .cdp-game-left {
    display: flex;
    align-items: center;
    gap: 14px;
}
.cdp-games-style-4 .cdp-game-icon {
    font-size: 28px;
}
.cdp-games-style-4 .cdp-game-label {
    font-size: 14px;
    color: #64748b;
}
.cdp-games-style-4 .cdp-game-value {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    background: #f8fafc;
    padding: 6px 16px;
    border-radius: 8px;
}

/* ==========================================
   STYLE 5: ICON TOP CARDS
   ========================================== */
.cdp-games-style-5 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.cdp-games-style-5 .cdp-game-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cdp-games-style-5 .cdp-game-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}
.cdp-games-style-5 .cdp-game-icon {
    font-size: 42px;
    margin-bottom: 10px;
}
.cdp-games-style-5 .cdp-game-label {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 6px;
}
.cdp-games-style-5 .cdp-game-value {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
}

/* ==========================================
   STYLE 6: MINIMAL CHIPS
   ========================================== */
.cdp-games-style-6 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.cdp-games-style-6 .cdp-game-item {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    padding: 8px 18px 8px 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}
.cdp-games-style-6 .cdp-game-item:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}
.cdp-games-style-6 .cdp-game-icon-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.cdp-games-style-6 .cdp-game-content {
    display: flex;
    flex-direction: column;
}
.cdp-games-style-6 .cdp-game-label {
    font-size: 11px;
    color: #64748b;
    line-height: 1.2;
}
.cdp-games-style-6 .cdp-game-value {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

/* ==========================================
   STYLE 7: LARGE ICONS
   ========================================== */
.cdp-games-style-7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.cdp-games-style-7 .cdp-game-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.cdp-games-style-7 .cdp-game-icon-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}
.cdp-games-style-7 .cdp-game-item:nth-child(2) .cdp-game-icon-box {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.cdp-games-style-7 .cdp-game-item:nth-child(3) .cdp-game-icon-box {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.cdp-games-style-7 .cdp-game-item:nth-child(4) .cdp-game-icon-box {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}
.cdp-games-style-7 .cdp-game-content {
    flex: 1;
}
.cdp-games-style-7 .cdp-game-label {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 6px;
}
.cdp-games-style-7 .cdp-game-value {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
}

/* ==========================================
   STYLE 8: COMPACT GRID
   ========================================== */
.cdp-games-style-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.cdp-games-style-8 .cdp-game-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px 12px;
    text-align: center;
}
.cdp-games-style-8 .cdp-game-icon {
    font-size: 28px;
    margin-bottom: 8px;
}
.cdp-games-style-8 .cdp-game-label {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 4px;
}
.cdp-games-style-8 .cdp-game-value {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

/* ==========================================
   STYLE 9: STAT CARDS
   ========================================== */
.cdp-games-style-9 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.cdp-games-style-9 .cdp-game-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 18px 16px;
    text-align: center;
}
.cdp-games-style-9 .cdp-game-icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: inline-block;
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
}
.cdp-games-style-9 .cdp-game-value {
    font-size: 26px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}
.cdp-games-style-9 .cdp-game-label {
    font-size: 13px;
    color: #64748b;
}

/* ==========================================
   STYLE 10: SIDEBAR STYLE
   ========================================== */
.cdp-games-style-10 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cdp-games-style-10 .cdp-game-item {
    background: #ffffff;
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cdp-games-style-10 .cdp-game-item:nth-child(2) {
    border-left-color: #8b5cf6;
}
.cdp-games-style-10 .cdp-game-item:nth-child(3) {
    border-left-color: #ec4899;
}
.cdp-games-style-10 .cdp-game-item:nth-child(4) {
    border-left-color: #10b981;
}
.cdp-games-style-10 .cdp-game-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cdp-games-style-10 .cdp-game-icon {
    font-size: 28px;
}
.cdp-games-style-10 .cdp-game-label {
    font-size: 14px;
    color: #64748b;
}
.cdp-games-style-10 .cdp-game-value {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 992px) {
    .cdp-games-style-0,
    .cdp-games-style-1,
    .cdp-games-style-3,
    .cdp-games-style-5,
    .cdp-games-style-8,
    .cdp-games-style-9 {
        grid-template-columns: repeat(2, 1fr);
    }
    .cdp-games-style-7 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cdp-games-style-0,
    .cdp-games-style-1,
    .cdp-games-style-3,
    .cdp-games-style-5,
    .cdp-games-style-7,
    .cdp-games-style-8,
    .cdp-games-style-9 {
        grid-template-columns: 1fr;
    }
}
