body.home-page{
    background:var(--color-bg-primary);
    min-height:100vh;
    padding-top:60px;
}
.home-container{
    max-width:1200px;
    width:100%;
    margin:0 auto;
    padding:40px 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:calc(100vh - 60px);
}
.home-content{
    text-align:center;
    background:var(--surface-card);
    border-radius:22px;
    padding:36px 42px;
    width:100%;
    max-width:900px;
    border:1px solid var(--line-soft);
    box-shadow:0 16px 46px var(--elev-shadow-dialog);
}
.home-brand{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
}
.home-logo{
    width:84px;
    height:84px;
    object-fit:contain;
    display:block;
    margin-bottom:10px;
}
.home-app-name{
    font-size:20px;
    font-weight:700;
    color:var(--text-title);
    line-height:1.2;
}
.home-app-version{
    margin-top:4px;
    font-size:12px;
    color:var(--text-muted);
    opacity:0.95;
}
@keyframes bounce{
    0%, 100%{ transform:translateY(0); }
    50%{ transform:translateY(-10px); }
}
.home-title{
    font-size:28px;
    font-weight:600;
    color:var(--text-title);
    margin-bottom:16px;
    line-height:1.4;
}
.home-message{
    font-size:16px;
    color:var(--color-text-secondary);
    line-height:1.8;
    margin-bottom:22px;
}
.home-message-sub{
    font-size:15px;
    color:var(--text-muted);
    margin-top:10px;
    display:block;
}
.home-badges{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    margin-bottom:22px;
}
.home-badge{
    background:var(--legacy-info-soft);
    border:1px solid var(--legacy-accent-border);
    color:var(--legacy-text-info-soft);
    border-radius:999px;
    padding:6px 12px;
    font-size:12px;
    line-height:1;
}
.home-features{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:24px;
    margin-top:20px;
    max-width:600px;
    margin-left:auto;
    margin-right:auto;
}
.home-feature{
    background:var(--surface-muted);
    border-radius:12px;
    padding:24px 20px;
    border:none;
}
.home-feature-link,
.home-feature-action{
    display:block;
    width:100%;
    text-decoration:none;
    color:inherit;
    text-align:center;
    cursor:pointer;
    transition:transform 0.15s ease, background 0.15s ease;
}
.home-feature-link:hover,
.home-feature-action:hover{
    transform:translateY(-2px);
    background:var(--color-bg-hover);
}
.home-feature-action{
    font:inherit;
    outline:none;
}
.home-feature-action:focus-visible{
    box-shadow:0 0 0 2px var(--legacy-accent-border-strong);
}
.home-feature-icon{
    font-size:32px;
    margin-bottom:12px;
}
.home-feature-title{
    font-size:16px;
    font-weight:500;
    color:var(--text-title);
    margin-bottom:8px;
}
.home-feature-desc{
    font-size:13px;
    color:var(--color-text-secondary);
    line-height:1.5;
}
.home-info-grid{
    margin-top:22px;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:12px;
}
.home-info-card{
    background:var(--surface-input);
    border:1px solid var(--line-soft);
    border-radius:12px;
    padding:12px;
    text-align:right;
}
.home-info-title{
    font-size:13px;
    color:var(--text-title);
    margin-bottom:6px;
}
.home-info-text{
    font-size:12px;
    color:var(--color-text-secondary);
    line-height:1.6;
}
.home-profile-link{
    margin-top:32px;
    padding-top:32px;
    border-top:1px solid var(--line-soft);
}
.home-profile-link a{
    color:var(--color-accent);
    text-decoration:none;
    font-size:14px;
    transition:color 0.2s;
    display:inline-block;
}
.home-profile-link a:hover{
    color:var(--color-accent);
}
.home-admin-contact{
    margin-top:24px;
    padding-top:24px;
    border-top:1px solid var(--line-soft);
}
.home-admin-contact-text{
    font-size:13px;
    color:var(--color-text-secondary);
    margin-bottom:12px;
}
.home-admin-contact-link{
    color:var(--color-accent);
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    transition:color 0.2s;
    display:inline-block;
}
.home-admin-contact-link:hover{
    color:var(--color-accent);
}
.home-admin-link{
    margin-top:16px;
}
.home-admin-link a{
    color:var(--status-warning);
    text-decoration:none;
    font-size:14px;
    transition:color 0.2s;
    display:inline-block;
}
.home-admin-link a:hover{
    color:var(--status-warning);
}
.home-version{
    margin-top:18px;
    font-size:12px;
    color:var(--text-muted);
    opacity:0.9;
}
.home-changelog{
    margin-top:20px;
    text-align:right;
    padding:14px 16px;
    border-radius:12px;
    background:var(--surface-input);
    border:1px solid var(--line-soft);
    max-width:520px;
    margin-left:auto;
    margin-right:auto;
}
.home-changelog-title{
    font-size:13px;
    font-weight:600;
    color:var(--text-title);
    margin-bottom:10px;
}
.home-changelog-block{
    margin-bottom:12px;
}
.home-changelog-block:last-child{
    margin-bottom:0;
}
.home-changelog-ver{
    font-size:12px;
    color:var(--legacy-text-success-soft);
    margin-bottom:6px;
}
.home-changelog-list{
    margin:0;
    padding:0 18px 0 0;
    font-size:12px;
    color:var(--color-text-secondary);
    line-height:1.65;
}
.home-changelog-list li{
    margin-bottom:4px;
}
@media (max-width:1024px){
    .home-content{
        padding:32px 40px;
    }
}
@media (max-width:768px){
    .home-container{
        padding:18px 12px 24px;
    }
    .home-content{
        padding:24px 14px;
        border-radius:16px;
    }
    .home-logo{
        width:70px;
        height:70px;
        margin-bottom:8px;
    }
    .home-app-name{
        font-size:18px;
    }
    .home-title{
        font-size:21px;
        margin-bottom:10px;
    }
    .home-message{
        font-size:14px;
        line-height:1.75;
    }
    .home-message-sub{
        font-size:13px;
    }
    .home-features{
        grid-template-columns:1fr;
        gap:16px;
    }
    .home-feature{
        padding:16px 14px;
    }
    .home-feature-icon{
        font-size:26px;
        margin-bottom:8px;
    }
    .home-info-grid{
        grid-template-columns:1fr;
        gap:10px;
    }
    .home-profile-link{
        margin-top:22px;
        padding-top:22px;
    }
    .home-admin-contact{
        margin-top:18px;
        padding-top:18px;
    }
}
