    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --bg-deep: #080410;
      --bg-card: rgba(255, 255, 255, 0.04);
      --purple-main: #a855f7;
      --purple-light: #c084fc;
      --purple-glow: #7c3aed;
      --purple-dark: #3b0764;
      --pink-glow: #d946ef;
      --text-primary: #f0eaf8;
      --text-secondary: rgba(240, 234, 248, 0.6);
      --text-muted: rgba(240, 234, 248, 0.4);
      --border-subtle: rgba(168, 85, 247, 0.15);
    }

    h1, h2, h3 {
      font-family: Georgia, 'Times New Roman', Times, serif !important;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
      background: var(--bg-deep);
      color: var(--text-primary);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    .glow-canvas {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .glow-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.35;
      animation: drift 18s ease-in-out infinite alternate;
    }

    .glow-orb.a {
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, var(--purple-glow), transparent 70%);
      top: -10%;
      left: 20%;
      animation-duration: 22s;
    }

    .glow-orb.b {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, var(--pink-glow), transparent 70%);
      top: 30%;
      right: -5%;
      animation-duration: 26s;
      animation-delay: -5s;
      opacity: 0.2;
    }

    .glow-orb.c {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, var(--purple-light), transparent 70%);
      bottom: 10%;
      left: 10%;
      animation-duration: 20s;
      animation-delay: -10s;
      opacity: 0.18;
    }

    @keyframes drift {
      0% {
        transform: translate(0, 0) scale(1);
      }

      33% {
        transform: translate(40px, -30px) scale(1.05);
      }

      66% {
        transform: translate(-20px, 20px) scale(0.95);
      }

      100% {
        transform: translate(30px, -10px) scale(1.02);
      }
    }

    .bokeh-field {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    .bokeh {
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(192, 132, 252, 0.6), rgba(192, 132, 252, 0) 70%);
      animation: float 12s ease-in-out infinite;
    }

    .bokeh:nth-child(1) {
      width: 8px;
      height: 8px;
      top: 15%;
      left: 10%;
      animation-duration: 14s;
    }

    .bokeh:nth-child(2) {
      width: 12px;
      height: 12px;
      top: 25%;
      left: 75%;
      animation-duration: 18s;
      animation-delay: -3s;
      opacity: 0.7;
    }

    .bokeh:nth-child(3) {
      width: 6px;
      height: 6px;
      top: 60%;
      left: 20%;
      animation-duration: 16s;
      animation-delay: -7s;
    }

    .bokeh:nth-child(4) {
      width: 14px;
      height: 14px;
      top: 40%;
      left: 85%;
      animation-duration: 20s;
      animation-delay: -2s;
      opacity: 0.5;
    }

    .bokeh:nth-child(5) {
      width: 10px;
      height: 10px;
      top: 70%;
      left: 50%;
      animation-duration: 15s;
      animation-delay: -9s;
      opacity: 0.8;
    }

    .bokeh:nth-child(6) {
      width: 7px;
      height: 7px;
      top: 80%;
      left: 30%;
      animation-duration: 17s;
      animation-delay: -4s;
      opacity: 0.6;
    }

    .bokeh:nth-child(7) {
      width: 16px;
      height: 16px;
      top: 10%;
      left: 60%;
      animation-duration: 22s;
      animation-delay: -6s;
      opacity: 0.4;
    }

    .bokeh:nth-child(8) {
      width: 5px;
      height: 5px;
      top: 50%;
      left: 90%;
      animation-duration: 13s;
      animation-delay: -1s;
    }

    .bokeh:nth-child(9) {
      width: 9px;
      height: 9px;
      top: 35%;
      left: 40%;
      animation-duration: 19s;
      animation-delay: -8s;
      opacity: 0.5;
    }

    .bokeh:nth-child(10) {
      width: 11px;
      height: 11px;
      top: 85%;
      left: 70%;
      animation-duration: 21s;
      animation-delay: -5s;
      opacity: 0.3;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0) translateX(0);
        opacity: 0.4;
      }

      25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.8;
      }

      50% {
        transform: translateY(-8px) translateX(-8px);
        opacity: 0.5;
      }

      75% {
        transform: translateY(-25px) translateX(15px);
        opacity: 0.9;
      }
    }

    .flow-lines {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      pointer-events: none;
      opacity: 0.4;
    }

    .flow-lines svg {
      width: 100%;
      height: 100%;
    }

    .flow-line {
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      opacity: 0.6;
    }

    .flow-line.a {
      stroke: url(#grad1);
      stroke-dasharray: 400 600;
      animation: flowAnim 8s linear infinite;
    }

    .flow-line.b {
      stroke: url(#grad2);
      stroke-dasharray: 300 700;
      animation: flowAnim 12s linear infinite;
      animation-delay: -3s;
    }

    .flow-line.c {
      stroke: url(#grad3);
      stroke-dasharray: 350 650;
      animation: flowAnim 10s linear infinite;
      animation-delay: -6s;
    }

    @keyframes flowAnim {
      0% {
        stroke-dashoffset: 1000;
      }

      100% {
        stroke-dashoffset: 0;
      }
    }

    .page-content {
      position: relative;
      z-index: 2;
    }

    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 3rem;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(8, 4, 16, 0.6);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border-subtle);
      animation: fadeDown 0.8s ease-out;
    }

    @keyframes fadeDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .nav-logo {
      font-size: 1.6rem;
      font-weight: 700;
      cursor: pointer;
      background: linear-gradient(135deg, var(--purple-light), var(--pink-glow));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: -0.02em;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 400;
      letter-spacing: 0.02em;
      transition: color 0.3s;
      position: relative;
      cursor: pointer;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--purple-main);
      transform: scaleX(0);
      transition: transform 0.3s;
    }

    .nav-links a:hover {
      color: var(--text-primary);
    }

    .nav-links a:hover::after {
      transform: scaleX(1);
    }

    .nav-links a.active {
      color: var(--text-primary);
    }

    .nav-links a.active::after {
      transform: scaleX(1);
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.6rem 1.5rem;
      border: 1px solid var(--purple-main);
      border-radius: 50px;
      color: var(--text-primary);
      font-size: 0.85rem;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s;
      background: transparent;
      cursor: pointer;
    }

    .nav-cta:hover {
      background: var(--purple-main);
      box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
    }

    .nav-cta .arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      background: var(--purple-main);
      border-radius: 50%;
      transition: transform 0.3s;
      font-size: 0.75rem;
    }

    .nav-cta:hover .arrow {
      transform: translateX(3px);
    }

    .page-content-inner {
    }

    .page-content-inner {
      display: block;
      animation: pageIn 0.5s ease-out;
    }

    @keyframes pageIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8rem 2rem 4rem;
      position: relative;
    }

    .hero-tag {
      font-style: italic;
      color: var(--purple-light);
      font-size: 1rem;
      margin-bottom: 1rem;
      animation: fadeUp 1s ease-out 0.3s both;
      letter-spacing: 0.05em;
    }

    .hero h1 {
      font-family: Georgia, 'Times New Roman', Times, serif;
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 500;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      animation: fadeUp 1s ease-out 0.5s both;
      max-width: 800px;
    }

    .hero h1 .accent,
    .page-header h1 .accent {
      background: linear-gradient(135deg, var(--purple-light), var(--pink-glow));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-desc {
      color: var(--text-secondary);
      font-size: 1.05rem;
      line-height: 1.7;
      max-width: 520px;
      margin-bottom: 2.5rem;
      animation: fadeUp 1s ease-out 0.7s both;
      font-weight: 300;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.85rem 2rem;
      background: linear-gradient(135deg, var(--purple-glow), var(--purple-main));
      border: none;
      border-radius: 50px;
      color: white;
      font-size: 0.95rem;
      font-weight: 500;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s;
      animation: fadeUp 1s ease-out 0.9s both;
      box-shadow: 0 0 40px rgba(124, 58, 237, 0.3);
    }

    .hero-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 60px rgba(124, 58, 237, 0.5);
    }

    .hero-cta .arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      transition: transform 0.3s;
    }

    .hero-cta:hover .arrow {
      transform: translateX(3px);
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .scroll-hint {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      animation: fadeUp 1s ease-out 1.2s both;
    }

    .scroll-hint span {
      font-size: 0.7rem;
      color: var(--text-muted);
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .scroll-line {
      width: 1px;
      height: 30px;
      background: linear-gradient(to bottom, var(--purple-main), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {

      0%,
      100% {
        opacity: 0.3;
        transform: scaleY(0.6);
      }

      50% {
        opacity: 1;
        transform: scaleY(1);
      }
    }

    .section-divider {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border-subtle), var(--purple-main), var(--border-subtle), transparent);
    }

    .cards-section {
      padding: 5rem 3rem 6rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      padding: 2.5rem 2rem;
      text-align: center;
      transition: all 0.4s;
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.08), transparent 60%);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .card:hover {
      border-color: rgba(168, 85, 247, 0.35);
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
    }

    .card:hover::before {
      opacity: 1;
    }

    .card-icon {
      width: 48px;
      height: 48px;
      margin: 0 auto 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(168, 85, 247, 0.1));
      border: 1px solid rgba(168, 85, 247, 0.2);
    }

    .card-icon svg {
      width: 22px;
      height: 22px;
      stroke: var(--purple-light);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .card h3 {
      font-family: Georgia, 'Times New Roman', Times, serif;
      font-size: 1.2rem;
      font-weight: 500;
      margin-bottom: 0.75rem;
    }

    .card p {
      color: var(--text-muted);
      font-size: 0.88rem;
      line-height: 1.65;
      font-weight: 300;
    }

    .page-header {
      padding: 8rem 3rem 3rem;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .page-header h1 {
      font-family: Georgia, 'Times New Roman', Times, serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 500;
      margin-bottom: 1rem;
      line-height: 1.15;
      letter-spacing: -0.01em;
    }

    .page-header p {
      color: var(--text-secondary);
      font-size: 1.05rem;
      line-height: 1.7;
      max-width: 600px;
      margin: 0 auto;
      font-weight: 300;
    }

    .content-section {
      max-width: 900px;
      margin: 0 auto;
      padding: 3rem 3rem 5rem;
    }

    .content-block {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      padding: 2rem 2.5rem;
      margin-bottom: 1.5rem;
      transition: all 0.3s;
      cursor: pointer;
    }

    .content-block:hover {
      border-color: rgba(168, 85, 247, 0.3);
      box-shadow: 0 10px 40px rgba(124, 58, 237, 0.1);
      transform: translateY(-3px);
    }

    .content-block h2 {
      font-family: Georgia, 'Times New Roman', Times, serif;
      font-size: 1.3rem;
      font-weight: 500;
      margin-bottom: 0.75rem;
    }

    .content-block .tag {
      display: inline-block;
      font-size: 0.7rem;
      color: var(--purple-light);
      background: rgba(168, 85, 247, 0.12);
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      margin-bottom: 0.75rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .content-block p {
      color: var(--text-secondary);
      font-size: 0.92rem;
      line-height: 1.7;
      font-weight: 300;
    }

    .content-block .read-more {
      display: inline-block;
      margin-top: 0.75rem;
      color: var(--purple-light);
      font-size: 0.82rem;
      font-weight: 500;
    }

    .content-block.static {
      cursor: default;
    }

    .content-block.static:hover {
      transform: none;
      box-shadow: none;
    }

    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--purple-light);
      font-size: 0.85rem;
      cursor: pointer;
      margin-bottom: 2rem;
      transition: color 0.3s;
      font-weight: 500;
    }

    .back-btn:hover {
      color: var(--text-primary);
    }

    .article-body {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 3rem 5rem;
    }

    .article-body .tag {
      display: inline-block;
      font-size: 0.7rem;
      color: var(--purple-light);
      background: rgba(168, 85, 247, 0.12);
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      margin-bottom: 1.5rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .article-body p {
      color: var(--text-secondary);
      font-size: 1.08rem;
      line-height: 1.9;
      font-weight: 300;
      margin-bottom: 1.4rem;
    }

    .article-body h2 {
      font-family: Georgia, 'Times New Roman', Times, serif;
      font-size: 1.35rem;
      font-weight: 500;
      margin: 2.5rem 0 0.75rem;
      color: var(--text-primary);
    }

    .article-body ul {
      color: var(--text-secondary);
      font-size: 0.92rem;
      line-height: 1.85;
      font-weight: 300;
      margin: 0.5rem 0 1.25rem 1.5rem;
    }

    .article-body li {
      margin-bottom: 0.4rem;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .about-stat {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      padding: 2rem;
      text-align: center;
      transition: all 0.3s;
    }

    .about-stat:hover {
      border-color: rgba(168, 85, 247, 0.3);
    }

    .about-stat .number {
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--purple-light);
      margin-bottom: 0.3rem;
    }

    .about-stat .label {
      color: var(--text-muted);
      font-size: 0.85rem;
      font-weight: 300;
    }

    .contact-form {
      max-width: 600px;
      margin: 0 auto;
    }

    .form-group {
      margin-bottom: 1.25rem;
    }

    .form-group label {
      display: block;
      color: var(--text-secondary);
      font-size: 0.85rem;
      margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 0.85rem 1rem;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-subtle);
      border-radius: 10px;
      color: var(--text-primary);
      font-family: inherit;
      font-size: 0.92rem;
      transition: border-color 0.3s;
      outline: none;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--purple-main);
      box-shadow: 0 0 20px rgba(168, 85, 247, 0.1);
    }

    .form-group textarea {
      min-height: 140px;
      resize: vertical;
    }

    .form-submit {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.8rem 2rem;
      background: linear-gradient(135deg, var(--purple-glow), var(--purple-main));
      border: none;
      border-radius: 50px;
      color: white;
      font-size: 0.92rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s;
      box-shadow: 0 0 30px rgba(124, 58, 237, 0.25);
    }

    .form-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 50px rgba(124, 58, 237, 0.4);
    }

    .footer {
      text-align: center;
      padding: 3rem;
      border-top: 1px solid var(--border-subtle);
      color: var(--text-muted);
      font-size: 0.8rem;
      margin-top: 2rem;
    }

    @media (max-width: 768px) {
      .navbar {
        padding: 1rem 1.5rem;
      }

      .nav-links {
      }

      .hero {
        padding: 7rem 1.5rem 4rem;
      }

      .cards-section {
        padding: 3rem 1.5rem 4rem;
      }

      .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .page-header {
        padding: 7rem 1.5rem 2rem;
      }

      .content-section {
        padding: 2rem 1.5rem 4rem;
      }

      .content-block {
        padding: 1.5rem;
      }

      .about-grid {
        grid-template-columns: 1fr;
      }

      .article-body {
        padding: 0 1.5rem 4rem;
      }
    }

    @media (max-width: 1024px) and (min-width: 769px) {
      .cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .video-container {
      margin: 2rem 0 0.5rem;
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(124, 58, 237, 0.1);
    }

    .video-container iframe {
      display: block;
      width: 100%;
      aspect-ratio: 16 / 9;
      border: none;
    }

    .video-caption {
      text-align: center;
      font-size: 0.78rem;
      font-style: italic;
      color: var(--text-muted);
      margin: 0.75rem 0 2rem;
      letter-spacing: 0.02em;
    }

    .article-subtitle {
      font-size: 1rem;
      font-style: italic;
      color: var(--purple-light);
      font-weight: 300;
      margin-top: 0.5rem;
    }
