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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #eacf66 0%, #fff 100%);
    
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 -15px;
    background: #fffdf6;
    border: 1px solid #e6dfaf;;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.logo{
    width: 200px;
    height: 150px;
    margin: -15px;
    margin-top: -60px;
}
header {
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 1.75rem;
    background: transparent;
    color: #2c2a1e;
    padding: 30px;
    text-align: center;
    margin: 0px 0px 0px;
}

.today-display.dual {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 10px;
}

.day-box {
    background: #FFFDF6;
    background: transparent;
    padding: 16px 26px;
    border-radius: 12px;
    min-width: 150px;
    text-align: center;
}

.day-box .label {
    font-size: 0.9rem;
    color: #5F5A3D;
    margin-bottom: 6px;
}

.number-display {
    font-size: 2.2rem;
    font-weight: bold;
    color: #2C2A1E;
}


header h1 {
    font-size: 2.5em;
    font-weight: 700;
}

.nav-links {
    background: #f8f9fa;
    padding: 15px 30px;
    border-bottom: 1px solid #dee2e6;
    text-align: right;
}

.nav-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

main {
    padding: 40px;
}

section {
    margin-bottom: 40px;
}

section:last-child {
    margin-bottom: 0;
}

h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5em;
    border-bottom: 4px solid #c9a227;
    padding-bottom: 10px;
}

.today-section {
    text-align: center;
}

.today-display {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    padding: 40px;
    margin-top: 20px;
}

.date-display {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.number-display {
    font-size: 4em;
    font-weight: bold;
    color: #667eea;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-display .placeholder {
    font-size: 0.4em;
    color: #999;
    font-weight: normal;
}

.history-section {
    margin-top: 40px;
}

.table-container {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.95em;
}

thead {
    background: #4f7f5a;
    color: white;
}

th {
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95em;
}

tbody tr {
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

tbody tr:hover {
    background-color: #f8f9fa;
}

tbody tr:last-child {
    border-bottom: none;
}

td {
    padding: 8px 12px;
    color: #333;
    font-size: 0.9em;
}

.history-controls {
    text-align: center;
    margin-top: 15px;
}

.btn-show-more {
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 0.95em;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-show-more:hover {
    background: #764ba2;
    transform: translateY(-1px);
}

.btn-show-more:active {
    transform: translateY(0);
}

td.loading {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 30px;
}

.empty-message {
    text-align: center;
    color: #999;
    padding: 30px;
    font-style: italic;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    
    main {
        padding: 20px;
    }
    
    .number-display {
        font-size: 3em;
    }
    
    th, td {
        padding: 10px;
        font-size: 0.9em;
    }
}

.contact {
    max-width: 900px;
    margin: 20px -15px;
    background: #fffdf6;
    border: 1px solid #e6dfaf;;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    padding: 20px;
}
.contact-heading {
    text-align: center;
}
.contact-trust {
    font-size: 1.3rem;
    text-align: center;
    margin: 0px 0px 15px 0px;
    font-weight: bolder;
    color: #c9a227;
}
.contact-games {
    font-size: 1.5rem;
}
.contact-jodi{
    margin: 15px 80px 0px 80px;
    text-align: center;
    color: #c9a227;
    font-size: 1.0rem;
    font-weight: bolder;
    background-color: #000000;
    padding: 3px;
    border-radius: 10px;
}
.contact-whatsapp{
    text-align: center;
    color: white;
    background-color: #4f7f5a;
    padding: 10px;
    border-radius: 20px;
    margin: 15px 50px;
}
.disclaimer {
    background-color: rgba(212, 45, 45, 0.788);
    color: white;
    padding: 5px;
    border-radius: 5px;
}
