body {
    margin: 0;
    padding: 0;
}

body * {
    font-family: 'Montserrat', sans-serif;
}

.site {
    width: 100%;
    height: 100vh;
    background: no-repeat center / cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-inner {
    width: calc(100% - 40px);
    max-width: 500px;
    height: auto;
    padding: 32px 24px;
    background: rgba(20, 23, 27, 0.80);
    box-shadow: 0 4px 32px rgba(0,0,0,0.15);
    border-radius: 18px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255,255,255,0.09);
}

.site-inner-logo {
    width: 220px;
    height: 180px;
    max-width: 90vw;
    max-height: 30vh;
    margin-bottom: 20px;
    background: no-repeat center / contain;
    display: block;
    transition: transform 0.3s;
}
.site-inner-logo:hover {
    transform: scale(1.06) rotate(-2deg);
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.2));
}

.site-inner-title {
    margin-top: 16px;
    margin-bottom: 18px;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.28;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    letter-spacing: .01em;
    text-align: center;
    transition: color 0.3s;
}

.site-inner-list {
    margin-top: 20px;
    list-style-type: none;
    padding-left: 0;
    width: 100%;
}

.site-inner-icon {
    width: 60px;
    height: 70px;
}

.site-inner-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.site-inner-list li {
    font-size: 17px;
    line-height: 24px;
    color: #fafbfc;
    text-align: center;
    background: rgba(255,255,255,0.07);
    border-radius: 9px;
    box-shadow: 0 4px 9px rgba(0,0,0,0.07);
    margin-bottom: 13px;
    padding: 11px 6px;
    letter-spacing: .02em;
}
.site-inner-list li:last-child { margin-bottom: 0; }

.site-inner-list li b { color: #ffea43; font-weight: 700; }

.site-inner-list li a {
    font-size: 18px;
    color: #fff;
    text-shadow: none;
    border-bottom: none;
    transition: color 0.2s, text-shadow 0.2s;
}
.site-inner-list li a:hover {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.07), 0 0px 1px #fff;
    border-bottom: none;
}

@media (max-width: 700px) {
    .site-inner {
        padding: 20px 4px;
        width: calc(100% - 12px);
        max-width: 99vw;
    }
    .site-inner-title {
        font-size: 22px;
        line-height: 1.32;
    }
    .site-inner-logo {
        width: 140px;
        height: 82px;
        max-width: 98vw;
        max-height: 20vh;
    }
    .site-inner-list li {
        font-size: 14px;
        line-height: 20px;
        padding: 8px 3px;
    }
}