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

body {
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.page {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#opening-page {
    background-color: #f0f0f0;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: url('assets/circus1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content {
    /* text-align: center; */
}

.logo {
    max-width: 80%;
    max-height: 60vh;
    margin-bottom: 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.start-button {
    padding: 1rem 2rem;
    font-size: 1.5rem;
    color: #002c6b;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    background: linear-gradient(to bottom, #7ffcff 0%, #3377f7 100%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-weight: bold;
    display: block;
    margin: 20px auto 0;
}

.start-button:hover {
    background: linear-gradient(to bottom, #001a40, #0143a3);
    color: white;
}

#game-page {
    background-image: url('assets/circus2.png');
    background-size: cover;
    background-position: center;
}

#gameCanvas {
    display: block;
}

.hidden {
    display: none;
}

h1, h2, h3 {
    margin: 0;
    padding: 0;
    overflow: hidden;
    cursor: none;
    position: relative;
    background-image: url('assets/circus2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#custom-cursor {
    /* existing code */
}