
    body {
      margin: 0;
      height: 100vh;
      background: #121212;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .social-container {
      display: flex;
      gap: 24px;
      background: #1e1e1e;
      padding: 24px 36px;
      border-radius: 16px;
      box-shadow: 0 0 20px #2a2a2a;
    }

    .social-button {
      width: 60px;
      height: 60px;
      background: #2c2c2c;
      border-radius: 12px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white; /* icons start white */
      transition: all 0.3s ease;
      text-decoration: none;
      box-shadow: 0 0 6px transparent;
      cursor: pointer;
    }

    .social-button svg,
    .social-button img {
      width: 28px;
      height: 28px;
      fill: currentColor;
      transition: fill 0.3s ease, filter 0.3s ease;
      filter: brightness(1);
      display: block;
    }

    /* Hover colors per brand */
    .github:hover {
      background: #28a745;
      color: #000;
      box-shadow: 0 0 15px #28a745;
      transform: scale(1.1);
    }

    .itch:hover {
      background: #f64c72;
      color: white;
      box-shadow: 0 0 15px #f64c72;
      transform: scale(1.1);
      filter: brightness(1.3);
    }

    .mail:hover {
      background: #ea4335;
      color: white;
      box-shadow: 0 0 15px #ea4335;
      transform: scale(1.1);
    }

    .placeholder:hover {
      background: #3b82f6;
      color: white;
      box-shadow: 0 0 15px #3b82f6;
      transform: scale(1.1);
    }