body {
    background-color: #1a1a1a; /* Match your studio's dark theme */
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

#game-wrapper {
    position: relative;
    padding: 15px;
    background: #333; /* Frame color */
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid #444;
}

/* Make the player bigger and maintain aspect ratio */
#flash-container {
    width: 960px;  /* Increased size */
    height: 720px; /* Adjust to match your original SWF aspect ratio */
    background-color: #000;
    overflow: hidden;
}

h1 {
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1.5rem;
    color: #f0f0f5; /* Accent color to match your studio vibe */
}

/* Make sure Ruffle fills the container */
ruffle-player {
    width: 100%;
    height: 100%;
}