    @font-face {
      font-family: "Anton";
      font-style: normal;
      font-weight: 400;
      font-display: swap;
      src: url("../fonts/Anton-Regular.woff2") format("woff2");
    }

    :root {
      --dark: #040404;
      --pink: #bd4e70;
      --left-top: #151d2d;
      --left-bottom: #07090e;
      --right-top: #d4d8e3;
      --right-bottom: #8a94ad;
      --glass-dark: rgba(255, 255, 255, 0.05);
      --glass-light: rgba(255, 255, 255, 0.42);
      --shadow-dark: 0 20px 45px rgba(0, 0, 0, 0.28);
      --shadow-light: 0 8px 35px rgba(0, 0, 0, 0.12);
      --radius: 18px;
      --transition: 320ms ease;
      --hero-min-height: 760px;
      --font-main: "Segoe UI", Inter, Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      margin: 0;
      width: 100%;
      min-height: 100%;
      overflow-x: hidden;
      background: #d8d8d8;
    }

    body {
      margin: 0;
      width: 100%;
      min-height: 100%;
      overflow-x: hidden;
      overflow-y: auto;
      background: #d8d8d8;
      font-family: var(--font-main);
    }

    img {
      max-width: 100%;
    }

    .page {
      position: relative;
      isolation: isolate;
      width: 100%;
      min-height: 100vh;
      min-height: 100dvh;
      display: flex;
      flex-direction: column;
      overflow: visible;
      background: #000;
    }

    .fixed-camera-bg {
      position: fixed;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      pointer-events: none;
      background: #000;
    }

    .fixed-camera-bg::before,
    .fixed-camera-bg::after {
      content: "";
      position: absolute;
      top: 70px;
      bottom: 0;
      left: 15%;
      width: 35%;
      background-repeat: no-repeat;
      background-position: left 10%;
      background-size: 550px 200px;
    }

    .fixed-camera-bg::before {
      background-image: url("../images/bg.jpg");
      opacity: 1;
    }

    .fixed-camera-bg::after {
      background-image: url("../images/bgtxt.jpg");
      opacity: 0;
      animation: backgroundTextReveal 1.4s cubic-bezier(0.22, 1, 0.36, 1) 3.5s forwards;
    }

    .hero-section,
    .bottom-gradient,
    .site-footer {
      position: relative;
      z-index: 1;
    }

    .hero-section {
      position: relative;
      width: 100%;
      min-height: var(--hero-min-height);
      flex: 1 0 auto;
    }

    .layout-grid {
      position: absolute;
      inset: 0;
      display: grid;
      width: 100%;
      min-height: 0;
      grid-template-columns: 15% 35% 35% 15%;
      grid-template-rows: 70px 1fr;
      grid-template-areas:
        "div1 div2 div2 div5"
        "div1 div3 div4 div5";
    }

    .box {
      position: relative;
      overflow: hidden;
    }

    .div1 {
      grid-area: div1;
      background: linear-gradient(to bottom, var(--left-top) 0%, var(--left-bottom) 100%);
      border: none;
      outline: none;
      box-shadow: none;
    }

    .div2 {
      grid-area: div2;
      position: relative;
      display: flex;
      align-items: center;
      height: 70px;
      padding: 0 28px;
      background: #020202;
      z-index: 2;
    }

    .div3 {
      grid-area: div3;
      background: transparent;
    }

    .div4 {
      grid-area: div4;
      background: #fff;
      opacity: 0;
      clip-path: inset(0 0 0 100%);
      animation: whitePanelReveal 0.82s cubic-bezier(0.18, 0.78, 0.2, 1) 1.48s forwards;
    }

    .div5 {
      grid-area: div5;
      background: linear-gradient(to bottom, var(--right-top) 0%, var(--right-bottom) 100%);
      opacity: 0;
      clip-path: inset(0 0 0 100%);
      animation: rightRailReveal 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.66s forwards;
    }

    .nav-wrap {
      position: relative;
      width: 100%;
      max-width: 980px;
      height: 70px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }

    .brand-logo {
      position: absolute;
      left: 18px;
      top: 50%;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateY(-50%);
      text-decoration: none;
      z-index: 3;
    }

    .brand-logo img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 34px;
      font-size: 0.96rem;
    }

    .nav-links a {
      position: relative;
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      white-space: nowrap;
      transition: color var(--transition);
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: -9px;
      left: 0;
      height: 2px;
      background: var(--pink);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform var(--transition);
    }

    .nav-links a:hover,
    .nav-links a[aria-current="page"] {
      color: #fff;
    }

    .nav-links a:hover::after,
    .nav-links a[aria-current="page"]::after {
      transform: scaleX(1);
    }

    .language-selector {
      position: absolute;
      right: 18px;
      display: flex;
      align-items: center;
      gap: 6px;
      padding-left: 16px;
      border-left: 1px solid rgba(255, 255, 255, 0.28);
      font-size: 0.78rem;
      line-height: 1;
      letter-spacing: 0.06em;
    }

    .language-selector a,
    .language-selector span {
      position: relative;
      color: rgba(255, 255, 255, 0.78);
      text-decoration: none;
    }

    .language-selector a:hover {
      color: #fff;
    }

    .language-selector .current-language {
      color: #fff;
    }

    .language-selector .current-language::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: -7px;
      left: 0;
      height: 2px;
      background: var(--pink);
    }

    .floating-layer {
      position: absolute;
      inset: 0;
      min-height: 0;
      z-index: 4;
      pointer-events: none;
    }

    .floating {
      position: absolute;
      pointer-events: auto;
    }

    .welcome {
      top: 85px;
      left: 34.8%;
      color: #fff;
      font-family: "Century Gothic", "Segoe UI", sans-serif;
      font-size: clamp(3.2rem, 6vw, 3.3rem);
      line-height: 0.95;
      font-weight: 300;
      letter-spacing: -0.05em;
      z-index: 10;
      opacity: 0;
      transform: translateX(calc(-50% - 110px));
      animation: welcomeSlide 1.15s cubic-bezier(0.16, 1, 0.3, 1) 5.15s forwards;
    }

    .glass {
      position: absolute;
      overflow: hidden;
      isolation: isolate;
      border-radius: var(--radius);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .glass::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(135deg, rgba(255,255,255,.36), rgba(255,255,255,.08) 34%, rgba(255,255,255,.20) 68%, rgba(255,255,255,.04));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }

    .glass-dark {
      background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.025));
      color: #fff;
      box-shadow: var(--shadow-dark);
    }

    .glass-light {
      background: linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.36));
      color: #111;
      box-shadow: var(--shadow-light);
    }

    .photo-frame {
      top: 148px;
      left: 50%;
      width: 205px;
      height: 205px;
      padding: 2px;
      border-radius: 50%;
      background: linear-gradient(180deg, rgba(255,255,255,.28), rgba(255,255,255,.12));
      z-index: 6;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 16px 34px rgba(0,0,0,.18);
      opacity: 0;
      transform: translate(-50%, 68px) scale(.97);
      animation: portraitRise 1.45s cubic-bezier(0.16, 1, 0.3, 1) 2.35s forwards;
    }

    .photo-frame img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      border-radius: 50%;
    }

    .identity-card {
      position: absolute;
      top: 100px;
      left: 55%;
      width: min(24vw, 380px);
      min-width: 300px;
      padding: 32px 30px 26px;
      z-index: 7;
      opacity: 0;
      transform: translateY(10px);
      animation: identityReveal 1.05s cubic-bezier(0.22, 1, 0.36, 1) 2.55s forwards;
      pointer-events: auto;
    }

    .identity-card h1 {
      margin: 0 0 15px;
      color: var(--pink);
      font-family: "Anton", Arial, sans-serif;
      font-size: clamp(2.6rem, 4vw, 3.2rem);
      font-weight: 400;
      line-height: 0.92;
      letter-spacing: 0;
      text-transform: uppercase;
      text-shadow: 0 6px 10px rgba(60,50,95,.46);
    }

    .identity-card .role {
      color: rgba(0,0,0,.88);
      font-size: 1rem;
      line-height: 1.45;
    }

    .intro-card {
      top: 298px;
      left: 18%;
      width: clamp(300px, 29vw, 560px);
      min-width: 0;
      max-width: 560px;
      padding: clamp(22px, 2vw, 30px) clamp(20px, 2vw, 30px);
      z-index: 9;
      opacity: 0;
      transform: translateY(10px);
      animation: introCardReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) 2.7s forwards;
    }

    .intro-card p,
    .intro-card li {
      margin: 0 0 12px;
      color: rgba(255,255,255,.52);
      font-size: 1rem;
      line-height: 1.82;
    }

    .intro-card ul {
      margin: 16px 0 18px 22px;
      padding: 0;
    }

    .cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 176px;
      margin-top: 10px;
      padding: 14px 22px;
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 999px;
      background: linear-gradient(170deg, #000, #0e1017);
      color: #fff;
      font-weight: 600;
      text-decoration: none;
      box-shadow: 0 10px 20px #000;
      transition: transform var(--transition);
    }

    .cta:hover {
      transform: translateY(-2px);
    }

    .skills-card {
      top: 330px;
      left: 50%;
      width: min(30vw, 540px);
      min-width: 330px;
      padding: 28px 24px 28px 70px;
      z-index: 9;
      display: grid;
      grid-template-columns: 1fr 92px;
      gap: 18px;
      border-radius: 0 0 22px 0;
      background: rgba(255,255,255,.02);
      box-shadow: 0 -1px 18px rgba(0,0,0,.08);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      opacity: 0;
      transform: translateY(10px);
      animation: skillsCardReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) 2.7s forwards;
    }

    .skills-card h3 {
      margin: 0 0 18px;
      font-size: 1.12rem;
      line-height: 1.34;
    }

    .skill-block {
      padding: 14px 0;
      border-top: 1px solid rgba(0,0,0,.08);
    }

    .skill-block:first-of-type {
      padding-top: 0;
      border-top: none;
    }

    .skill-title {
      margin: 0 0 4px;
      font-size: 1rem;
      font-weight: 700;
      line-height: 1.35;
    }

    .skill-desc {
      margin: 0;
      color: rgba(0,0,0,.72);
      font-size: .95rem;
      line-height: 1.55;
    }

    .badges {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
    }

    .badge {
      width: 90px;
      height: 90px;
      padding: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border: 1px solid rgba(0,0,0,.06);
      border-radius: 20px;
      background: linear-gradient(180deg, #fff, #efefef);
      box-shadow: 0 8px 18px rgba(0,0,0,.08);
      font-size: .66rem;
      font-weight: 700;
      line-height: 1.18;
      text-align: center;
    }

    .badge img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .opening-curtain {
      position: fixed;
      inset: 0;
      z-index: 100;
      background: #000;
      pointer-events: none;
      transform: translateX(0);
      animation: openingCurtainMove 1.65s cubic-bezier(0.22, 1, 0.36, 1) .08s forwards;
    }

    .bottom-gradient {
      width: 100%;
      height: 22px;
      flex-shrink: 0;
      background: linear-gradient(to right, var(--left-bottom) 0%, #0a0a0a 50%, var(--right-bottom) 100%);
    }

    .site-footer {
      flex-shrink: 0;
      padding: clamp(20px, 2.5vw, 28px) clamp(20px, 6vw, 80px);
      background: #08090d;
      color: rgba(255,255,255,.72);
    }

    .footer-inner {
      width: min(100%, 1100px);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .copyright {
      margin: 0;
      font-size: .88rem;
    }

    .footer-links {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 22px;
    }

    .footer-links a {
      color: inherit;
      font-size: .88rem;
      text-decoration: none;
      transition: color var(--transition), transform var(--transition);
    }

    .footer-links a:hover {
      color: #fff;
      transform: translateY(-1px);
    }

    @keyframes backgroundTextReveal { to { opacity: 1; } }
    @keyframes openingCurtainMove { to { transform: translateX(100%); visibility: hidden; } }
    @keyframes rightRailReveal { from { opacity: 0; clip-path: inset(0 0 0 100%); } to { opacity: 1; clip-path: inset(0); } }
    @keyframes whitePanelReveal { from { opacity: 0; clip-path: inset(0 0 0 100%); } to { opacity: 1; clip-path: inset(0); } }
    @keyframes portraitRise {
      0% { opacity: 0; transform: translate(-50%,68px) scale(.97); }
      74% { opacity: 1; transform: translate(-50%,-4px) scale(1.006); }
      100% { opacity: 1; transform: translateX(-50%) scale(1); }
    }
    @keyframes identityReveal { to { opacity: 1; transform: translateY(0); } }
    @keyframes introCardReveal {
      0% { opacity: 0; transform: translateY(10px); }
      76% { opacity: 1; transform: translateY(-1px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes skillsCardReveal {
      0% { opacity: 0; transform: translateY(10px); }
      76% { opacity: 1; transform: translateY(-1px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes welcomeSlide {
      0% { opacity: 0; transform: translateX(calc(-50% - 110px)); }
      76% { opacity: 1; transform: translateX(calc(-50% + 6px)); }
      100% { opacity: 1; transform: translateX(-50%); }
    }

    @media (min-width: 951px) and (max-width: 1100px) {
      .intro-card {
        left: 17%;
        right: 52%;
        width: auto;
        min-width: 0;
        max-width: none;
        padding: clamp(18px, 2.2vw, 28px);
      }

      .intro-card p,
      .intro-card li {
        font-size: clamp(.82rem, 1.25vw, .95rem);
        line-height: 1.65;
        overflow-wrap: break-word;
      }

      .skills-card {
        left: 50%;
        right: 15%;
        width: auto;
        min-width: 0;
        max-width: none;
        padding: clamp(20px, 2vw, 28px) clamp(14px, 1.5vw, 24px) clamp(20px, 2vw, 28px) clamp(28px, 4vw, 70px);
      }

      .skills-card > div:first-child {
        min-width: 0;
      }
    }

    @media (max-width: 950px) {
      .fixed-camera-bg::before,
      .fixed-camera-bg::after {
        top: 70px;
        left: 0;
        width: 100%;
        height: 355px;
        background-position: center top;
        background-size: cover;
      }

      .fixed-camera-bg::after { animation-delay: .6s; }
      .hero-section { min-height: auto; }

      .layout-grid {
        position: relative;
        inset: auto;
        min-height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
        grid-template-areas: "div2" "div3" "div4" "div1" "div5";
      }

      .div1,
      .div5 { min-height: 28px; }

      .div3,
      .div4 { min-height: 420px; }

      .floating-layer {
        position: relative;
        inset: auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        gap: 18px;
        padding: 22px 16px 36px;
        margin-top: -800px;
      }

      .floating,
      .glass,
      .identity-card {
        position: relative;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        min-width: 0 !important;
        transform: none !important;
      }

      .welcome { order: 1; margin-bottom: 8px; font-size: 3rem; text-align: center; }
      .photo-frame { order: 2; width: 180px !important; height: 180px !important; align-self: center; }
      .identity-card { order: 3; max-width: 760px; margin: 0 auto; }
      .intro-card { order: 4; }

      .skills-card {
        order: 5;
        grid-template-columns: 1fr;
        padding-left: 24px;
        box-shadow: 18px 18px 0 rgba(185,191,205,.28), var(--shadow-light);
      }

      .intro-card,
      .skills-card { max-width: 760px; margin: 0 auto; }
      .badges { flex-direction: row; flex-wrap: wrap; }
      .opening-curtain { display: none; }

      .div4,
      .div5 {
        opacity: 1;
        clip-path: none;
        animation: none;
      }
    }

    @media (max-width: 640px) {
      .div2 { min-height: 70px; padding: 12px 18px; }
      .brand-logo { left: 14px; width: 46px; height: 46px; }
      .nav-wrap { flex-wrap: wrap; justify-content: center; gap: 12px; }
      .nav-links { width: 100%; flex-wrap: wrap; justify-content: center; gap: 18px; font-size: .88rem; }
      .identity-card h1 { font-size: 2.8rem; }
      .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
      .footer-links { gap: 14px 20px; }
    }

    @supports not ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
      .glass-dark { background: rgba(20,20,24,.84); }
      .glass-light { background: rgba(255,255,255,.9); }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-delay: 0ms !important;
        animation-iteration-count: 1 !important;
      }
      .opening-curtain { display: none; }
      .fixed-camera-bg::after { opacity: 1; animation: none; }
      .div4, .div5, .photo-frame, .identity-card, .intro-card, .skills-card, .welcome { opacity: 1 !important; }
      .div4, .div5 { clip-path: none !important; }
      .identity-card, .intro-card, .skills-card { transform: none !important; }
      .photo-frame, .welcome { transform: translateX(-50%) !important; }
    }
  
