:root {
  --font-family: "Inter", sans-serif;
  --font-size-base: 15.7px;
  --line-height-base: 1.99;

  --max-w: 940px;
  --space-x: 1.95rem;
  --space-y: 1.5rem;
  --gap: 0.92rem;

  --radius-xl: 1.32rem;
  --radius-lg: 1rem;
  --radius-md: 0.62rem;
  --radius-sm: 0.4rem;

  --shadow-sm: 0 0px 5px rgba(0,0,0,0.05);
  --shadow-md: 0 6px 18px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 26px rgba(0,0,0,0.08);

  --overlay: rgba(0, 0, 0, 0.65);
  --anim-duration: 630ms;
  --anim-ease: cubic-bezier(0.2,0.8,0.2,1);
  --random-number: 2;

  --brand: #0A2463;
  --brand-contrast: #FFFFFF;
  --accent: #FF6B35;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D9E6;
  --neutral-600: #6B7B95;
  --neutral-800: #2D3748;
  --neutral-900: #1A202C;

  --bg-page: #FFFFFF;
  --fg-on-page: #1A202C;

  --bg-alt: #F8FAFC;
  --fg-on-alt: #2D3748;

  --surface-1: #FFFFFF;
  --surface-2: #F5F7FA;
  --fg-on-surface: #1A202C;
  --border-on-surface: #E2E8F0;

  --surface-light: rgba(255, 255, 255, 0.95);
  --fg-on-surface-light: #2D3748;
  --border-on-surface-light: rgba(226, 232, 240, 0.8);

  --bg-primary: #0A2463;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #081D52;
  --ring: rgba(10, 36, 99, 0.4);

  --bg-accent: #FF6B35;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #E55A2B;

  --link: #0A2463;
  --link-hover: #FF6B35;

  --gradient-hero: linear-gradient(135deg, #0A2463 0%, #1E40AF 50%, #3B82F6 100%);
  --gradient-accent: linear-gradient(90deg, #FF6B35 0%, #FF8E53 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);
    }