/* Global box-sizing for proper padding constraints */
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {

    --bg-color: #111111;
    --text-color: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: block;
    min-height: 100vh;
    overflow-x: hidden;
    /* Prevent horizontal scroll from carousel overflow */
}

.vexml-container {
    width: 100%;
    max-width: 1728px;
    /* Matches SVG viewBox width */
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    background-color: var(--bg-color);
}

/* Make SVG responsive */
.vexml-container svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Optional: Add breaking points if specific elements need adjustment (manual only) */
@media (max-width: 768px) {
    /* Mobile adjustments could go here */
}