.tips-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.tips-date {
    text-align: center;
    margin-bottom: 30px;
}

.tips-date h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.tips-date p {
    margin: 5px 0 0 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 8px;
    margin-bottom: 30px;
}

.tips-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.tips-card-header {
    background: linear-gradient(135deg, #0057b6, #0078f9);
    padding: 8px 12px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tips-card-body {
    padding: 20px;
}

.tips-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.tips-row:last-child {
    margin-bottom: 0;
}

.tip-number {
    background: linear-gradient(135deg, #cf2939, #5e0009);
    padding: 5px 10px;
    border-radius: 50px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tip-label {
    font-size: 0.75rem;
    color: #232323;
    margin-bottom: 5px;
    font-weight: 600;
}

.no-tips {
    text-align: center;
    color: #95a5a6;
    font-size: 1rem;
}

.refresh-tips-btn {
    background: linear-gradient(135deg, #0057b6, #0078f9);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.refresh-tips-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.tips-info {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.tips-info i {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .tips-row {
        grid-template-columns: repeat(5, 1fr);
        gap: 5px;
    }

    .tip-number {
        font-size: 1rem;
    }

    .tips-date h2 {
        font-size: 1.4rem;
    }
}

.loading-tips {
    text-align: center;
    margin-top: 35px;
    font-size: 1.2rem;
    color: #667eea;
}

.loading-tips i {
    font-size: 3rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.tip-number.bonus-match {
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    color: #000;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
    animation: pulseGreen 1.5s infinite;
}

@keyframes pulseGreen {
    0%, 100% {
        box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 255, 0, 0.9);
    }
}

/* Tip label bhi highlight karo jab match ho */
.bonus-match + .tip-label {
    color: #00ff00;
    font-weight: bold;
}