body {
    margin: 0;
    background: #061726;
    font-family: Arial, sans-serif;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-bar {
    width: 100%;
    padding: 30px 0;
    background: #0d2336;
    text-align: center;
}

.logo-row {
    width: 100vw;
    background: transparent;
    display: flex;
    align-items: flex-start;
    padding: 24px;
    box-sizing: border-box;
}

.logo-row img {
    height: 48px;
    width: auto;
}

.center-box {
    background: #183447;
    padding: 30px 0;
    width: 150vw;
    text-align: center;
    box-sizing: border-box;
}

.title {
    font-size: 1.5rem;
    margin: 0;
}

.button-list {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.dim-button {
    background: #fff;
    color: #061726;
    border: none;
    border-radius: 4px;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 500;
    min-width: 140px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: background 0.2s;
}

.dim-button:hover {
    background: #f0f4f8;
}