body { 
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #e3f2fd; 
    overflow-x: hidden;
}

.header { 
    background: #0288d1;
    color: white;
    padding: 35px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.header-center-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.logo img { width: 115px; height: auto; }
.titles h1 { margin: 0; font-size: 34px; }
.titles h3 { margin: 5px 0; color: #ffd700; font-size: 22px; }
.slogan { font-size: 16px; font-style: italic; opacity: 0.9; }

.navbar { 
    background: #01579b; 
    text-align: center; 
    padding: 15px; 
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar a { 
    color: white; 
    text-decoration: none; 
    padding: 0 20px; 
    font-weight: bold; 
    font-size: 16px; 
}

.indicator-badge {
    background: #b3e5fc;
    padding: 12px 50px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-bottom: 6px solid #0288d1;
    color: #01579b;
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
}

.library-container {
    max-width: 1100px;
    margin: 20px auto;
    display: flex;
    justify-content: flex-end;
    padding: 0 20px;
}

.library-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffd700;
    color: #01579b;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #01579b;
    transition: 0.3s;
    font-size: 20px;
}

.sports-wrapper {
    max-width: 1100px;
    margin: 20px auto 60px;
    padding: 0 20px;
}

.sports-card-main {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 8px solid #0288d1;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.sport-box {
    background: #d6ebf9; 
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #b3d9f2; 
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sport-box:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 8px 20px rgba(0,0,0,0.15); 
    background: #c5e3f7; 
}

.sport-circle {
    width: 70px;
    height: 70px;
    background: white; 
    border-radius: 50%;
    margin: 0 auto 15px;
    line-height: 70px;
    font-size: 35px;
    border: 3px solid #0288d1;
}

.sport-box h3 { color: #01579b; margin: 10px 0; font-size: 20px; }
.sport-box p { color: #555; font-size: 14px; margin: 0; }

.achievement-box {
    background: #fff9c4;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    border-left: 6px solid #ffd700;
    margin-top: 30px;
}

.achievement-box h4 { margin-top: 0; color: #01579b; }

.footer {
    background: #01579b;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    border-top: 4px solid #ffd700;
}

@media (max-width: 767px) {
    .titles h1 { font-size: 22px; }
    .logo img { width: 80px; }
    .indicator-badge { font-size: 18px; padding: 10px 30px; }
    .library-btn { font-size: 14px; }
    .sports-card-main { padding: 20px; }
}