body {
    margin: 0;
    background-color: #3a3a3a;
    font-family: 'Azeret Mono', monospace;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: relative;
    min-height: 0;
}

.left-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-left: 5vw;
    margin-top: 10vh;
    z-index: 1;
}

h1 {
    font-weight: normal;
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.btn {
    background-color: #222;
    color: white;
    padding: 8px 20px;
    border-radius: 7px;
    text-decoration: none;
    font-family: 'Azeret Mono', monospace;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    border: none;
}

.btn:hover {
    background-color: #555;
}

/* Фиксируем стол и аватарку в правом нижнем углу */
.bottom-right {
    position: fixed;
    right: 3vw;
    bottom: 6vh;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 2;
}

.table-img {
    width: 420px;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.hand-avatar {
    position: absolute;
    right: 150px;
    bottom: 70px;
    width: 120px;
    height: auto;
    z-index: 2;
}

footer {
    text-align: center;
    font-size: 0.9rem;
    color: #ccc;
    padding: 10px 0 15px 0;
    background: none;
}
