/* Utility class — add "hidden" to a section div to hide it */
.hidden {
    display: none;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f5f5f7;
    color: #1d1d1f;
    min-height: 100vh;
    padding: 40px 16px;
    -webkit-user-select: none;
    user-select: none;
}

.container {
    max-width: 500px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 32px;
}

.header-mascots {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.section-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    padding: 24px;
    margin-bottom: 20px;
}

.section-card h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.app-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.app-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #1d1d1f;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 8px;
    border-radius: 12px;
}

.app-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.app-button img {
    width: 72px;
    height: 72px;
    border-radius: 22%;
    margin-bottom: 8px;
}

.app-button span {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}
