* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #000;
    color: #fff;
  }
  
  .container {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Load card style */
  .card-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .background {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  
  .gradient-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
    animation: float 8s ease-in-out infinite;
  }
  
  .pink {
    background: linear-gradient(45deg, rgba(236, 72, 153, 0.3), rgba(139, 92, 246, 0.3));
    animation-delay: -2s;
  }
  
  .purple {
    background: linear-gradient(-45deg, rgba(96, 165, 250, 0.3), rgba(236, 72, 153, 0.3));
    animation-delay: -4s;
  }
  
  .blue {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.3), rgba(96, 165, 250, 0.3));
    animation-delay: -6s;
  }
  
  .card {
    position: relative;
    width: 600px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin: 0 10px;
  }
  
  .header {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
  }
  
  .logo {
    font-size: 2.25rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    background: linear-gradient(to right, #ec4899, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px;
  }
  
  #content-container {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.3s;
    transition: opacity 0.3s ease;
  }
  
  .personality {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ec4899, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .trait {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
  }
  
  .description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
  }
  
  .progress-container {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
  }
  
  .progress-bar {
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    overflow: hidden;
  }
  
  .progress {
    height: 100%;
    background: linear-gradient(to right, #ec4899, #8b5cf6, #3b82f6);
    width: 0%;
    transition: width 3s linear;
  }
  
  /* Main interface style */
  .main-interface {
    position: fixed;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .main-interface.hidden {
    display: none;
  }
  
  .main-interface .background {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: -1;
  }
  
  .main-interface .gradient-orb {
    width: 800px;
    height: 800px;
    filter: blur(150px);
    opacity: 0.3;
  }
  
  .top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 10;
  }
  
  .logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .social-section {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 800px;
    margin: -60px auto 0;
    z-index: 6;
  }
  
  .ca-box {
    background: rgba(236, 72, 153, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 10px;
    border: 1px solid rgb(236 72 153);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 30px;
  }
  
  .ca-box:hover {
    background: rgba(255, 255, 255, 0.15);
  }
  
  .ca-box span {
    color: #fff;
    font-size: 14px;
  }
  
  .social-buttons {
    display: flex;
    gap: 20px;
  }
  
  .social-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 8px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
  }
  
  .social-button:hover {
    background: rgba(255, 255, 255, 0.15);
  }
  
  .social-button img {
    width: 20px;
    height: 20px;
  }
  
  .social-button span {
    font-size: 14px;
  }
  
  /* Toast notification style */
  .toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1000;
  }
  
  .toast.show {
    opacity: 1;
  }
  
  .nav-logo {
    width: 50%;
    height: 50%;
    object-fit: cover;
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .graph-container {
    position: absolute;
    inset: 80px 0 80px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
  }
  
  .main-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ec4899, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  #graph {
    width: 100%;
    height: 100%;
    max-width: 800px;
    max-height: 800px;
  }
  
  .subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
  }
  
  .center-group {
    position: relative;
    z-index: 1000;
  }
  
  .center-shape {
    transform-origin: center;
    transition: d 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .center-image {
    width: 100px;
    height: 100px;
    position: relative;
    z-index: 1001;
  }
  
  .bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 10;
    align-items: center;
  }
  
  .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .nav-item:hover {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .nav-item.active {
    color: #fff;
    background-color: #ec4899;
    width: 65px;
    padding: 10px 0;
    border-radius: 10px;
  }
  
  .nav-item .icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
  }
  
  .nav-item span {
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: -5px;
  }
  
  .wallet-button {
    background-color: #ec4899;
    color: white;
    padding: 8px 16px;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .wallet-button:hover {
    opacity: 0.9;
  }
  
  .connection-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    stroke-width: 2;
  }
  
  .connection-line.animate {
    animation: drawLine 1s ease-out forwards;
  }
  
  .node-text {
    font-size: 14px;
    fill: #ffffff;
    text-anchor: middle;
    dominant-baseline: hanging;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .random-text {
    font-size: 14px;
    fill: #ffffff;
    text-anchor: middle;
    dominant-baseline: middle;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  @media (max-width: 750px) {
    .ca-box {
      background: rgba(236, 72, 153, 0.1);
      backdrop-filter: blur(10px);
      padding: 10px 25px;
      border-radius: 10px;
      border: 1px solid rgb(236 72 153);
      cursor: pointer;
      transition: all 0.3s ease;
      width: 90vw;
      margin-bottom: 10px;
    }
    .social-section {
      position: relative;
      display: flex;
      align-items: center;
      padding: 20px;
      max-width: 800px;
      margin: -60px auto 0;
      z-index: 6;
      flex-direction: column;
      justify-content: center;
    }
    .social-buttons {
      display: flex;
      gap: 10px;
      margin: 0 auto;
      margin-left: 0px;
      width: 90vw;
      overflow: overlay;
    }
    .social-button {
      display: flex;
      align-items: center;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      padding: 10px 10px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      text-decoration: none;
      color: #fff;
      transition: all 0.3s ease;
    }
    .personality {
      font-size: 2.4rem;
      font-weight: 600;
      line-height: 40px;
      margin-bottom: 1rem;
      background: linear-gradient(to right, #ec4899, #8b5cf6, #3b82f6);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .main-title {
      font-size: 2.5rem;
    }
    .subtitle {
      font-size: 1rem;
      text-align: center;
    }
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes float {
    0%,
    100% {
      transform: translate(-50%, -50%) translateY(-30px) translateX(-20px);
    }
    25% {
      transform: translate(-50%, -50%) translateY(0px) translateX(20px);
    }
    50% {
      transform: translate(-50%, -50%) translateY(30px) translateX(-10px);
    }
    75% {
      transform: translate(-50%, -50%) translateY(0px) translateX(10px);
    }
  }
  
  @keyframes drawLine {
    to {
      stroke-dashoffset: 0;
    }
  }
  
  
