/* ========================================
   DESIGN SYSTEM & CSS VARIABLES
   ======================================== */

:root {
    /* Magical Color Palette */
    --color-deep-purple: #2d1b4e;
    --color-mystic-purple: #6b4c9a;
    --color-magical-pink: #e91e63;
    --color-cosmic-blue: #1e3a8a;
    --color-starlight: #ffd700;
    --color-moonlight: #e0f7fa;
    --color-power-red: #dc2626;
    --color-popularity-teal: #14b8a6;

    /* Gradients */
    --gradient-night-sky: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 50%, #6b21a8 100%);
    --gradient-magical: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #3b82f6 100%);
    --gradient-power: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
    --gradient-popularity: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);

    /* Typography */
    --font-title: 'Carattere', cursive;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.5);
    --shadow-glow-gold: 0 0 30px rgba(251, 191, 36, 0.6);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: var(--font-body);
    color: white;
    background: var(--gradient-night-sky);
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

input {
    font-family: var(--font-body);
    outline: none;
}

/* ========================================
   ANIMATED BACKGROUND
   ======================================== */

.magical-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-night-sky);
    overflow: hidden;
    z-index: 0;
}

.magical-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: starfield 60s linear infinite;
}

.magical-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(139, 92, 246, 0.2) 0%, transparent 60%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes starfield {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ========================================
   SCREEN SYSTEM
   ======================================== */

.screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition-base);
}

.screen.hidden {
    display: none;
    opacity: 0;
}

.screen-content {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    padding: var(--space-lg);
    text-align: center;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.menu-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

.game-title {
    font-family: var(--font-title);
    font-size: clamp(3rem, 10vw, 6rem);
    background: var(--gradient-magical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
    filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.5));
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {

    0%,
    100% {
        filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.5));
    }

    50% {
        filter: drop-shadow(0 4px 16px rgba(139, 92, 246, 0.8));
    }
}

.magical-sparkle {
    display: inline-block;
    animation: sparkle 1.5s ease-in-out infinite;
}

.magical-sparkle:last-child {
    animation-delay: 0.75s;
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.7;
    }
}

.game-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-moonlight);
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.screen-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: var(--space-sm);
    background: var(--gradient-magical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.screen-subtitle {
    font-size: 1.1rem;
    color: var(--color-moonlight);
    margin-bottom: var(--space-xl);
    opacity: 0.85;
}

/* ========================================
   BUTTONS
   ======================================== */

.menu-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 400px;
    margin: 0 auto;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-magical);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.7);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: var(--space-sm) var(--space-lg);
    margin-top: var(--space-lg);
}

.btn-ghost:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-warning {
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid rgba(239, 68, 68, 0.5);
    color: #fca5a5;
    font-size: 0.9rem;
    padding: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-md);
}

.btn-warning:hover {
    background: rgba(239, 68, 68, 0.3);
    border-color: rgba(239, 68, 68, 0.7);
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-icon-only {
    font-size: 1.5rem;
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.btn-icon-only:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* ========================================
   CHARACTER SELECTION
   ======================================== */

.persona-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.persona-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.persona-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.persona-card:hover::before {
    opacity: 1;
}

.persona-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-glow);
}

.persona-card.selected {
    border-color: var(--color-starlight);
    box-shadow: var(--shadow-glow-gold);
    background: rgba(251, 191, 36, 0.1);
}

.persona-icon {
    font-size: 4rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.persona-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.persona-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin-bottom: var(--space-sm);
}

.persona-trait {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--color-moonlight);
}

/* ========================================
   INSTRUCTIONS
   ======================================== */

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.instruction-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-base);
}

.instruction-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.instruction-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.instruction-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    color: var(--color-starlight);
}

.instruction-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   MISSIONS
   ======================================== */

.missions-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mission-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: left;
    transition: all var(--transition-base);
}

.mission-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.mission-card.completed {
    border-color: rgba(34, 197, 94, 0.5);
    background: rgba(34, 197, 94, 0.1);
}

.mission-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.mission-icon {
    font-size: 2rem;
}

.mission-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    flex: 1;
}

.mission-status {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.mission-status.active {
    background: var(--gradient-popularity);
}

.mission-status.completed {
    background: rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.mission-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-sm);
    line-height: 1.5;
}

.mission-reward {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-deep-purple);
}

/* ========================================
   LEADERBOARD
   ======================================== */

