      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      :root {
        --bg: #0a0a0a;
        --text: #e8e8e8;
        --text-dim: #888;
        --accent: #fff;
        --border: #1a1a1a;
        --card-bg: #0f0f0f;
      }

      body {
        font-family: "JetBrains Mono", monospace;
        background: var(--bg);
        color: var(--text);
        line-height: 1.6;
        overflow-x: hidden;
        cursor: none !important;
      }

      
      *,
      *::before,
      *::after {
        cursor: none !important;
      }

      
      .cursor {
        width: 12px;
        height: 12px;
        background: var(--accent);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        mix-blend-mode: difference;
        transition: transform 0.1s ease-out;
        transform: translate(-50%, -50%);
      }

      .cursor-follower {
        width: 40px;
        height: 40px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9998;
        transition: all 0.15s ease-out;
        transform: translate(-50%, -50%);
      }

      .cursor.hover {
        transform: translate(-50%, -50%) scale(1.8);
      }

      .cursor-follower.hover {
        transform: translate(-50%, -50%) scale(1.5);
        border-color: rgba(255, 255, 255, 0.6);
      }

      
      header {
        position: fixed;
        top: 0;
        width: 100%;
        padding: 1.5rem 3rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 100;
        background: rgba(10, 10, 10, 0.8);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border);
      }

      .logo {
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: -0.02em;
        text-decoration: none;
        color: var(--text);
        transition: color 0.3s;
      }

      .logo:hover {
        color: var(--accent);
      }

      nav {
        display: flex;
        gap: 2rem;
        align-items: center;
      }

      nav a {
        color: var(--text-dim);
        text-decoration: none;
        font-size: 0.85rem;
        transition: color 0.3s;
        position: relative;
      }

      nav a:hover {
        color: var(--accent);
      }

      nav a::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--accent);
        transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }

      nav a:hover::after {
        width: 100%;
      }

      nav a.active {
        color: var(--accent);
      }

      .lang-switcher {
        background: transparent;
        border: 1px solid var(--text-dim);
        color: var(--text-dim);
        padding: 0.4rem 0.8rem;
        font-family: "JetBrains Mono", monospace;
        font-size: 0.75rem;
        transition: all 0.3s;
        font-weight: 600;
        letter-spacing: 0.05em;
      }

      .lang-switcher:hover {
        border-color: var(--accent);
        color: var(--accent);
        transform: translateY(-2px);
      }

      
      .hero {
        min-height: 40vh;
        display: flex;
        align-items: center;
        padding: 0 3rem;
        position: relative;
        overflow: hidden;
        margin-top: 80px;
      }

      .hero-content {
        max-width: 900px;
        position: relative;
        z-index: 2;
      }

      .hero h1 {
        font-family: "Playfair Display", serif;
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 400;
        line-height: 1.1;
        margin-bottom: 1rem;
        letter-spacing: -0.03em;
        opacity: 0;
        animation: fadeInUp 1s forwards 0.3s;
      }

      .hero p {
        font-size: 1.1rem;
        color: var(--text-dim);
        max-width: 600px;
        margin-bottom: 2rem;
        opacity: 0;
        animation: fadeInUp 1s forwards 0.5s;
      }

      
      .grid-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image:
          linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 50px 50px;
        mask-image: radial-gradient(
          ellipse 80% 50% at 50% 50%,
          black 40%,
          transparent 80%
        );
        pointer-events: none;
      }

      
      .resources {
        padding: 4rem 3rem 8rem;
        position: relative;
      }

      .section-title {
        font-family: "Playfair Display", serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 400;
        margin-bottom: 1rem;
        letter-spacing: -0.02em;
      }

      .section-subtitle {
        color: var(--text-dim);
        font-size: 1rem;
        margin-bottom: 3rem;
        max-width: 700px;
      }

      .category {
        margin-bottom: 4rem;
      }

      .category-title {
        font-size: 0.85rem;
        color: var(--text-dim);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 600;
        margin-bottom: 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid var(--border);
      }

      .resources-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 1.5rem;
      }

      .resource-card {
        background: var(--card-bg);
        border: 1px solid var(--border);
        padding: 2rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        text-decoration: none;
        color: var(--text);
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }

      .resource-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.05),
          transparent
        );
        transition: left 0.6s;
      }

      .resource-card:hover::before {
        left: 100%;
      }

      .resource-card:hover {
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-4px);
      }

      .resource-icon {
        width: 50px;
        height: 50px;
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        transition: all 0.3s;
      }

      .resource-card:hover .resource-icon {
        border-color: var(--accent);
        transform: scale(1.1);
      }

      .resource-name {
        font-family: "Playfair Display", serif;
        font-size: 1.4rem;
        font-weight: 400;
        letter-spacing: -0.01em;
        margin: 0;
      }

      .resource-description {
        color: var(--text-dim);
        font-size: 0.9rem;
        line-height: 1.6;
        flex-grow: 1;
      }

      .resource-link {
        font-size: 0.8rem;
        color: var(--text-dim);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: auto;
      }

      .resource-link::after {
        content: "→";
        transition: transform 0.3s;
      }

      .resource-card:hover .resource-link {
        color: var(--accent);
      }

      .resource-card:hover .resource-link::after {
        transform: translateX(4px);
      }

      .resource-tag {
        display: inline-block;
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        border: 1px solid var(--border);
        color: var(--text-dim);
        margin-top: 0.5rem;
      }

      
      footer {
        padding: 4rem 3rem;
        border-top: 1px solid var(--border);
      }

      .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
      }

      .social-links {
        display: flex;
        gap: 2rem;
      }

      .social-links a {
        color: var(--text-dim);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s;
      }

      .social-links a:hover {
        color: var(--accent);
      }

      .copyright {
        color: var(--text-dim);
        font-size: 0.85rem;
      }

      
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      
      @media (max-width: 768px) {
        header {
          padding: 1rem 1.5rem;
        }

        .hero {
          padding: 0 1.5rem;
          margin-top: 60px;
        }

        nav {
          gap: 1rem;
        }

        .resources {
          padding: 3rem 1.5rem 6rem;
        }

        .resources-grid {
          grid-template-columns: 1fr;
        }

        footer {
          padding: 3rem 1.5rem;
        }

        .footer-content {
          flex-direction: column;
          gap: 2rem;
          text-align: center;
        }
      }

      @media (hover: none) {
        .cursor,
        .cursor-follower {
          display: none;
        }

        body,
        *,
        *::before,
        *::after {
          cursor: auto !important;
        }
      }
