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

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Poppins:wght@300;400;600;700&family=VT323&display=swap');

:root {
    /* Palette: Warm, vibrant, retro-futuristic */
    --primary: #FF6B35;      /* Warm orange accent */
    --secondary: #8B5CF6;    /* Deep purple */
    --accent: #00D9FF;       /* Cyan glow */
    --success: #10B981;      /* Emerald */
    --danger: #EF4444;       /* Warm red */
    --bg-dark: #0D0D0D;      /* Deep black */
    --bg-card: #1A1A2E;      /* Dark blue-ish */
    --bg-light: #2D2D44;     /* Light card bg */
    --text-primary: #F5F5F5; /* Off-white */
    --text-secondary: #A0A0B0;
    --border: #3D3D5C;
    --glow: rgba(0, 217, 255, 0.3);
}

html, body {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a0f2e 100%);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

a:hover::after {
    width: 100%;
}

.language-button-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}
