:root {
    --stage-width: 192px;
    --stage-height: 200px;
    --bg-color: #000000;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    font-family: 'Helvetica', sans-serif;
    color: #666666;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 25px;
    overflow: auto;
}

/* Full Window Mode */
body.full-window {
    overflow: auto;
    align-items: flex-start;
    padding-top: 25px;
}

body.full-window #layout-container {
    gap: 20px;
    width: 100%;
    height: auto;
    justify-content: flex-start;
}

body.full-window #stage-container {
}

a {
    color: #FF0000;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

#layout-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.header-bar {
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 10;
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    transform: translateY(-3px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0px;
}

.footer-bar {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    font-family: 'Times New Roman', serif;
    z-index: 10;
    position: relative;
    margin-bottom: 35px;
}

#stage-container {
    position: relative;
    width: var(--stage-width);
    height: var(--stage-height);
    background-color: var(--bg-color);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 20px;
}

#poem-container {
    width: 400px;
    margin-top: 40px;
    padding: 10px 0;
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    line-height: 1.15;
    text-align: center;
}

.poem-text {
    margin: 0 0 1em 0;
}

.color-dark {
    color: #666666;
}

.color-medium-dark {
    color: #999999;
}

.color-medium-light {
    color: #cccccc;
}

.color-light {
    color: #ffffff;
}

/* Red dots styling */
.red-dot {
    position: absolute;
    width: 5px;
    height: 5px;
    fill: #FF0000;
    pointer-events: none;
}





.title-img {
    transform: translateY(-2px);
}
