body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(120deg, #e3e8fd 0%, #f8f9fb 100%);
    color: #222;
    min-height: 100vh;
}

:root {
    --primary: #3d5afe;
    --primary-light: #e3e8fd;
    --accent: #00bfae;
}

header {
    background: transparent;
    color: var(--primary);
    padding: 1.5rem 0 0.5rem 0;
    text-align: center;
}
header nav {
    margin-top: 0;
}
header nav a {
    color: var(--primary);
    text-decoration: none;
    margin: 0 1.2rem;
    font-weight: 600;
    font-size: 1.08rem;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}
header nav a:hover {
    color: var(--accent);
    text-decoration: underline;
}
main {
    max-width: 900px;
    margin: 0 auto 3rem auto;
    background: transparent;
    padding: 0;
}

.hero {
    background: linear-gradient(120deg, var(--primary) 0%, #6ec6ff 100%);
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 32px rgba(61,90,254,0.10);
    padding: 3rem 2rem 2.5rem 2rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    animation: heroFadeIn 1.1s cubic-bezier(.39,.58,.57,1) 0.1s both;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: none; }
}

.stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 2.2rem 0 2.5rem 0;
    background: linear-gradient(90deg, #e3e8fd 0%, #d0ffb7 100%);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,191,174,0.07);
    padding: 1.5rem 1rem;
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}
.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.2rem;
}
.stat-label {
    font-size: 1.08rem;
    color: #444;
    font-weight: 500;
}

.trainers {
    margin: 2.5rem 0 2.5rem 0;
    background: linear-gradient(90deg, #fff 0%, #e3e8fd 100%);
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(61,90,254,0.08);
    padding: 2.2rem 1rem 2rem 1rem;
    text-align: center;
}
.trainers h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
}
.trainer-list {
    display: flex;
    justify-content: center;
    gap: 2.2rem;
    flex-wrap: wrap;
}
.trainer-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(61,90,254,0.07);
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    max-width: 200px;
    min-width: 150px;
    flex: 1;
    margin: 0.5rem 0;
    transition: transform 0.18s, box-shadow 0.18s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.trainer-card:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 6px 24px rgba(61,90,254,0.12);
}
.trainer-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 0.7rem;
    box-shadow: 0 2px 8px rgba(0,191,174,0.14);
}
.trainer-card h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}
.trainer-card p {
    font-size: 0.98rem;
    color: #444;
}

