.kgv-app {
    max-width: 430px;
    margin: 30px auto;
    background: #f7faf4;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1d2b18;
}

.kgv-header {
    background: linear-gradient(135deg, #4f8f2f, #2f6f1f);
    color: white;
    padding: 22px 22px 16px;
    text-align: center;
}

.kgv-topbar {
    display: flex;
    justify-content: space-between;
    font-size: 24px;
}

.kgv-header h1 {
    margin: 12px 0 0;
    font-size: 28px;
}

.kgv-header p {
    margin: 0;
    font-size: 17px;
}

.kgv-hero {
    background: linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
        url('https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?auto=format&fit=crop&w=900&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 30px 24px 60px;
}

.kgv-hero small {
    font-size: 18px;
}

.kgv-hero h2 {
    font-size: 30px;
    margin: 4px 0 0;
}

.kgv-card {
    background: white;
    margin: -36px 18px 22px;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 8px 22px rgba(0,0,0,.14);
    position: relative;
}

.kgv-card-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.kgv-card-head a {
    color: #2f6f1f;
    font-size: 13px;
    text-decoration: none;
}

.kgv-news div {
    display: grid;
    grid-template-columns: 16px 1fr auto;
    gap: 8px;
    padding: 10px 0;
    border-top: 1px solid #eee;
    font-size: 14px;
}

.kgv-news span {
    width: 9px;
    height: 9px;
    background: #4f8f2f;
    border-radius: 50%;
    margin-top: 5px;
}

.kgv-news small {
    color: #666;
}

.kgv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 0 18px 90px;
}

.kgv-tile {
    background: white;
    border-radius: 14px;
    min-height: 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #1d2b18;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

.kgv-tile span {
    font-size: 13px;
    margin-top: 8px;
    text-align: center;
}

.kgv-bottom-nav {
    position: sticky;
    bottom: 0;
    background: white;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 10px 6px;
    border-top: 1px solid #ddd;
}

.kgv-bottom-nav a {
    text-align: center;
    text-decoration: none;
    color: #777;
    font-size: 22px;
}

.kgv-bottom-nav span {
    display: block;
    font-size: 12px;
}

.kgv-bottom-nav .active {
    color: #2f6f1f;
    font-weight: bold;
}