    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Syne', sans-serif;
    }

    body {
      background-color: #000;
      color: white;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    .container {
      max-width: 900px;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 25px;
      align-items: center;
      text-align: center;
    }

    .logo img {
      width: 70px;
      margin-bottom: 10px;
    }

    .logo-index {
      align-self: flex-start;
    }

    .logo-2 {
      align-self: flex-start;
    }

    .logo-2 img {
      width: 70px;
      margin-bottom: 10px;
    }

    .logo-index img {
      width: 70px;
      margin-bottom: 10px;
    }

    .code {
      font-size: 6rem;
      font-weight: 800;
      letter-spacing: 2px;
    }

    h1 {
      font-size: 2rem;
      font-weight: 800;
    }

    p {
      font-size: 1.3rem;
      line-height: 1.5;
      opacity: 0.9;
      max-width: 600px;
    }

    .actions {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 10px;
    }

    .btn {
      padding: 12px 26px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      transition: 0.25s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn.primary {
      background: white;
      color: black;
    }

    .btn.primary:hover {
      transform: translateY(-2px);
    }

    .btn.ghost {
      border: 1.5px solid rgba(255, 255, 255, 0.4);
      color: white;
    }

    .btn.ghost:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-2px);
    }

    .hint {
      margin-top: 30px;
      font-size: 1rem;
      opacity: 0.6;
      font-style: oblique;
    }

    .responsive-p {
      text-align: left;
    }

    .bird {
      border-radius: 30px;
    }

    @media (max-width: 600px) {
      .code {
        font-size: 4.5rem;
      }

      .bird {
        width: 80%;
      }

      .logo-index {
        align-self: center;
      }

      .responsive-p {
        text-align: center;
      }

      h1 {
        font-size: 1.6rem;
      }

      p {
        font-size: 1.15rem;
      }

      .dual-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
      }

      .left-block,
      .right-block {
        white-space: normal;
        text-align: center;
      }
    }

    .dual-content {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 20px;
    }

    .left-block,
    .right-block {
      white-space: nowrap;
      text-align: left;
    }

    .blurred {
      filter: blur(5px);
      transition: filter 0.3s ease;
    }

    .popup-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(5, 5, 5, 0.8);
      backdrop-filter: blur(10px);
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s ease;
      z-index: 100;
    }

    .popup-bg.show {
      opacity: 1;
      pointer-events: auto;
    }

    .popup {
      background: #111;
      padding: 30px;
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      width: 320px;
      text-align: center;
    }

    .popup input {
      padding: 10px;
      border-radius: 10px;
      border: none;
      font-size: 1rem;
      outline: none;
      text-align: center;
    }

    .popup button {
      padding: 10px 20px;
      border-radius: 10px;
      border: none;
      background: white;
      color: black;
      font-weight: 600;
      cursor: pointer;
      transition: 0.2s;
    }

    .popup button:hover {
      background: #ccc;
    }

    #cookie-banner {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 9999;
      width: calc(100% - 40px);
      max-width: 900px;
      opacity: 0;
      animation: cookieIn 0.6s ease forwards;
    }

    .cookie-inner {
      background: rgba(10, 10, 10, 0.9);
      backdrop-filter: blur(10px);
      border: 1.5px solid rgba(255, 255, 255, 0.15);
      border-radius: 25px;
      padding: 25px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 25px;
    }

    .cookie-text h3 {
      font-size: 1.4rem;
      font-weight: 800;
      margin-bottom: 5px;
    }

    .cookie-text p {
      font-size: 1rem;
      opacity: 0.85;
      line-height: 1.5;
      max-width: 520px;
    }

    .cookie-actions {
      display: flex;
      gap: 12px;
      flex-shrink: 0;
    }

    .cookie-btn {
      padding: 10px 22px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      transition: 0.25s ease;
      border: none;
    }

    .cookie-btn.primary {
      background: white;
      color: black;
    }

    .cookie-btn.primary:hover {
      transform: translateY(-1px);
    }

    .cookie-btn.ghost {
      background: transparent;
      color: white;
      border: 1.5px solid rgba(255, 255, 255, 0.4);
    }

    .cookie-btn.ghost:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-1px);
    }

    .responsive-h1 {
      font-size: 2rem;
      font-weight: 800;
      text-align: center;
    }

    @keyframes cookieIn {
      from {
        opacity: 0;
        transform: translate(-50%, 20px);
      }

      to {
        opacity: 1;
        transform: translate(-50%, 0);
      }
    }

    @media (max-width: 700px) {
      .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .cookie-actions {
        width: 100%;
        justify-content: flex-end;
      }
    }

    .container {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      max-width: 1200px;
      width: 100%;
      justify-content: center;
    }

    .info {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .info-2 {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .fullstack {
      font-weight: 700;
      cursor: pointer;
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .fullstack i {
      font-style: italic;
    }

    .dropdown {
      position: absolute;
      top: 110%;
      left: 0;
      background: #111;
      padding: 15px 20px;
      border-radius: 10px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      width: 220px;
      font-size: 0.95rem;
      z-index: 10;
    }

    .fullstack:hover .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .playing {
      font-weight: 800;
      font-size: 1.5rem;
    }

    .contact-row {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .email {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: white;
      color: black;
      padding: 10px 20px;
      border-radius: 50px;
      font-weight: 500;
      text-decoration: none;
    }

    .socials {
      display: flex;
      gap: 15px;
      font-size: 1.5rem;
    }

    .socials a {
      color: white;
      transition: 0.2s;
    }

    .card {
      position: relative;
      width: 400px;
      border-radius: 30px;
      overflow: hidden;
      border: 2px solid white;
    }

    .card img {
      width: 100%;
    }

    .card-content {
      padding: 20px;
      background: #050505;
    }

    .card h2 {
      font-weight: 700;
      font-size: 1.3rem;
      margin-bottom: 5px;
    }

    .scrolling-text {
      font-weight: 800;
      font-size: 2rem;
      white-space: nowrap;
      overflow: hidden;
    }

    .scrolling-text span {
      display: inline-block;
      animation: scroll 12s linear infinite;
    }

    .site-with-icon {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 1.1rem;
      margin: 0;
    }

    .site-with-icon img {
      width: 20px;
      height: 20px;
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    @media (max-width: 600px) {
      body {
        padding: 10px;
      }

      .container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
      }

      .info {
        max-width: 100%;
        text-align: center;
        align-items: center;
      }

      .info-2 {
        max-width: 100%;
      }

      .contact-row {
        flex-direction: column;
        gap: 15px;
      }

      .card {
        width: 100%;
        max-width: 360px;
      }

      .scrolling-text {
        font-size: 1.6rem;
      }
    }

    .side-nav {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 90px;
      background: linear-gradient(to bottom,
          rgba(15, 15, 15, 0.95),
          rgba(5, 5, 5, 0.95));
      border-right: 1.5px solid rgba(255, 255, 255, 0.12);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 20px 12px;
      backdrop-filter: blur(12px);
    }

    .side-top,
    .side-bottom {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .side-brand {
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .side-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      padding: 14px 10px;
      border-radius: 20px;
      text-decoration: none;
      color: white;
      font-size: 0.75rem;
      font-weight: 600;
      transition: 0.25s ease;
      opacity: 0.75;
    }

    .side-item i {
      font-size: 1.1rem;
    }

    .side-item:hover {
      background: rgba(255, 255, 255, 0.08);
      opacity: 1;
    }

    .side-item.active {
      background: white;
      color: black;
      opacity: 1;
    }

    .side-item.active i {
      color: black;
    }

    .side-item.subtle {
      opacity: 0.55;
    }

    .side-item.subtle:hover {
      opacity: 0.9;
    }

    @media (max-width: 800px) {
      .side-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        height: 82px;
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 10px 16px;
        background: linear-gradient(to right,
            rgba(8, 8, 8, 0.975),
            rgba(8, 8, 8, 0.975));
        border-top: 1.5px solid rgba(255, 255, 255, 0.12);
        border-right: none;
      }

      .side-top,
      .side-bottom {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 6px;
      }

      .side-top {
        justify-content: center;
        flex: unset;
      }

      .side-bottom {
        margin-left: 5px;
        justify-content: center;
      }

      .side-brand {
        display: none;
      }

      .side-item.subtle {
        opacity: 1;
      }

      .side-item {
        min-width: 68px;
        padding: 8px 10px;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        opacity: 0.85;
      }

      .side-item i {
        font-size: 1.25rem;
      }

      .side-item span {
        display: block;
        font-size: 0.7rem;
        line-height: 1;
        opacity: 0.85;
        white-space: nowrap;
      }
    }