 :root {
      --primary-color: #2c3e50;
      --secondary-color: #3498db;
      --accent-color: #e74c3c;
      --text-color: #f5f5f5;
      --muted-color: rgba(245, 245, 245, 0.7);
      --bg-color: #1a1a2e;
      --card-bg: rgba(255, 255, 255, 0.05);
      --border-radius: 12px;
      --transition: all 0.3s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      overflow: auto;
      zoom: 98%;
    }

    body {
      font-family: "Short Stack", cursive;;
      background: url(imgs/pizza.gif)no-repeat;
      background-size: cover;
      color: var(--text-color);
      line-height: 1.6;
      min-height: 100vh;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .nav-bar {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 40px;
      margin-top: 10px;
      width: 100%;
      max-width: 1200px;
      
    }

    .btn-social {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 150px;
      height: 60px;
      border-radius: 10px;
      color: white;
      border: 5px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.9);
      font-family: "Short Stack", cursive;
      font-weight: 400;
      font-style: normal;
      text-decoration: none;
    }

    .btn-social:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .github{
      background: #333;
    }
    .github:hover {
      background: linear-gradient(135deg, #6e5494, #c084fc);
     border-color: darkorchid;
    }

    .steam{
      background-color: #333;
    }
    .steam:hover {
      background: linear-gradient(135deg, #00adee, #1b2838);
      border-color: #00adee;
    }

    .instagram{
      background: #333;
    }
    .instagram:hover {
      background: linear-gradient(135deg, #feda75, #d62976, #4f5bd5);
      border-color: #ff4b4b;
    }

    .contato{
      background: #333;
    }
    .contato:hover {
     background: linear-gradient(135deg, rgb(1, 155, 1), rgb(64, 124, 64));
     border-color: rgb(151, 151, 151);
    }

    section {
      width: 100%;
      max-width: 800px;
      display: flex;
      justify-content: center;
      
    }

    .profile-card {
      background: transparent;
      backdrop-filter: blur(30px);
      border-radius: 20px;
      padding: 40px;
      width: 100%;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.1);
      
    }

    .profile-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    }

    h1 {
      font-family: "Short Stack", cursive;
      font-size: 1.8rem;
      margin-bottom: 10px;
      color: white;
      text-align: center;
    }

    h2 {
      font-size: 1.3rem;
      font-weight: bolder;
      margin-bottom: 30px;
      color: rgb(255, 167, 3);
      text-align: center;
      font-weight: 400;
      font-family: "Short Stack", cursive;
    }

    .profile-info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      
    }

    .info-group {
      margin-bottom: 20px;
    }

    .info-group strong {
      display: block;
      margin-bottom: 5px;
      color: var(--text-color);
      font-size: 1rem;
    }

    .info-group span {
      color: var(--muted-color);
      font-size: 0.95rem;
    }

    .profile-img {
      display: flex;
      justify-content: center;
      margin-top: 30px;
    }

    .profile-img img {
      width: auto;
      height: 250px;
      object-fit: cover;
      border: 4px solid #e74c3c;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .tag {
      display: inline-block;
      background: rgba(52, 152, 219, 0.2);
      color: var(--secondary-color);
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.85rem;
      margin: 2px;
    }

    .highlight {
      color: var(--accent-color);
    }

    @media (max-width: 768px) {
      .nav-bar {
        flex-direction: column;
        align-items: center;
      }
      
      .btn-social {
        width: 100%;
        max-width: 250px;
        justify-content: center;
      }
      
      .profile-card {
        padding: 25px;
      }
      
      h1 {
        font-size: 2rem;
      }
      
      h2 {
        font-size: 1.1rem;
      }
    }

    @media (max-width: 480px) {
      body {
        padding: 10px;
      }
      
      .profile-card {
        padding: 20px;
      }
      
      h1 {
        font-size: 1.8rem;
      }
    }