    @property --gradient-angle {
      syntax: "<angle>";
      initial-value: 0deg;
      inherits: false;
    }
    :root {
      --clr-1: #010c3f;
      --clr-2: #000425b9;
      --clr-3: #0828df;
      --clr-4: #b60606;
      --clr-5: #0828df;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      background: linear-gradient(135deg, #010c3f 0%, #000425 50%, #0828df 100%);
      background-attachment: fixed;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: white;
    }
    header {
      background: var(--clr-2);
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      backdrop-filter: blur(10px);
    }
    header span {
      font-size: 1rem;
      font-weight: bold;
      color: #aaa;
      transition: all 0.3s ease;
    }
    header span:hover {
      color: white;
      text-shadow: 0 0 10px #0828df;
    }
    a {
      text-decoration: none;
    }
    main {
      flex: 1;
      padding: 2rem;
    }

    /* Profil beszélő szekció */
    .profile-talking {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
      max-width: 900px;
      margin: 2rem auto 3rem;
      padding: 0 1rem;
    }

    .p_i {
      width: 80px;
      height: 80px;
      flex-shrink: 0;
      border-radius: 50%;
      border: 4px solid transparent;
      background: linear-gradient(var(--clr-4), var(--clr-5)) border-box;
      padding: 4px;
      object-fit: cover;
      animation: pulse 10s infinite ease-in-out;
    }

    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 10px #b60606; }
      50% { box-shadow: 0 0 20px #0828df; }
    }

    .typed-text-container {
      flex: 1;
      min-width: 0;
    }

    .typed-text {
      font-size: 1.2rem;
      color: white;
      line-height: 1.5;
      word-wrap: break-word;
      overflow-wrap: break-word;
      border-right: 2px solid white;
      animation: blink 0.75s step-end infinite;
    }

    @keyframes blink {
      50% { border-color: transparent; }
    }

    /* Kártyák */
    .card-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem 1rem;
    }

    .card {
      aspect-ratio: 3 / 2;
      border-radius: 0.5rem;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .card::before,
    .card::after {
      content: "";
      position: absolute;
      inset: -0.5rem;
      z-index: 0;
      background: conic-gradient(
        from var(--gradient-angle),
        var(--clr-3),
        var(--clr-4),
        var(--clr-5),
        var(--clr-4),
        var(--clr-3)
      );
      border-radius: inherit;
      animation: rotation 10s linear infinite;
    }

    .card::after {
      filter: blur(3.5rem);
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(8, 40, 223, 0.5);
    }

    .card-content {
      position: relative;
      z-index: 1;
      backdrop-filter: blur(10px);
      background: var(--clr-1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 0.5rem;
      height: 100%;
      width: 100%;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .card-content h3 {
      color: white;
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .card-content p {
      color: #ccc;
      font-size: 1rem;
      line-height: 1.5;
    }

    .card-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
      color: var(--clr-3);
    }

    .project-type {
      background: var(--clr-4);
      color: white;
      padding: 0.3rem 0.8rem;
      border-radius: 15px;
      font-size: 0.8rem;
      margin-bottom: 1rem;
      display: inline-block;
    }

    @keyframes rotation {
      0% {
        --gradient-angle: 0deg;
      }
      100% {
        --gradient-angle: 360deg;
      }
    }

    footer {
      background: #111;
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
      color: #aaa;
    }

    /* Responsiveness */
    @media (max-width: 768px) {
      .profile-talking {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
      }

      .p_i {
        align-self: center;
      }

      .card-container {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .card-content {
        padding: 1.5rem;
      }
    }

    @media (max-width: 480px) {
      header {
        text-align: center;
      }
      
      .typed-text {
        font-size: 1rem;
      }
    }

    /* Modal stílusok */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(5px);
    }

    .modal-content {
      background: var(--clr-1);
      margin: 5% auto;
      padding: 2rem;
      border-radius: 1rem;
      width: 90%;
      max-width: 600px;
      position: relative;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .close {
      color: #aaa;
      float: right;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .close:hover {
      color: white;
    }

    .modal-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .modal-icon {
      font-size: 2rem;
      color: var(--clr-3);
    }

    .modal-description {
      margin-bottom: 2rem;
      line-height: 1.6;
      color: #ccc;
    }

    .modal-tech-stack {
      margin-bottom: 2rem;
    }

    .tech-tag {
      background: var(--clr-3);
      color: white;
      padding: 0.3rem 0.8rem;
      border-radius: 15px;
      font-size: 0.8rem;
      margin: 0.2rem;
      display: inline-block;
    }

    .view-button {
      background: linear-gradient(45deg, var(--clr-4), var(--clr-5));
      color: white;
      border: none;
      padding: 1rem 2rem;
      border-radius: 0.5rem;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
    }

    .view-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(8, 40, 223, 0.4);
    }

    .modal-footer {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
    }