* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0e27;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    top: 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: drift 20s linear infinite;
    pointer-events: none;
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

header h1 {
    font-size: 2em;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 10px rgba(255,255,255,0.2); }
    to { text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 20px rgba(255,255,255,0.4); }
}

.license-badge {
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.license-badge:hover {
    transform: scale(1.05);
}

.license-text {
    font-weight: bold;
    font-size: 0.9em;
}

.age-restriction-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
    box-shadow: 0 4px 15px rgba(255,107,107,0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Navigation */
nav {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.menu-toggle {
    display: none;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2em;
    margin: 0 auto 15px;
    width: fit-content;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

nav a:hover::before {
    left: 100%;
}

nav a:hover, nav a.active {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Main content */
main {
    min-height: calc(100vh - 300px);
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    margin-bottom: 60px;
    border-radius: 0 0 50px 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    font-size: 1.3em;
    opacity: 0.95;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.15);
    padding: 30px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255,255,255,0.25);
}

.stat-number {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #fff 0%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1em;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Games Preview */
.games-preview {
    margin-bottom: 80px;
}

.section-title {
    color: white;
    margin-bottom: 40px;
    font-size: 2.5em;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
    align-items: stretch;
}

.game-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    text-align: center;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.game-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102,126,234,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.game-card:hover::before {
    opacity: 1;
}

.game-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102,126,234,0.4);
}

.game-card.featured {
    border: 3px solid #ffc107;
    background: linear-gradient(135deg, rgba(255,193,7,0.1) 0%, rgba(255,255,255,0.95) 100%);
    animation: featuredPulse 3s ease-in-out infinite;
}

@keyframes featuredPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(255,193,7,0.3); }
    50% { box-shadow: 0 10px 40px rgba(255,193,7,0.6); }
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #333;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.85em;
    box-shadow: 0 4px 15px rgba(255,193,7,0.4);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.game-icon {
    font-size: 5em;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.game-card h3 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.8em;
    position: relative;
    z-index: 1;
}

.game-description {
    color: #666;
    margin-bottom: 25px;
    min-height: 50px;
    position: relative;
    z-index: 1;
}

.game-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    position: relative;
    z-index: 1;
    width: 100%;
    gap: 16px;
    flex-wrap: wrap;
}

.game-price, .game-odds {
    font-size: 0.95em;
    color: #666;
    font-weight: 500;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(102,126,234,0.4);
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102,126,234,0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(42,82,152,0.4);
}

.btn-secondary:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 20px rgba(42,82,152,0.6);
}

/* Number Picker */
.number-picker-section {
    margin-bottom: 80px;
}

.picker-container {
    display: flex;
    justify-content: center;
}

.picker-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    max-width: 900px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.picker-card h3 {
    color: #1e3c72;
    margin-bottom: 40px;
    font-size: 2em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.number-display {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    min-height: 150px;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.number-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102,126,234,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.number-placeholder {
    color: #999;
    font-style: italic;
    width: 100%;
    padding: 60px;
    font-size: 1.1em;
}

.number-ball {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.4em;
    box-shadow: 0 8px 20px rgba(102,126,234,0.4), inset 0 -5px 10px rgba(0,0,0,0.2);
    animation: ballBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.number-ball::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
}

.number-ball:hover {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 12px 30px rgba(102,126,234,0.6);
}

@keyframes ballBounce {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 1;
    }
}

.number-ball.small {
    width: 55px;
    height: 55px;
    font-size: 1.1em;
}

.number-ball.bonus {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border: 3px solid #ff6b6b;
    box-shadow: 0 8px 20px rgba(255,193,7,0.5), inset 0 -5px 10px rgba(0,0,0,0.2);
}

.number-ball.result {
    width: 80px;
    height: 80px;
    font-size: 1.6em;
}

.picker-controls {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.select-input {
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 1em;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.select-input:hover {
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102,126,234,0.2);
}

.btn-generate, .btn-clear {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-generate {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102,126,234,0.4);
}

.btn-generate:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102,126,234,0.6);
}

.btn-clear {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(108,117,125,0.4);
}

.btn-clear:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(108,117,125,0.6);
}

.picker-note {
    color: #666;
    font-size: 0.95em;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(102,126,234,0.1);
    border-radius: 15px;
}

/* Recent Winners */
.recent-winners {
    margin-bottom: 80px;
}

.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
    align-items: stretch;
}

.winner-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    gap: 24px;
    align-items: center;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.winner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,193,7,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.winner-card:hover::before {
    opacity: 1;
}

.winner-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255,193,7,0.3);
}

.winner-icon {
    font-size: 4em;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: trophySpin 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes trophySpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-10deg) scale(1.1); }
    75% { transform: rotate(10deg) scale(1.1); }
}

