body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url("assets/bg.jpg") no-repeat left center;
    background-size: cover;
    height: 100vh;
    overflow: hidden;
}

/* Главный layout */
.layout {
    display: flex;
    height: 100vh;
}

/* Левая часть (фон) */
.left {
    width: 50%;
}

/* Правая часть */
.right {
    width: 50%;
    border-left: 2px solid black;
    border-right: 2px solid black;
    background: rgba(255,255,255,0.9);
    display: flex;
    flex-direction: column;
}

/* ВЕРХНИЙ ПЛЕЕР */
.player {
    border-bottom: 2px solid black;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

/* Контент */
.content {
    flex: 1;
    overflow: hidden;
    padding: 20px;
    position: relative;
}

/* ЛОГО */
.logo {
    font-size: 56px;
    text-decoration: underline;
    margin-bottom: 20px;
}

/* МЕНЮ */
nav a {
    display: block;
    font-size: 22px;
    margin-bottom: 10px;
    text-decoration: none;
    color: black;
}

/* ПРОФИЛЬ */
.profile {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.profile img {
    width: 70px;
    height: auto;
}

/* UPDATES */
.updates {
    border: 1px solid #ccc;
    padding: 8px;
    font-size: 14px;
    width: 100%;
}

.updates-title {
    color: #c26542;
    margin-bottom: 5px;
}

.updates-list {
    max-height: 80px;
    overflow-y: auto;
}

/* ПРИВЕТ */
.welcome {
    border: 2px solid black;
    padding: 15px;
    margin-top: 25px;
    font-size: 18px;
}

/* НИЗ */
.footer {
    position: absolute;
    bottom: 10px;
    left: 20px;
    right: 20px;
}

/* COUNTER */
.counter {
    text-align: center;
    margin-bottom: 5px;
}

/* SONG */
.song {
    font-size: 14px;
    border-top: 1px solid #ccc;
    padding-top: 5px;
}

/* BLOG */
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid black;
    padding-bottom: 10px;
}

.blog-title {
    font-size: 48px;
    text-decoration: underline;
}

.posts {
    overflow-y: auto;
    height: 100%;
    margin-top: 15px;
}

/* POST */
.post {
    background: #f2f2f2;
    padding: 12px;
    margin-bottom: 12px;
    position: relative;
}

.post-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.post-date {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 12px;
    color: #777;
}
