/* Default Template - Index Style */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6; 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
    min-height: 100vh; 
    padding: 20px; 
}

.container { 
    max-width: 900px; 
    margin: 0 auto; 
    background: white; 
    padding: 50px; 
    border-radius: 20px; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.3); 
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 3px solid #667eea;
}

h1 { 
    color: #2c3e50; 
    font-size: 2.8em; 
    margin-bottom: 15px; 
}

.subtitle {
    color: #666;
    font-size: 1.2em;
}

.stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2em;
    font-weight: bold;
    color: #667eea;
}

.stat-label {
    color: #666;
    font-size: 0.9em;
}

nav {
    margin-bottom: 30px;
}

ul { 
    list-style: none; 
    padding: 0; 
}

li { 
    margin: 12px 0; 
}

a { 
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px; 
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px; 
    text-decoration: none; 
    color: #2c3e50; 
    transition: all 0.3s; 
    border: 2px solid #e0e0e0;
    font-size: 1.05em;
}

a:hover { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white; 
    transform: translateX(10px);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 0.9em;
}

a:hover .number {
    background: white;
    color: #667eea;
}

footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #eee;
    text-align: center;
    color: #666;
    font-size: 0.95em;
}

.disclaimer {
    margin-top: 20px;
    padding: 15px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 5px;
    font-size: 0.75em;
    text-align: left;
    color: #856404;
}

.disclaimer strong {
    color: #856404;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .stats {
        gap: 15px;
    }
    
    .stat-value {
        font-size: 1.5em;
    }
    
    a {
        padding: 15px;
        font-size: 1em;
    }
    
    .number {
        min-width: 30px;
        height: 30px;
        font-size: 0.85em;
    }
}
