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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #111827;
    color: #f3f4f6;
}

.header {
    background: #1f2937;
    padding: 25px;
    text-align: center;
    border-bottom: 3px solid #2563eb;
    box-shadow: 0 2px 10px rgba(0,0,0,.3);
}

.header h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

#updated {
    color: #9ca3af;
    font-size: 15px;
}

.container {
    max-width: 1300px;
    margin: 30px auto;
    padding: 20px;

    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
    gap: 25px;
}

.card {
    background: #1f2937;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,.35);
    transition: .25s;
}

.card:hover {
    transform: translateY(-4px);
}

.card h2 {
    margin-bottom: 20px;
    color: #60a5fa;
    border-bottom: 1px solid #374151;
    padding-bottom: 10px;
}

.card div {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #374151;
}

.card div:last-child {
    border-bottom: none;
}

.ok {
    color: #22c55e;
    font-weight: bold;
}

.ko {
    color: #ef4444;
    font-weight: bold;
}

.progress {
    width: 100%;
    height: 12px;
    background: #374151;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 8px;
}

.progress-bar {
    height: 100%;
    background: #22c55e;
    transition: width .5s;
}

.footer {
    margin: 30px;
    text-align: center;
    color: #9ca3af;
}

a {
    color: #60a5fa;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width:700px){

.header h1{
    font-size:28px;
}

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

}
