
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0f172a;
    color: #e2e8f0;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1400px;
    margin: auto;
    padding: 2rem;
}

.header {
    background-color: #1e293b;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.logo {
    max-width: 300px;
    height: auto;
    transition: transform 0.2s;
}

.logo:hover {
    transform: scale(1.02);
}

.kpi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.kpi div {
    background: #1e293b;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    transition: transform 0.2s;
}

.kpi div:hover {
    transform: translateY(-2px);
}

.kpi h3 {
    color: #94a3b8;
    margin: 0 0 0.5rem 0;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.kpi p {
    color: #f1f5f9;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.charts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.chart {
    background: #1e293b;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.chart h3 {
    color: #94a3b8;
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.awards {
    margin: 3rem 0;
}

.awards h2 {
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.award-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: #1e293b;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 16px -2px rgba(0, 0, 0, 0.2);
    border: 1px solid #2d3b4f;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    min-width: 300px;
    width: 100%;
    margin: 0 auto;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px -2px rgba(0, 0, 0, 0.3);
}

.card-title {
    background: #2d3b4f;
    color: #f1f5f9;
    padding: 1rem;
    margin: 0;
    font-size: 1rem;
}

.list-group-item {
    background: #1e293b;
    color: #e2e8f0;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #2d3b4f;
}

.list-group-item:last-child {
    border-bottom: none;
}

.badge {
    background: #3b82f6;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #1e293b;
    border-radius: 1rem;
    overflow: hidden;
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #2d3b4f;
}

.table th {
    background: #2d3b4f;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.table tr:hover {
    background: #2d3b4f;
}

footer {
    color: #94a3b8;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.875rem;
}
