  .page-wrapper {
      margin: 0;
      padding: 40px 20px;
      
      color: #111;
      font-family: 'Segoe UI', sans-serif;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      max-width: 1200px;
      width: 100%;
      gap: 40px;
    }

    .info {
      flex: 1 1 400px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .info h1 {
      margin: 0;
      font-size: 3rem;
      color: #00f7ff;
      text-shadow: 0 0 8px #00f7ff, 0 0 1px #00f7ff;
      opacity: 0;
      transform: translateY(-40px);
      transition: all 0.6s ease;
       font-family: 'octa';
    }

    .tech-icons {
      display: flex;
      gap: 12px;
      margin: 10px 0;
      opacity: 0;
      transform: translateX(-40px);
      transition: all 0.6s ease;
    }

    .tech-icon {
      position: relative;
      display: inline-block;
    }

    .tech-icon img {
      width: 40px;
      height: 40px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .tech-icon:hover img {
      transform: scale(1.2) rotate(10deg);
    }

    .tech-icon .tooltip {
        font-weight: bold;
      position: absolute;
      bottom: 125%;
      left: 50%;
      transform: translateX(-50%);
      background-color: #00000084;
      color: #fff;
      padding: 5px 10px;
      border-radius: 4px;
      font-size: 12px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .tech-icon:hover .tooltip {
      opacity: 1;
    }

    .info p {
      font-weight: bold;
      margin-top: 8px;
      line-height: 1.6;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.6s ease;
      color: #fff;
      font-size: 20px;
      font-family: 'timeroman';
    }

    .buttons {
      display: flex;
      gap: 20px;
      margin-top: 10px;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.6s ease;
    }

    .buttons a {
      text-decoration: none;
      color: #00f7ff;
      border: 2px solid #00f7ff;
      padding: 10px 20px;
      border-radius: 6px;
      transition: all 0.3s ease;
    }

    .buttons a:hover {
        font-weight: bold;
      background-color: #00f7ff;
      color: #000;
      box-shadow: 0 0 12px #00f7ff;
      letter-spacing: 0.4rem;

    }

    .pc-frame {
      flex: 1 1 500px;
      position: relative;
      max-width: 650px;
      transition: box-shadow 0.4s ease;
      box-shadow: 0 0 20px #00f7ff, 0 0 40px #00f7ff, 0 0 60px #00f7ff;
      border-radius: 12px;
    }

    .pc-frame video.bg {
      width: 100%;
      border-radius: 12px;
      object-fit: cover;
      display: block;
    }

    .pc-frame .screen {
      position: absolute;
      top: 18%;
      left: 30%;
      width: 39%;
      height: 45%;
      overflow: hidden;
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
      background: #000;
      transition: opacity 0.3s ease;
    }

    .pc-frame .screen video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
    }

    .mouse-controller {
      width: 400px;
      height: auto;
      position: relative;
      margin-top: 40px;
    }

    .mouse-controller img {
      width: 100%;
      display: block;
    }

    .mouse-controller .left,
    .mouse-controller .right {
      position: absolute;
      top: 0;
      width: 50%;
      height: 100%;
      cursor: pointer;
    }

    .mouse-controller .left {
      left: 0;
    }

    .mouse-controller .right {
      right: 0;
    }