.lucky-numbers-wrapper {
    max-width: 800px;
    margin: 30px auto;
    text-align: center;
}

.lucky-numbers-wrapper h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.6em;
}

.lucky-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.lucky-card {
    background: linear-gradient(135deg, #ff4d00, #ffb100);
    color: #fff;
    font-size: 1.8em;
    font-weight: bold;
    border-radius: 16px;
    padding: 25px 30px;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.lucky-card:hover {
    transform: scale(1.05);
}
