
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html, body {
      height: 100%;
      background: #000;
      color: #fff;
      font-family: 'Segoe UI', Arial, sans-serif;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    @keyframes glitch {
      0% { text-shadow: 0.05em 0 0 rgba(255,0,0,0.75), -0.05em -0.025em 0 rgba(0,255,0,0.75), -0.025em 0.05em 0 rgba(0,0,255,0.75); }
      14% { text-shadow: 0.05em 0 0 rgba(255,0,0,0.75), -0.05em -0.025em 0 rgba(0,255,0,0.75), -0.025em 0.05em 0 rgba(0,0,255,0.75); }
      15% { text-shadow: -0.05em -0.025em 0 rgba(255,0,0,0.75), 0.025em 0.025em 0 rgba(0,255,0,0.75), -0.05em -0.05em 0 rgba(0,0,255,0.75); }
      49% { text-shadow: -0.05em -0.025em 0 rgba(255,0,0,0.75), 0.025em 0.025em 0 rgba(0,255,0,0.75), -0.05em -0.05em 0 rgba(0,0,255,0.75); }
      50% { text-shadow: 0.025em 0.05em 0 rgba(255,0,0,0.75), 0.05em 0 0 rgba(0,255,0,0.75), 0 -0.05em 0 rgba(0,0,255,0.75); }
      99% { text-shadow: 0.025em 0.05em 0 rgba(255,0,0,0.75), 0.05em 0 0 rgba(0,255,0,0.75), 0 -0.05em 0 rgba(0,0,255,0.75); }
      100% { text-shadow: -0.025em 0 0 rgba(255,0,0,0.75), -0.025em -0.025em 0 rgba(0,255,0,0.75), -0.025em -0.05em 0 rgba(0,0,255,0.75); }
    }

    #confirmacao, #site {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      z-index: 1;
      text-align: center;
      position: relative;
    }

    #confirmacao {
      background-color: rgba(0, 0, 0, 0.85);
    }

    #confirmacao h1 {
      margin-bottom: 30px;
      font-size: 2rem;
      text-shadow: 0 0 10px rgba(255,255,255,0.5);
      animation: glitch 2s infinite alternate;
    }

    #confirmacao button {
      background: transparent;
      border: 2px solid #fff;
      color: #fff;
      padding: 12px 30px;
      font-size: 24px;
      cursor: pointer;
      border-radius: 30px;
      margin: 10px;
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      outline: none;
      position: relative;
      overflow: hidden;
    }

    #confirmacao button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: 0.5s;
    }

    #confirmacao button:hover {
      background: #fff;
      color: #000;
      transform: scale(1.1);
      box-shadow: 0 0 20px rgba(255,255,255,0.5);
    }

    #confirmacao button:hover::before {
      left: 100%;
    }

    #site {
      display: none;
      padding: 50px 20px;
      opacity: 0;
      animation: fadeIn 1s forwards 0.5s;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .cards-wrapper {
      padding-bottom: 50px;
    }

    .container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      perspective: 1000px;
    }

    .card {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
      padding: 25px;
      border-radius: 20px;
      width: 300px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.18);
      text-align: center;
      transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      transform-style: preserve-3d;
    }

    .inspect-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(255,255,255,0.2);
      border: none;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      color: white;
      cursor: pointer;
      z-index: 2;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
    }

    .card:hover .inspect-btn {
      opacity: 1;
    }

    .inspect-btn:hover {
      background: rgba(255,255,255,0.4);
      transform: rotate(90deg) scale(1.1);
    }

    .card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0)
      );
      transform: rotate(30deg);
      pointer-events: none;
      transition: all 0.6s ease;
    }

    .card:hover {
      transform: scale(1.05) rotateY(5deg) rotateX(5deg);
      box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
      border-color: rgba(255, 255, 255, 0.6);
    }

    .card:hover::before {
      transform: rotate(45deg) translate(10%, 10%);
    }

    .card img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
      margin-bottom: 20px;
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      filter: grayscale(30%);
    }

    .card img.loading {
      background: linear-gradient(90deg, #222, #333, #222);
      background-size: 200% 100%;
      animation: loading 1.5s infinite;
    }

    @keyframes loading {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    .card:hover img {
      transform: rotate(5deg) scale(1.1);
      box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
      filter: grayscale(0%);
    }

    h2 {
      font-size: 24px;
      margin: 15px 0 8px;
      position: relative;
      display: inline-block;
      font-weight: 300;
      letter-spacing: 1px;
    }

    h2::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 2px;
      background: white;
      transition: width 0.4s ease;
    }

    .card:hover h2::after {
      width: 80%;
    }

    .estrela {
      color: #fff;
      font-size: 20px;
      margin-left: 6px;
      vertical-align: middle;
      animation: pulse 2s infinite, float 3s ease-in-out infinite;
    }

    @keyframes pulse {
      0% { transform: scale(1); opacity: 0.7; }
      50% { transform: scale(1.3); opacity: 1; }
      100% { transform: scale(1); opacity: 0.7; }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    p {
      font-size: 16px;
      color: #bbb;
      margin-bottom: 20px;
      transition: all 0.4s ease;
      line-height: 1.5;
    }

    .card:hover p {
      color: #fff;
      transform: translateY(-3px);
    }

    .icons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 15px;
    }

    .icons a {
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.3);
      padding: 12px;
      font-size: 20px;
      border-radius: 50%;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      text-decoration: none;
      position: relative;
      overflow: hidden;
    }

    .icons a::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
      transition: 0.5s;
    }

    .icons a:hover {
      background: #fff;
      color: #000;
      transform: scale(1.2) translateY(-5px);
      box-shadow: 0 5px 15px rgba(255,255,255,0.3);
    }

    .icons a:hover::before {
      left: 100%;
    }

    .icons a:hover i {
      animation: fire 0.5s ease-out;
    }

    @keyframes fire {
      0% { text-shadow: 0 0 0 #fff; }
      50% { text-shadow: 0 0 10px #fff, 0 0 20px #fff; }
      100% { text-shadow: 0 0 0 #fff; }
    }

    .audio-controls {
      position: fixed;
      bottom: 30px;
      right: 100px;
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 101;
      background: rgba(0,0,0,0.7);
      padding: 10px 15px;
      border-radius: 30px;
      border: 1px solid rgba(255,255,255,0.2);
      backdrop-filter: blur(5px);
      transition: all 0.3s ease;
    }

    .audio-controls:hover {
      background: rgba(0,0,0,0.8);
    }

    .volume-slider {
      width: 80px;
      height: 5px;
      -webkit-appearance: none;
      appearance: none;
      background: rgba(255,255,255,0.2);
      border-radius: 5px;
      outline: none;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .audio-controls:hover .volume-slider {
      opacity: 1;
    }

    .volume-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background: white;
      cursor: pointer;
    }

    .audio-btn {
      background: transparent;
      border: none;
      color: white;
      font-size: 16px;
      cursor: pointer;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .audio-btn:hover {
      background: rgba(255,255,255,0.2);
      transform: scale(1.1);
    }

    audio {
      display: none;
    }

    footer {
      text-align: center;
      padding: 30px;
      font-size: 14px;
      color: #888;
      margin-top: 50px;
      position: relative;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 200px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    }

    footer p {
      margin: 8px 0;
      color: #888;
      transition: all 0.3s ease;
    }

    footer:hover p {
      color: #ccc;
      transform: translateY(-2px);
    }

    .loader {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      z-index: 9999;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    .loader.active {
      display: flex;
    }

    .spinner {
      width: 60px;
      height: 60px;
      border: 5px solid rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      border-top-color: #fff;
      animation: spin 1s ease-in-out infinite;
      position: relative;
    }

    .spinner::before {
      content: '';
      position: absolute;
      top: -5px;
      left: -5px;
      right: -5px;
      bottom: -5px;
      border: 5px solid rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      border-top-color: rgba(255,255,255,0.5);
      animation: spin 1.5s ease-in-out infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    .loader p {
      margin-top: 20px;
      font-size: 16px;
      letter-spacing: 2px;
      animation: pulseText 2s infinite;
    }

    @keyframes pulseText {
      0%, 100% { opacity: 0.5; }
      50% { opacity: 1; }
    }

    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: rgba(255, 255, 255, 0.2);
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      z-index: 100;
      border: 1px solid rgba(255,255,255,0.3);
    }

    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }

    .back-to-top:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: translateY(-5px) scale(1.1);
      box-shadow: 0 5px 15px rgba(255,255,255,0.2);
    }

    .back-to-top i {
      transition: transform 0.3s ease;
    }

    .back-to-top:hover i {
      transform: translateY(-3px);
    }

    .tooltip {
      position: relative;
      display: inline-block;
    }

    .tooltip .tooltiptext {
      visibility: hidden;
      width: 120px;
      background-color: rgba(0,0,0,0.7);
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 8px;
      position: absolute;
      z-index: 1;
      bottom: 125%;
      left: 50%;
      transform: translateX(-50%);
      opacity: 0;
      transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      font-size: 12px;
      border: 1px solid rgba(255,255,255,0.2);
      backdrop-filter: blur(5px);
    }

    .tooltip .tooltiptext::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      margin-left: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: rgba(0,0,0,0.7) transparent transparent transparent;
    }

    .tooltip:hover .tooltiptext {
      visibility: visible;
      opacity: 1;
      transform: translateX(-50%) translateY(-5px);
    }

    .typing-effect {
      overflow: hidden;
      white-space: nowrap;
      margin: 0 auto;
      letter-spacing: 0.15em;
      animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
      border-right: .15em solid white;
    }

    @keyframes typing {
      from { width: 0 }
      to { width: 100% }
    }

    @keyframes blink-caret {
      from, to { border-color: transparent }
      50% { border-color: white }
    }

    .ripple {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      transform: scale(0);
      animation: ripple 0.6s linear;
      pointer-events: none;
    }

    @keyframes ripple {
      to {
        transform: scale(4);
        opacity: 0;
      }
    }

    .zoom-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.9);
      z-index: 1000;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: zoom-out;
    }

    .zoomed-card {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
      padding: 30px;
      border-radius: 20px;
      width: 90%;
      max-width: 400px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.18);
      text-align: center;
      position: relative;
    }

    .zoomed-card img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
      margin-bottom: 25px;
    }

    /* Globo 3D Estilos */
    .galaxy-viewer {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      z-index: 2000;
      display: none;
      overflow: hidden;
      cursor: grab;
    }

    .galaxy-viewer.grabbing {
      cursor: grabbing;
    }

    .galaxy-scene {
      position: absolute;
      width: 100%;
      height: 100%;
      perspective: 1200px;
      transform-style: preserve-3d;
    }

    .galaxy-container {
      position: absolute;
      width: 100%;
      height: 100%;
      transform-style: preserve-3d;
      transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .globe-sphere {
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), rgba(0,0,0,0));
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 0 60px rgba(100, 150, 255, 0.2);
      transform: translate3d(-50%, -50%, 0);
      top: 50%;
      left: 50%;
      transform-style: preserve-3d;
    }

    .profile-point {
      position: absolute;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      transform-style: preserve-3d;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .profile-point img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      filter: grayscale(30%);
      transition: all 0.3s ease;
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    }

    .profile-point:hover {
      transform: scale(1.3);
      z-index: 10;
    }

    .profile-point:hover img {
      filter: grayscale(0%);
      box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    }

    .galaxy-close {
      position: absolute;
      top: 30px;
      right: 30px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.3);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      z-index: 100;
      transition: all 0.3s ease;
    }

    .galaxy-close:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: rotate(90deg);
    }

    .galaxy-controls {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 100;
    }

    .galaxy-control-btn {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.3);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .galaxy-control-btn:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: scale(1.1);
    }

    .admin-toggle {
      position: fixed;
      top: 20px;
      right: 20px;
      background: rgba(255, 255, 255, 0.7);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      z-index: 3001;
      transition: all 0.3s ease;
    }

    .admin-toggle:hover {
      background: rgba(255, 0, 0, 0.9);
      transform: scale(1.1);
    }

    .admin-toggle.unlocked {
      background: rgba(0, 255, 0, 0.7);
    }

    .admin-toggle.unlocked:hover {
      background: rgba(0, 255, 0, 0.9);
    }

    /* Responsividade */
    @media (max-width: 768px) {
      .container {
        gap: 20px;
      }

      .card {
        width: 280px;
        padding: 20px;
      }

      .card img {
        width: 100px;
        height: 100px;
      }

      h2 {
        font-size: 22px;
      }

      .zoomed-card {
        width: 90%;
        padding: 20px;
      }

      .zoomed-card img {
        width: 120px !important;
        height: 120px !important;
      }

      .audio-controls {
        right: 20px;
        bottom: 90px;
      }

      .globe-sphere {
        width: 250px;
        height: 250px;
      }

      .profile-point {
        width: 70px;
        height: 70px;
      }

      .profile-point img {
        width: 50px;
        height: 50px;
      }

      .admin-panel {
        width: 90%;
        right: -90%;
      }
    }

    @media (max-width: 600px) {
      #confirmacao h1 {
        font-size: 1.5rem;
      }

      #confirmacao button {
        padding: 10px 25px;
        font-size: 20px;
      }

      .card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto 20px;
      }

      .icons a {
        width: 40px;
        height: 40px;
        padding: 10px;
        font-size: 18px;
      }

      footer {
        padding: 20px 15px;
      }

      .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
      }

      .zoomed-card {
        width: 95%;
        padding: 15px;
      }

      .audio-controls {
        padding: 8px 12px;
        right: 15px;
      }

      .volume-slider {
        width: 60px;
      }

      .globe-sphere {
        width: 200px;
        height: 200px;
      }

      .profile-point {
        width: 60px;
        height: 60px;
      }

      .profile-point img {
        width: 40px;
        height: 40px;
      }
    }
  