/* Global Styles */
html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: #f0f0f0d3;
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

body {
    font-family: 'Consolas', monospace;
    text-align: center;
    background-color: #282c34;
    color: white;
    margin: 0;
    padding: 0;
}

/* Canvas styles */
canvas {
    display: block;
    width: 100vw;
    height: 100vh;
}

/* Page Title */
.page-title {
    position: fixed;
    bottom: 2cm;
    left: 2cm;
    font-family: Arial, sans-serif;
    font-weight: 200;
    font-size: 24px;
    color: #333;
    text-align: left;
    z-index: 100;
    display: none; /* Hide by default */
    margin: 0;
    padding: 0;
    top: auto;
    right: auto;
}

.page-title:hover {
    cursor: pointer;
}

/* Play button */
.play-button {
    position: fixed;
    bottom: 2cm;
    right: 2cm;
    width: 200px;
    height: auto;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease;
    display: none; /* Hide by default */

}

.play-button:hover {
    transform: scale(1.1);
}

/* Mobile warning styles */
.mobile-warning {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 44, 52, 0.95);
    color: white;
    z-index: 2000;
    font-family: 'Consolas', Arial, sans-serif;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.mobile-warning-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
}

.mobile-warning h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.mobile-warning p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.mobile-warning-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

/* Info page styles */
.menu-container {
    position: absolute;
    top: 0.5cm;
    left: 0.5cm;
    right: 0.5cm;
    height: calc(100% - 1cm);
    pointer-events: none;
}

.menu-item {
    position: absolute;
    cursor: pointer;
    pointer-events: all;
}

.menu-item.left {
    top: 2cm;
    left: 2cm;
    text-align: left;
}

.menu-item.right {
    top: 2cm;
    left: 12cm;
    text-align: left;
}

.menu-image-container {
    width: 300px;
    height: 200px;
    overflow: hidden;
}

.menu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.menu-item:hover .menu-image {
    transform: scale(1.01);
}

.caption {
    font-size: 12px;
    margin-top: 5px;
    color: #555;
}

.content-area {
    position: absolute;
    top: 9cm;
    left: 2cm;
    width: 1600px;
    max-height: 0;
    overflow: hidden;
    background-color: #f0f0f050;
    transition: max-height 0.5s ease;
    border-radius: 5px;
    z-index: 100;
}

.content-area.active {
    max-height: 2000px;
    padding: 20px;
}

.menu-content {
    display: none;
}

.menu-content.active {
    display: block;
}

.footnotes {
    font-size: 14px;
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Dark theme styles */
.dark-theme {
    font-family: 'Consolas', monospace;
    text-align: center;
    background-color: #282c34;
    color: white;
}

#continue-anyway {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #a31caf;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

#continue-anyway:hover {
    background-color: #8a1690;
}