.winner-info {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.winner-info h4 {
    color: #1e3c72;
    margin-bottom: 16px;
    font-size: 1.4em;
    font-weight: 700;
    line-height: 1.3;
}

.winner-amount {
    font-size: 2em;
    font-weight: bold;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.2;
    display: block;
}

.winner-date, .winner-location {
    color: #555;
    font-size: 1.05em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    line-height: 1.6;
    width: 100%;
}

.winner-date {
    color: #2a5298 !important;
    background: rgba(42, 82, 152, 0.35) !important;
    padding: 12px 18px !important;
    border-radius: 8px;
    display: flex !important;
    align-items: center;
    margin-bottom: 12px;
    border: 2px solid rgba(42, 82, 152, 0.6) !important;
    width: 100%;
    box-shadow: 0 2px 8px rgba(42, 82, 152, 0.3);
    min-height: 44px;
}

.winner-date i {
    color: #2a5298 !important;
    font-size: 1.2em !important;
    flex-shrink: 0;
    margin-right: 10px;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.winner-date span {
    color: #1e3c72 !important;
    font-weight: 700 !important;
    font-size: 1.15em !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-left: 0 !important;
}

.winner-location {
    color: #666;
    background: rgba(108, 117, 125, 0.1);
    padding: 10px 16px;
    border-radius: 8px;
    display: flex;
    border: 1px solid rgba(108, 117, 125, 0.2);
}

.winner-location i {
    color: #6c757d;
    font-size: 1.1em;
    flex-shrink: 0;
}

.winner-location span {
    color: #555;
    font-weight: 500;
}

/* License info card */
.license-info {
    margin-bottom: 60px;
}

.license-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.license-card h3 {
    color: #1e3c72;
    margin-bottom: 35px;
    font-size: 2em;
    border-bottom: 3px solid #2a5298;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.license-details {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

.detail-row {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border-left: 5px solid #2a5298;
    transition: all 0.3s;
    align-items: center;
}

.detail-row:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(42,82,152,0.2);
}

.detail-row .label {
    font-weight: 600;
    color: #1e3c72;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05em;
    white-space: nowrap;
}

.detail-row .value {
    color: #333;
    font-size: 1.05em;
    line-height: 1.6;
    word-wrap: break-word;
}

/* Warning box */
.warning-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 3px solid #ffc107;
    border-radius: 20px;
    padding: 35px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(255,193,7,0.3);
    position: relative;
    overflow: hidden;
}

.warning-box::before {
    content: '⚠️';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8em;
    opacity: 0.1;
    transform: rotate(15deg);
}

.warning-box h3 {
    color: #856404;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5em;
    position: relative;
    z-index: 1;
}

.warning-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #856404;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.warning-box li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05em;
    line-height: 1.7;
    padding: 12px;
    background: rgba(255,255,255,0.3);
    border-radius: 8px;
}

.warning-box li i {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 50px;
    border-radius: 0 0 50px 50px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.page-header h1 {
    font-size: 3em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.2em;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

/* Games List */
.games-list {
    margin-bottom: 80px;
}

.game-detail-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    margin-bottom: 40px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.game-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.game-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.game-icon-large {
    font-size: 5em;
    position: relative;
    z-index: 2;
    animation: iconFloat 3s ease-in-out infinite;
}

.game-title-section {
    position: relative;
    z-index: 2;
}

.game-title-section h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.game-subtitle {
    opacity: 0.95;
    font-size: 1.1em;
}

.game-jackpot {
    margin-left: auto;
    text-align: right;
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.15);
    padding: 20px 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.jackpot-label {
    display: block;
    font-size: 1em;
    opacity: 0.9;
    margin-bottom: 8px;
}

.jackpot-amount {
    font-size: 2.5em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.game-body {
    padding: 40px;
}

.game-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .game-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .game-info-grid {
        grid-template-columns: 1fr;
    }
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    transition: all 0.3s;
    border-left: 4px solid #2a5298;
    min-height: 100px;
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(42,82,152,0.2);
}

.info-item i {
    font-size: 2.5em;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.info-item > div {
    flex: 1;
    min-width: 0;
}

.info-item strong {
    display: block;
    color: #1e3c72;
    margin-bottom: 8px;
    font-size: 1.1em;
    line-height: 1.4;
}

.info-item p {
    color: #666;
    margin: 0;
    font-size: 1.05em;
    line-height: 1.5;
}

.game-description {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
}

.game-description h3 {
    color: #1e3c72;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.game-description ol {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: step;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.game-description li {
    margin: 0;
    line-height: 1.8;
    font-size: 1.05em;
    padding: 16px 20px 16px 50px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #667eea;
    position: relative;
    counter-increment: step;
}

.game-description li::before {
    content: counter(step);
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9em;
}

.game-license-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid #2a5298;
    margin-top: 30px;
}

.game-license-info p {
    margin: 0;
    color: #1e3c72;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05em;
}

/* Results Section */
.results-section {
    margin-bottom: 80px;
}

.result-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.result-card.featured-result {
    border: 4px solid #ffc107;
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,249,230,0.95) 100%);
    animation: resultPulse 3s ease-in-out infinite;
}

@keyframes resultPulse {
    0%, 100% { box-shadow: 0 15px 40px rgba(255,193,7,0.3); }
    50% { box-shadow: 0 15px 50px rgba(255,193,7,0.5); }
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.result-header h2 {
    color: #1e3c72;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2em;
}

.result-date {
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 25px;
}

.result-numbers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 25px;
    position: relative;
}

