/**
 * Casino Hydra - Info Grid Styles v2.0
 * 10 Professional Designs
 * Prefix: cdp-info
 */

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

/* ==========================================
   STYLE 1: CLASSIC CARDS
   ========================================== */
.cdp-info-style-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.cdp-info-style-1 .cdp-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}
.cdp-info-style-1 .cdp-info-icon {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.cdp-info-style-1 .cdp-info-content {
    flex: 1;
    min-width: 0;
}
.cdp-info-style-1 .cdp-info-label {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 4px;
}
.cdp-info-style-1 .cdp-info-value {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    word-wrap: break-word;
}

/* ==========================================
   STYLE 2: MINIMAL LIST
   ========================================== */
.cdp-info-style-2 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cdp-info-style-2 .cdp-info-item {
    background: #ffffff;
    border-left: 3px solid #3b82f6;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cdp-info-style-2 .cdp-info-label {
    font-size: 14px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cdp-info-style-2 .cdp-info-value {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

/* ==========================================
   STYLE 3: GRADIENT CARDS
   ========================================== */
.cdp-info-style-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.cdp-info-style-3 .cdp-info-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 16px;
    color: white;
    text-align: center;
}
.cdp-info-style-3 .cdp-info-item:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.cdp-info-style-3 .cdp-info-item:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.cdp-info-style-3 .cdp-info-item:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}
.cdp-info-style-3 .cdp-info-item:nth-child(5) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}
.cdp-info-style-3 .cdp-info-item:nth-child(6) {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}
.cdp-info-style-3 .cdp-info-icon {
    font-size: 24px;
    margin-bottom: 8px;
}
.cdp-info-style-3 .cdp-info-label {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 6px;
}
.cdp-info-style-3 .cdp-info-value {
    font-size: 16px;
    font-weight: 700;
}

/* ==========================================
   STYLE 4: TABLE STYLE
   ========================================== */
.cdp-info-style-4 {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}
.cdp-info-style-4 .cdp-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
}
.cdp-info-style-4 .cdp-info-item:last-child {
    border-bottom: none;
}
.cdp-info-style-4 .cdp-info-label {
    font-size: 14px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cdp-info-style-4 .cdp-info-icon {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.cdp-info-style-4 .cdp-info-value {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    background: #f8fafc;
    padding: 6px 12px;
    border-radius: 6px;
}

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

/* ==========================================
   STYLE 6: BADGE STYLE
   ========================================== */
.cdp-info-style-6 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.cdp-info-style-6 .cdp-info-item {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.cdp-info-style-6 .cdp-info-icon {
    font-size: 18px;
}
.cdp-info-style-6 .cdp-info-label {
    font-size: 13px;
    color: #64748b;
}
.cdp-info-style-6 .cdp-info-value {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 12px;
}

/* ==========================================
   STYLE 7: ICON LEFT
   ========================================== */
.cdp-info-style-7 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.cdp-info-style-7 .cdp-info-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.cdp-info-style-7 .cdp-info-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}
.cdp-info-style-7 .cdp-info-item:nth-child(2) .cdp-info-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.cdp-info-style-7 .cdp-info-item:nth-child(3) .cdp-info-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.cdp-info-style-7 .cdp-info-item:nth-child(4) .cdp-info-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}
.cdp-info-style-7 .cdp-info-item:nth-child(5) .cdp-info-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}
.cdp-info-style-7 .cdp-info-item:nth-child(6) .cdp-info-icon {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}
.cdp-info-style-7 .cdp-info-content {
    flex: 1;
}
.cdp-info-style-7 .cdp-info-label {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 6px;
}
.cdp-info-style-7 .cdp-info-value {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

/* ==========================================
   STYLE 8: TIMELINE
   ========================================== */
.cdp-info-style-8 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cdp-info-style-8 .cdp-info-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 14px 16px 14px 56px;
    position: relative;
}
.cdp-info-style-8 .cdp-info-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}
.cdp-info-style-8 .cdp-info-label {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 4px;
}
.cdp-info-style-8 .cdp-info-value {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

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

/* ==========================================
   STYLE 10: TWO COLUMN
   ========================================== */
.cdp-info-style-10 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.cdp-info-style-10 .cdp-info-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cdp-info-style-10 .cdp-info-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cdp-info-style-10 .cdp-info-icon {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.cdp-info-style-10 .cdp-info-label {
    font-size: 14px;
    color: #64748b;
}
.cdp-info-style-10 .cdp-info-value {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    background: #f8fafc;
    padding: 8px 16px;
    border-radius: 8px;
}

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

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

@media (max-width: 480px) {
    .cdp-info-style-1,
    .cdp-info-style-3,
    .cdp-info-style-5,
    .cdp-info-style-7,
    .cdp-info-style-10 {
        grid-template-columns: 1fr;
    }
    
    .cdp-info-item {
        padding: 12px !important;
    }
    
    .cdp-info-label {
        font-size: 11px !important;
    }
    
    .cdp-info-value {
        font-size: 13px !important;
    }
}