.level-system {
    margin: 2.5rem 0 2.5rem 0;
    background: linear-gradient(90deg, #e3e8fd 0%, #fff 100%);
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0,191,174,0.08);
    padding: 2.2rem 1rem 2rem 1rem;
    text-align: center;
}
.level-system h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.levels {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
}
.level {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.level-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 8px rgba(0,191,174,0.12));
}
.level span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
}
.level-desc {
    font-size: 1.08rem;
    color: #444;
    margin-top: 0.7rem;
}
.highlight {
    background: linear-gradient(90deg, #e3e8fd 0%, #d0ffb7 100%);
    border-radius: 6px;
    padding: 0 0.4em;
    color: var(--accent);
}

@media (max-width: 900px) {
    .features-list {
        flex-direction: column;
        gap: 1.2rem;
    }
    .stats, .levels, .trainer-list {
        flex-direction: column;
        gap: 1.2rem;
    }
}
@media (max-width: 600px) {
    main {
        padding: 0.5rem;
        margin: 0.5rem;
    }
    .hero {
        padding: 2rem 0.5rem 1.5rem 0.5rem;
    }
    .features {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
    }
    header nav a {
        margin: 0 0.5rem;
        font-size: 1rem;
    }
    .hero h1, .hero-title {
        font-size: 1.5rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .feature-item {
        padding: 1rem 0.5rem 0.7rem 0.5rem;
    }
    .stats, .levels, .trainer-list {
        flex-direction: column;
        gap: 0.7rem;
    }
    .trainer-card, .stat {
        min-width: 0;
    }
}


.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mascot {
    margin-bottom: 1.2rem;
    animation: mascotPop 1.2s cubic-bezier(.23,1.09,.47,1.01) 0.2s both;
}
@keyframes mascotPop {
    0% { transform: scale(0.7) rotate(-12deg); opacity: 0; }
    60% { transform: scale(1.08) rotate(6deg); opacity: 1; }
    100% { transform: scale(1) rotate(0); }
}
.hero-title {
    font-family: 'Baloo 2', cursive;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
    letter-spacing: 0.02em;
    color: #222;
    text-shadow: 0 2px 16px rgba(0,191,174,0.10);
    text-transform: uppercase;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.subtitle {
    font-size: 1.25rem;
    color: #e3e8fd;
    margin-bottom: 2rem;
}
.cta-btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 0.85rem 2.2rem;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,191,174,0.13);
    transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
    margin-top: 0.5rem;
    letter-spacing: 0.02em;
}
.cta-btn:hover {
    background: #009e93;
    box-shadow: 0 4px 18px rgba(0,191,174,0.18);
    transform: translateY(-2px) scale(1.04);
}

.features {
    margin-top: 2.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(61,90,254,0.07);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    text-align: center;
    animation: fadeIn 1.4s cubic-bezier(.39,.58,.57,1) 0.5s both;
}
.features h2 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 2rem;
    font-weight: 700;
}
.features-list {
    display: flex;
    justify-content: center;
    gap: 2.2rem;
    flex-wrap: wrap;
}
.feature-item {
    background: var(--primary-light);
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(61,90,254,0.04);
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    max-width: 220px;
    min-width: 160px;
    flex: 1;
    margin: 0.5rem 0;
    transition: transform 0.18s, box-shadow 0.18s;
}
.feature-item:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 6px 24px rgba(61,90,254,0.12);
}
.feature-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 0.7rem;
}
.feature-item h3 {
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
}
.feature-item p {
    font-size: 1rem;
    color: #333;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.contact {
    margin: 2.5rem auto 2.5rem auto;
    max-width: 480px;
    background: linear-gradient(100deg, #e3e8fd 0%, #d0ffb7 100%);
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(61,90,254,0.10);
    border: 2px solid #e3e8fd;
    padding: 2.2rem 1.5rem 2rem 1.5rem;
    text-align: center;
    font-size: 1.08rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
}
.contact::before {
    content: "✉️";
    font-size: 2.1rem;
    position: absolute;
    left: 50%;
    top: -1.2rem;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(61,90,254,0.10);
    padding: 0.15em 0.32em;
    z-index: 2;
    border: 2px solid #e3e8fd;
}
.contact h2 {
    margin-top: 0.7rem;
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.contact-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 1.13rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: var(--accent);
    padding: 0.5em 1.2em;
    border-radius: 999px;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 8px rgba(0,191,174,0.13);
    letter-spacing: 0.02em;
}
.contact-link:hover {
    background: #009e93;
    color: #fff;
    box-shadow: 0 4px 18px rgba(0,191,174,0.18);
}

.contact h2 {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}
.contact-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 1.13rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    background: #e3e8fd;
    padding: 0.4em 1em;
    border-radius: 8px;
    transition: background 0.18s, color 0.18s;
}
.contact-link:hover {
    background: var(--accent);
    color: #fff;
}

.footer-nav {
    margin-top: 0.6rem;
    text-align: center;
}
.footer-nav a {
    color: #6e7bbd;
    font-size: 0.98rem;
    margin: 0 0.7rem;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.18s, color 0.18s;
}
.footer-nav a:hover {
    opacity: 1;
    color: var(--primary);
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background: #e3e8fd;
    color: #3d5afe;
    position: static;
    width: 100%;
    margin-top: 2.5rem;
    border-radius: 0 0 12px 12px;
    font-size: 1rem;
    box-shadow: 0 -2px 8px rgba(61,90,254,0.04);
}
@media (max-width: 900px) {
    .features-list {
        flex-direction: column;
        gap: 1.2rem;
    }
}
@media (max-width: 600px) {
    main {
        padding: 0.5rem;
        margin: 0.5rem;
    }
    .hero {
        padding: 2rem 0.5rem 1.5rem 0.5rem;
    }
    .features {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
    }
    header nav a {
        margin: 0 0.5rem;
        font-size: 1rem;
    }
    .hero h1 {
        font-size: 1.5rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .feature-item {
        padding: 1rem 0.5rem 0.7rem 0.5rem;
    }
}
