:root {
  --font-family: "Lato", sans-serif;
  --font-size-base: 18.3px;
  --line-height-base: 1.33;

  --max-w: 1300px;
  --space-x: 1.13rem;
  --space-y: 1.5rem;
  --gap: 1.81rem;

  --radius-xl: 1.19rem;
  --radius-lg: 1rem;
  --radius-md: 0.62rem;
  --radius-sm: 0.33rem;

  --shadow-sm: 0 3px 4px rgba(0,0,0,0.23);
  --shadow-md: 0 14px 30px rgba(0,0,0,0.3);
  --shadow-lg: 0 20px 46px rgba(0,0,0,0.36);

  --overlay: rgba(0, 0, 0, 0.65);
  --anim-duration: 210ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 1;

  --brand: #c62828;
  --brand-contrast: #ffffff;
  --accent: #1565c0;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f5f5;
  --neutral-300: #e0e0e0;
  --neutral-600: #757575;
  --neutral-800: #424242;
  --neutral-900: #212121;

  --bg-page: #ffffff;
  --fg-on-page: #212121;

  --bg-alt: #fafafa;
  --fg-on-alt: #424242;

  --surface-1: #ffffff;
  --surface-2: #f5f5f5;
  --fg-on-surface: #212121;
  --border-on-surface: #e0e0e0;

  --surface-light: #ffffff;
  --fg-on-surface-light: #424242;
  --border-on-surface-light: #eeeeee;

  --bg-primary: #c62828;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #b71c1c;
  --ring: rgba(198, 40, 40, 0.4);

  --bg-accent: #e3f2fd;
  --fg-on-accent: #0d47a1;
  --bg-accent-hover: #bbdefb;

  --link: #1565c0;
  --link-hover: #0d47a1;

  --gradient-hero: linear-gradient(135deg, #2c3e50 0%, #212121 100%);
  --gradient-accent: linear-gradient(90deg, #c62828 0%, #e53935 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.68);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}

.nflang-v8 {
        position: fixed;
        right: clamp(14px, 2vw, 24px);
        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
    }

    .nflang-v8__toggle {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .08em;
        cursor: pointer;
        display: grid;
        place-items: center;
        box-shadow: var(--shadow-lg);
    }

    .nflang-v8__list {
        position: absolute;
        right: 0;
        bottom: 62px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px) scale(0.95);
        transform-origin: bottom right;
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .nflang-v8__list.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .nflang-v8__list button,
    .nflang-v8__list a {
        min-width: 54px;
        height: 36px;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .06em;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-sm);
    }

    .nflang-v8__list button:hover,
    .nflang-v8__list a:hover {
        background: var(--accent);
        border-color: transparent;
        color: var(--accent-contrast);
    }