.result-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 30px;
    border-top: 3px solid #e0e0e0;
}

@media (max-width: 768px) {
    .result-info {
        grid-template-columns: 1fr;
    }
}

.result-stat {
    text-align: center;
    background: #f8f9fa;
    padding: 24px 20px;
    border-radius: 15px;
    transition: all 0.3s;
}

.result-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(42,82,152,0.2);
}

.stat-label {
    display: block;
    color: #666;
    font-size: 1em;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    display: block;
    color: #1e3c72;
    font-size: 2em;
    font-weight: bold;
}

.results-list {
    margin-bottom: 50px;
}

.result-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.result-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(102,126,234,0.3);
}

.result-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.result-item-header h3 {
    color: #1e3c72;
    font-size: 1.5em;
}

.result-item-numbers {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.result-item-info {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: #666;
    font-size: 1em;
    align-items: center;
}

.result-item-info span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 10px 18px;
    border-radius: 20px;
    white-space: nowrap;
}

.winners-section {
    margin-top: 50px;
}

.winner-card-large {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
    border-left: 6px solid #ffc107;
    backdrop-filter: blur(10px);
    transition: all 0.4s;
}

.winner-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255,193,7,0.4);
}

.winner-icon-large {
    font-size: 5em;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: trophySpin 3s ease-in-out infinite;
    flex-shrink: 0;
}

.winner-details {
    flex: 1;
    min-width: 0;
}

.winner-details h3 {
    color: #1e3c72;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 700;
}

.winner-amount-large {
    font-size: 3em;
    font-weight: bold;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.2;
    display: block;
}

.winner-info-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.winner-details .winner-info {
    color: #555;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05em;
    font-weight: 500;
    padding: 10px 16px;
    background: rgba(42, 82, 152, 0.08);
    border-radius: 8px;
    border-left: 3px solid #2a5298;
}

.winner-details .winner-info i {
    color: #2a5298;
    font-size: 1.1em;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.winner-details .winner-info span {
    color: #333;
    font-weight: 500;
}

/* Content section */
.content {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.content h2 {
    color: #1e3c72;
    margin-bottom: 25px;
    font-size: 2.5em;
}

.content p {
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 1.1em;
}

/* Legal content */
.legal-content {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.legal-content h2 {
    color: #1e3c72;
    margin-bottom: 40px;
    font-size: 2.5em;
    border-bottom: 4px solid #2a5298;
    padding-bottom: 20px;
}

.legal-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e0e0e0;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h3 {
    color: #2a5298;
    margin-bottom: 20px;
    font-size: 1.6em;
}

.legal-section p {
    margin-bottom: 18px;
    line-height: 1.9;
    font-size: 1.05em;
}

.legal-section ul,
.legal-section ol {
    margin: 0 0 20px 0;
    padding-left: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.legal-section ul li,
.legal-section ol li {
    margin: 0;
    line-height: 1.8;
    font-size: 1.05em;
    padding: 14px 18px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #2a5298;
    position: relative;
    padding-left: 40px;
}

.legal-section ul li::before,
.legal-section ol li::before {
    content: '•';
    position: absolute;
    left: 18px;
    color: #2a5298;
    font-weight: bold;
    font-size: 1.3em;
}

.legal-section ol {
    counter-reset: item;
}

.legal-section ol li {
    counter-increment: item;
    padding-left: 50px;
}

.legal-section ol li::before {
    content: counter(item) '.';
    left: 18px;
    font-size: 1em;
    font-weight: 600;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 50px 0 25px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    align-items: start;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #ffc107;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2em;
}

.footer-section p {
    margin-bottom: 10px;
    font-size: 0.95em;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section ul li {
    margin: 0;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-section a:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 2px solid rgba(255,255,255,0.2);
    padding-top: 25px;
    text-align: center;
    font-size: 0.9em;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Contact info */
.contact-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 5px solid #2a5298;
    transition: all 0.3s;
}

.contact-info:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(42,82,152,0.2);
}

.contact-info h3 {
    color: #1e3c72;
    margin-bottom: 20px;
    font-size: 1.4em;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.05em;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    .logo-section {
        flex-direction: column;
        gap: 15px;
    }

    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 0;
    }

    nav ul.active {
        display: flex;
    }

    nav a {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .hero h2, .page-header h1 {
        font-size: 2em;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 2.5em;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .detail-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .detail-row .label {
        margin-bottom: 0;
    }
    
    .warning-box ul {
        grid-template-columns: 1fr;
    }
    
    .legal-section ul,
    .legal-section ol {
        grid-template-columns: 1fr;
    }
    
    .result-info {
        grid-template-columns: 1fr;
    }
    
    .game-info-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .legal-content, .content {
        padding: 30px 20px;
    }

    .game-header {
        flex-direction: column;
        text-align: center;
    }

    .game-jackpot {
        margin-left: 0;
        text-align: center;
    }

    .result-header {
        flex-direction: column;
        text-align: center;
    }

    .winner-card-large {
        flex-direction: column;
        text-align: center;
    }

    .picker-card {
        padding: 30px 20px;
    }
}
