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

  --max-w: 1280px;
  --space-x: 1rem;
  --space-y: 1.35rem;
  --gap: 1.1rem;

  --radius-xl: 0.94rem;
  --radius-lg: 0.66rem;
  --radius-md: 0.37rem;
  --radius-sm: 0.29rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 7px 10px rgba(0,0,0,0.11);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.13);

  --overlay: rgba(0, 0, 0, 0.7);
  --anim-duration: 220ms;
  --anim-ease: ease-in-out;
  --random-number: 2;

  --brand: #0aff9d;
  --brand-contrast: #000000;
  --accent: #00d4ff;
  --accent-contrast: #000000;

  --neutral-0: #ffffff;
  --neutral-100: #f5f5f5;
  --neutral-300: #d4d4d4;
  --neutral-600: #525252;
  --neutral-800: #262626;
  --neutral-900: #0a0a0a;

  --bg-page: #0a0a0a;
  --fg-on-page: #f5f5f5;

  --bg-alt: #111111;
  --fg-on-alt: #d4d4d4;

  --surface-1: #1a1a1a;
  --surface-2: #262626;
  --fg-on-surface: #ffffff;
  --border-on-surface: #333333;

  --surface-light: #ffffff;
  --fg-on-surface-light: #0a0a0a;
  --border-on-surface-light: #d4d4d4;

  --bg-primary: #0aff9d;
  --fg-on-primary: #000000;
  --bg-primary-hover: #00e085;
  --ring: #0aff9d;

  --bg-accent: rgba(0, 212, 255, 0.1);
  --fg-on-accent: #00d4ff;
  --bg-accent-hover: #00b8e0;

  --link: #0aff9d;
  --link-hover: #00e085;

  --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  --gradient-accent: linear-gradient(90deg, #0aff9d 0%, #00d4ff 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-v11 {
        position: fixed;
        right: clamp(14px, 2vw, 24px);
        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: 8px;
        min-width: 120px;
    }

    .wp-lang-switcher-v11__head {
        width: 100%;
        border: 0;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        padding: 8px 10px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 12px;
        font-weight: 700;
    }

    .wp-lang-switcher-v11__head-text {
        opacity: 0.75;
    }

    .wp-lang-switcher-v11__head-value {
        border-radius: 999px;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        padding: 3px 8px;
        min-width: 36px;
        text-align: center;
    }

    .wp-lang-switcher-v11__items {
        margin-top: 8px;
        display: grid;
        gap: 6px;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v11__items.open {
        opacity: 1;
        pointer-events: auto;
    }

    .wp-lang-switcher-v11__items button,
    .wp-lang-switcher-v11__items a {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        border-radius: var(--radius-sm);
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 7px 10px;
        font-size: 12px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .wp-lang-switcher-v11__items button:hover,
    .wp-lang-switcher-v11__items a:hover {
        background: var(--accent);
        border-color: transparent;
        color: var(--accent-contrast);
    }