:root {
  --font-family: "IBM Plex Sans", sans-serif;
  --font-size-base: 15.5px;
  --line-height-base: 1.55;

  --max-w: 1120px;
  --space-x: 1.09rem;
  --space-y: 1.17rem;
  --gap: 0.83rem;

  --radius-xl: 0.95rem;
  --radius-lg: 0.6rem;
  --radius-md: 0.42rem;
  --radius-sm: 0.3rem;

  --shadow-sm: 0 2px 5px rgba(0,0,0,0.13);
  --shadow-md: 0 8px 16px rgba(0,0,0,0.16);
  --shadow-lg: 0 10px 42px rgba(0,0,0,0.2);

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

  --brand: #0066CC;
  --brand-contrast: #FFFFFF;
  --accent: #00CC88;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D9E6;
  --neutral-600: #6B7B9C;
  --neutral-800: #2C3A58;
  --neutral-900: #0F1A2D;

  --bg-page: #FFFFFF;
  --fg-on-page: #0F1A2D;

  --bg-alt: #F5F7FA;
  --fg-on-alt: #2C3A58;

  --surface-1: #FFFFFF;
  --surface-2: #F5F7FA;
  --fg-on-surface: #0F1A2D;
  --border-on-surface: #D1D9E6;

  --surface-light: rgba(255, 255, 255, 0.9);
  --fg-on-surface-light: #2C3A58;
  --border-on-surface-light: rgba(209, 217, 230, 0.7);

  --bg-primary: #0066CC;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #0055AA;
  --ring: rgba(0, 102, 204, 0.4);

  --bg-accent: rgba(0, 204, 136, 0.1);
  --fg-on-accent: #005A3C;
  --bg-accent-hover: #00B377;

  --link: #0066CC;
  --link-hover: #0055AA;

  --gradient-hero: linear-gradient(135deg, #0066CC 0%, #004488 100%);
  --gradient-accent: linear-gradient(90deg, #00CC88 0%, #009966 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;}

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

    .wp-lang-switcher-v8__toggle {
        width: 58px;
        height: 58px;
        border-radius: 12px;
        border: 0;
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.08em;
        cursor: pointer;
        display: grid;
        place-items: center;
        box-shadow: var(--shadow-lg);
        position: relative;
    }

    .wp-lang-switcher-v8__dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: color-mix(in srgb, var(--fg-on-primary) 78%, transparent);
        position: absolute;
        right: 13px;
        top: 13px;
    }

    .wp-lang-switcher-v8__list {
        position: absolute;
        right: 0;
        bottom: 66px;
        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);
    }

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

    .wp-lang-switcher-v8__list button,
    .wp-lang-switcher-v8__list a {
        min-width: 56px;
        height: 38px;
        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: 0.06em;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v8__list button:hover,
    .wp-lang-switcher-v8__list a:hover {
        transform: translateX(-2px);
        background: var(--accent);
        border-color: transparent;
        color: var(--accent-contrast);
    }