:root {
  --font-family: "Epilogue", sans-serif;
  --font-size-base: 14.7px;
  --line-height-base: 2.01;

  --max-w: 960px;
  --space-x: 1.49rem;
  --space-y: 1.5rem;
  --gap: 1.03rem;

  --radius-xl: 1.25rem;
  --radius-lg: 1rem;
  --radius-md: 0.58rem;
  --radius-sm: 0.37rem;

  --shadow-sm: 0 0px 3px rgba(0,0,0,0.02);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.03);
  --shadow-lg: 0 14px 28px rgba(0,0,0,0.03);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 350ms;
  --anim-ease: ease;
  --random-number: 1;

  --brand: #1a73e8;
  --brand-contrast: #ffffff;
  --accent: #ff6d00;
  --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: #f5f5f5;
  --fg-on-alt: #424242;

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

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

  --bg-primary: #1a73e8;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1557b0;
  --ring: #1a73e8;

  --bg-accent: #fff3e0;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #e65100;

  --link: #1a73e8;
  --link-hover: #1557b0;

  --gradient-hero: linear-gradient(135deg, #1a73e8 0%, #ff6d00 100%);
  --gradient-accent: linear-gradient(135deg, #ff6d00 0%, #e65100 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);
    }