/* style.css для vtube.cdn-itry.ru */

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

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e2937 100%);
    color: #e2e8f0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 900px;
    width: 95%;
    background: rgba(15, 23, 42, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    border: 1px solid #334155;
}

header {
    background: #1e2937;
    padding: 35px 40px;
    text-align: center;
    border-bottom: 1px solid #334155;
}

.logo h1 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -2px;
    color: #60a5fa;
}

.logo span {
    color: #93c5fd;
    font-weight: 400;
}

header p {
    margin-top: 8px;
    color: #94a3b8;
    font-size: 18px;
}

.info {
    padding: 30px 40px;
    background: #1e2937;
    text-align: center;
}

.info a {
    color: #60a5fa;
    text-decoration: none;
}

.info a:hover {
    text-decoration: underline;
}

.files {
    padding: 40px;
}

.files h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #bae6fd;
    text-align: center;
}

.note {
    background: #334155;
    padding: 20px;
    border-radius: 12px;
    border-left: 5px solid #60a5fa;
    font-size: 15px;
    line-height: 1.5;
}

footer {
    text-align: center;
    padding: 25px;
    background: #0f172a;
    color: #64748b;
    font-size: 14px;
    border-top: 1px solid #334155;
}

/* Адаптив */
@media (max-width: 600px) {
    .container {
        margin: 10px;
        border-radius: 16px;
    }
    
    header, .info, .files {
        padding: 25px 20px;
    }
    
    .logo h1 {
        font-size: 32px;
    }
}