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

:root {
    --red: #cc0000;
    --black: #000;
    --white: #fff;
}

html, body {
    height: 100%;
    font-family: monospace;
    background-color: var(--black);
    overflow: hidden;
}

.container {
    display: flex;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

.left-column {
    position: relative;
    width: 60%;
    background-color: var(--black);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 1rem;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    border-right: 3px solid var(--red);
}

.logo-aside {
    width: 100%;
    max-width: 800px;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    flex-shrink: 0;
    filter: invert(1);
}

.text-container {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.text {
    font-weight: bold;
    font-size: clamp(0.7rem, 3.5vw, 1.4rem);
    letter-spacing: 2px;
    color: var(--white);
}

.text-end {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    letter-spacing: 2px;
    color: var(--black);
    font-weight: bold;
    white-space: nowrap;
}

.aside-right {
    width: 40%;
    background-color: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(0.8rem, 2vh, 3rem);
    padding: clamp(1rem, 2vh, 2rem);
    max-height: 100vh;
    overflow-y: auto;
}

.button,
.button-wht {
    width: 75%;
    padding: clamp(12px, 2vh, 26px) clamp(14px, 2.5vw, 28px);
    font-size: clamp(10px, 1.8vw, 19px);
    font-weight: bold;
    cursor: pointer;
    border-radius: 0;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    font-family: monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    overflow: hidden;
    min-height: clamp(36px, 5vh, 94px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.button-wht {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.button-wht:hover {
    background-color: var(--white);
    color: var(--black);
    border: 2px solid var(--white);
}

.aside-right .button {
    background-color: var(--red);
    color: var(--white);
    border: 2px solid var(--red);
}
.aside-right .button:hover {
    background-color: transparent;
    color: var(--red);
    border: 2px solid var(--red);
}

@media (max-height: 700px) {
    .left-column { padding: 2rem 1rem; }
    .logo-aside { max-height: 38vh; max-width: 400px; }
}

@media (max-height: 600px) {
    .logo-aside { max-height: 30vh; max-width: 320px; }
    .aside-right { gap: clamp(0.5rem, 1.5vh, 1rem); padding: 0.8rem; }
    .button, .button-wht {
        min-height: clamp(30px, 4vh, 40px);
        font-size: clamp(9px, 1.6vw, 11px);
    }
}

@media (max-width: 767px) {
    .logo-aside { max-width: 350px; max-height: 32vh; }
    .button, .button-wht {
        font-size: clamp(9px, 2.2vw, 12px);
        min-height: clamp(32px, 4.5vh, 44px);
        margin: 4px 0;
    }
    .aside-right { gap: clamp(0.6rem, 2vh, 1.2rem); padding: 1.2rem; }
}

@media (max-width: 480px) {
    .left-column { padding: 1.5rem 0.5rem; }
    .logo-aside { max-width: 280px; max-height: 28vh; }
    .button, .button-wht { width: 90%; }
    .aside-right { gap: clamp(0.5rem, 1.8vh, 1rem); padding: 1rem; }
}

@media (max-width: 360px), (max-height: 550px) {
    .logo-aside { max-height: 25vh; max-width: 240px; }
    .button, .button-wht {
        min-height: clamp(28px, 4vh, 36px);
        font-size: clamp(8px, 2vw, 10px);
    }
}

@media (max-height: 500px) {
    .logo-aside { max-height: 22vh; max-width: 200px; }
}