/* ==========================================================================
   Kettlebell Climber - Game Styles
   A "Getting Over It" inspired physics-based platformer
   ========================================================================== */

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #222;
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   Game Header
   -------------------------------------------------------------------------- */

.game-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.6);
}

.game-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
}

.game-header__back-link {
    color: #ccc;
    text-decoration: none;
    font-family: system-ui, sans-serif;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.game-header__back-link:hover {
    color: #fff;
}

.game-header__title {
    color: #fff;
    font-family: system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Canvas
   -------------------------------------------------------------------------- */

.game-canvas {
    border: 2px solid #444;
    background-color: #000;
    max-width: 100%;
    max-height: 100%;
}

/* --------------------------------------------------------------------------
   Vibe Jam Badge
   -------------------------------------------------------------------------- */

.vibe-jam-badge {
    font-family: 'system-ui', sans-serif;
    position: fixed;
    bottom: -1px;
    right: -1px;
    padding: 7px;
    font-size: 14px;
    font-weight: bold;
    background: #fff;
    color: #000;
    text-decoration: none;
    z-index: 10000;
    border-top-left-radius: 12px;
    border: 1px solid #fff;
}
