html {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: #f0f0f0;
    overflow: hidden;
}

canvas {
    border: 1px solid black;
    display: block;
}

/* Add title screen styles */
#titleScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #1a1a1a, #000);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.title-logo {
    width: 60%;
    max-width: 800px;
    margin-bottom: 50px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.start-text {
    color: white;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 24px;
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    margin-bottom: 20px; /* Add spacing between elements */
}

/* Add new style for the Vortrox text */
.vortrox-text {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-style: italic;
    text-align: center;
    position: absolute;
    bottom: 20px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    animation: fadeInOut 4s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}