:root {
  --font-family: "DM Sans", sans-serif;
  --font-size-base: 18px;
  --line-height-base: 1.39;

  --max-w: 1280px;
  --space-x: 0.97rem;
  --space-y: 1.5rem;
  --gap: 1.44rem;

  --radius-xl: 1.38rem;
  --radius-lg: 0.9rem;
  --radius-md: 0.6rem;
  --radius-sm: 0.31rem;

  --shadow-sm: 0 3px 6px rgba(0,0,0,0.22);
  --shadow-md: 0 12px 28px rgba(0,0,0,0.28);
  --shadow-lg: 0 28px 38px rgba(0,0,0,0.34);

  --overlay: rgba(0,0,0,0.6);
  --anim-duration: 180ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 2;

  --brand: #d4af37;
  --brand-contrast: #1a1a2e;
  --accent: #c9a84c;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f0f0f5;
  --neutral-300: #b0b0c0;
  --neutral-600: #6a6a7a;
  --neutral-800: #2a2a3e;
  --neutral-900: #1a1a2e;

  --bg-page: #12121a;
  --fg-on-page: #e0e0e8;

  --bg-alt: #1e1e30;
  --fg-on-alt: #d0d0d8;

  --surface-1: #1a1a2e;
  --surface-2: #24243a;
  --fg-on-surface: #e0e0e8;
  --border-on-surface: #3a3a50;

  --surface-light: #2a2a3e;
  --fg-on-surface-light: #d0d0d8;
  --border-on-surface-light: #4a4a60;

  --bg-primary: #d4af37;
  --fg-on-primary: #1a1a2e;
  --bg-primary-hover: #c49a2e;
  --ring: #d4af37;

  --bg-accent: #2a2a3e;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #b8962e;

  --link: #d4af37;
  --link-hover: #e6c84d;

  --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #2a2a3e 50%, #12121a 100%);
  --gradient-accent: linear-gradient(135deg, #d4af37 0%, #c9a84c 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);
    }