.leaderboard-container {
    max-width: 600px;
    margin: 0 auto var(--space-xl) auto;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
    transition: all var(--transition-base);
}

.leaderboard-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.leaderboard-item.rank-1 {
    border-color: var(--color-starlight);
    background: rgba(251, 191, 36, 0.1);
}

.leaderboard-item.rank-2 {
    border-color: #c0c0c0;
    background: rgba(192, 192, 192, 0.1);
}

.leaderboard-item.rank-3 {
    border-color: #cd7f32;
    background: rgba(205, 127, 50, 0.1);
}

.leaderboard-rank {
    font-size: 1.5rem;
    font-weight: 700;
    min-width: 3rem;
    text-align: center;
    font-family: var(--font-heading);
}

.rank-medal {
    font-size: 2rem;
}

.leaderboard-name {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
}

.leaderboard-score {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-starlight);
    font-family: var(--font-heading);
}

.leaderboard-empty {
    text-align: center;
    padding: var(--space-xl);
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* ========================================
   GAME SCREEN & CANVAS
   ======================================== */

#game-screen {
    background: #000;
}

#game-canvas {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0a0a1a 0%, #1a0a2e 100%);
}

/* ========================================
   GAME HUD
   ======================================== */

.hud {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--space-md);
    pointer-events: none;
    z-index: 100;
}

.hud>* {
    pointer-events: auto;
}

.hud-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.hud-item {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    min-width: 120px;
}

.hud-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.hud-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-starlight);
}

/* ========================================
   ALIGNMENT METER
   ======================================== */

.alignment-container {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    padding: var(--space-sm) var(--space-md);
    max-width: 400px;
    margin: 0 auto var(--space-md) auto;
}

.alignment-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-width: 70px;
    text-align: center;
}

.alignment-label:first-child {
    color: #fca5a5;
}

.alignment-label:last-child {
    color: #5eead4;
}

.alignment-meter {
    position: relative;
    flex: 1;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.alignment-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, var(--gradient-power), transparent);
    transition: all var(--transition-base);
}

.alignment-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: left var(--transition-base);
}

/* ========================================
   MISSION HUD
   ======================================== */

.mission-hud {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(20, 184, 166, 0.5);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    max-width: 400px;
    margin: 0 auto;
}

.mission-hud-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

#mission-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-popularity-teal);
}

.mission-progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.mission-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-popularity);
    transition: width var(--transition-base);
}

#mission-progress-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   OVERLAY MENUS
   ======================================== */

.overlay-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    animation: fadeIn var(--transition-base);
    padding: var(--space-md);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.menu-panel {
    background: rgba(30, 27, 75, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    max-width: 500px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: var(--shadow-lg);
    animation: slideUp var(--transition-base);
    -webkit-overflow-scrolling: touch;
    margin: auto;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-panel h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: var(--space-lg);
    text-align: center;
}

.game-over-title {
    background: var(--gradient-magical);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-over-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-xs);
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-starlight);
}

.mission-complete,
.high-score-alert {
    text-align: center;
    padding: var(--space-md);
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid rgba(34, 197, 94, 0.5);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    animation: bounceIn 0.5s ease;
}

.high-score-alert {
    background: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.5);
}

@keyframes bounceIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.mission-complete-icon,
.high-score-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-xs);
}

.mission-complete p,
.high-score-alert p {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.name-entry {
    margin-bottom: var(--space-lg);
}

.name-entry label {
    display: block;
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.name-entry input {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: white;
    font-size: 1rem;
    transition: all var(--transition-base);
}

.name-entry input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-mystic-purple);
}

.name-entry input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.game-over-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.hidden {
    display: none !important;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .game-title {
        font-size: 3.5rem;
    }

    .persona-grid {
        grid-template-columns: 1fr;
    }

    .instructions-grid {
        grid-template-columns: 1fr;
    }

    .alignment-container {
        max-width: 100%;
    }

    .hud-top {
        flex-wrap: wrap;
    }

    .hud-item {
        min-width: 100px;
        padding: var(--space-xs) var(--space-sm);
    }

    .hud-value {
        font-size: 1.2rem;
    }

    .game-over-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .game-title {
        font-size: 2.5rem;
    }

    .menu-buttons {
        gap: var(--space-sm);
    }

    .btn {
        padding: var(--space-sm) var(--space-lg);
        font-size: 1rem;
    }
}