* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #001f54; /* Dark blue background */
    color: white;
    padding: 80px 20px 20px; /* Adjusted for fixed navbar */
}

/* Fixed Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #343a40; /* Changed navbar color */
    color: white;
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.navbar h1 {
    font-size: 24px;
    color: #feca2f; /* Yellow color for the text */
}

/* Lottery Container */
.lottery-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px auto;
    max-width: 1000px;
}

/* Lottery Cards */
.lottery-card {
    background-color: #feca2f; /* Bright yellow background */
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    width: 300px; /* Wider cards */
    min-height: 350px; /* Ensures all cards are the same height */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lottery-header {
    margin-bottom: 15px;
}

.lottery-logo {
    width: 180px; /* Bigger logo */
}

.lottery-label {
    font-size: 24px;
    margin-top: 10px;
}

.lottery-draw-info p {
    font-size: 18px;
    color: #001f54; /* Dark blue font color */
    margin-bottom: 10px;
}

.winning-numbers {
    display: flex;
    justify-content: center;
    gap: 15px; /* More space between numbers */
    margin: 20px 0;
}

.number {
    background-color: white;
    color: #001f54; /* Dark blue font color */
    font-size: 24px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}
