/* ===== ФОН В СТИЛЕ СТАРОЙ WINDOWS (XP / VISTA) ===== */
body {
    margin: 0;
    min-height: 100vh;

    background:
        linear-gradient(
            to bottom,
            #5fa9ff 0%,
            #7ec8ff 35%,
            #b8e6ff 55%,
            #eaf7ff 100%
        );

    font-family: 'Comic Sans MS', Tahoma, Arial, sans-serif;
    color: #1a1a1a;
}

/* ===== ОСНОВНАЯ ПЛАШКА ===== */
.container {
    width: 760px;
    margin: 50px auto;

    background: linear-gradient(
        to bottom,
        #ffffff,
        #f1f7ff
    );

    border: 2px solid #4a90e2;
    border-radius: 10px;

    padding: 20px;

    box-shadow:
        0 0 0 2px #ffffff inset,
        0 6px 20px rgba(0, 0, 0, 0.25);
}

/* ===== ЗАГОЛОВКИ ===== */
h1, h2 {
    text-align: center;
    color: #003366;
    text-shadow: 1px 1px 0 #ffffff;
}

/* ===== ПОДЗАГОЛОВОК ===== */
.subtitle {
    text-align: center;
    color: #336699;
    font-size: 1.15em;
}

/* ===== ТАБЛИЦА ФОРУМА ===== */
.forum {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.forum th {
    background: linear-gradient(
        to bottom,
        #6fb1ff,
        #4a90e2
    );
    color: #ffffff;
    border: 1px solid #2f6fb3;
    padding: 10px;
}

.forum td {
    background: #f5faff;
    border: 1px solid #9fc4eb;
    padding: 10px;
}

/* ===== ССЫЛКИ ===== */
a {
    color: #003399;
    text-decoration: underline;
}

a:hover {
    color: #ff3399;
}

/* ===== VK КОММЕНТАРИИ ===== */
#vk_comments {
    margin-top: 30px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #9fc4eb;
    border-radius: 6px;
}