/* Global Styles */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --bg-light: #f8f9fa;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.main-header {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Category Filters */
.category-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.category-filters .btn {
    border-radius: 20px;
}

/* Lottery Grid */
.lottery-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.lottery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.lottery-image img {
    width: 100%;
    height: auto;
}

.lottery-info {
    padding: 15px;
    text-align: center;
}

.lottery-info h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.jackpot {
    font-size: 20px;
    font-weight: bold;
    color: var(--success-color);
    margin-bottom: 15px;
}

.lottery-info h3.lottery-name {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

/* How to Play Section */
.how-to-play {
    padding: 60px 0;
    background-color: var(--bg-light);
    margin-top: 40px;
}

.step-card {
    text-align: center;
    padding: 30px;
}

.step-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Footer Styles */
footer {
    margin-top: 60px;
}

footer h5 {
    margin-bottom: 20px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 24px;
}

/* Logo Styles */
.navbar-brand .logo {
    height: 120px;
    width: auto;
}

/* Navigation Buttons Alignment */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
}

.nav-buttons .dropdown {
    display: flex;
    align-items: center;
}

.nav-buttons .btn {
    height: 38px;
    display: flex;
    align-items: center;
}

.nav-buttons .btn i {
    margin-right: 8px;
}
    justify-content: center;
}