:root {
    --bg-gradient: linear-gradient(135deg, #4e148c, #02010a);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.3);
    --text-dark: #ffffff;
    --text-light: #dddddd;
    --accent: #9a4eff;
    --accent-hover: #7a1fff;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background: #0f0f1a;
    color: var(--text-dark);
    line-height: 1.6;
    background-image: var(--bg-gradient);
    background-size: 200% 200%;
    animation: moveBg 15s ease infinite;
  }
  
  @keyframes moveBg {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  
  header,
  section {
    padding: 4rem 1.5rem;
  }
  
  .hero {
    text-align: center;
    background: transparent;
  }
  
  .logo-circle {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
    margin: 0 auto 1.5rem;
    display: block;
    animation: floatLogo 4s ease-in-out infinite;
  }
  
  @keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
  
  .hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff, #dcd0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .hero p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
  }
  
  .btn {
    display: inline-block;
    background: var(--accent);
    color: white;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
  }
  
  .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
  }
  
  .grid {
    display: grid;
    gap: 1.5rem;
  }
  
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  @media(min-width: 768px) {
    .grid-4 {
      grid-template-columns: repeat(4, 1fr);
    }
  
    .grid-2 {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  }
  
  .card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .benefits {
    background: rgba(255, 255, 255, 0.03);
  }
  
  .benefits .card {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }

  .zora {
    text-align: center;
    padding: 4rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-dark);
  }
  
  .zora-btn {
    margin-top: 1rem;
    background: var(--accent);
    color: white;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
  }
  
  .contract-container {
    margin-top: 2rem;
    text-align: center;
  }
  
  .contract-label {
    font-weight: 600;
    font-size: 1rem;
  }
  
  .contract-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    margin: 0.5rem auto;
    max-width: 600px;
    backdrop-filter: blur(10px);
  }
  
  .contract-box code {
    color: #fff;
    font-size: 0.9rem;
    margin-right: 1rem;
    user-select: all;
    overflow-wrap: break-word;
  }
  
  .copy-btn {
    padding: 0.3rem 0.75rem;
    font-size: 0.8rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .copy-btn:hover {
    background: var(--accent-hover);
  }
  
  .copy-msg {
    display: none;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: lightgreen;
  }
  
  /* Cards */
  .zora-cards {
    margin-top: 3rem;
  }
  
  .zora .card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: var(--text-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .zora .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  }
  
  .zora .card-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
  }
  
  
  .cta {
    text-align: center;
    background: transparent;
  }
  
  .cta .subtext {
    margin-bottom: 2rem;
    color: var(--text-light);
  }
  
  footer {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    color: #ccc;
    font-size: 0.875rem;
    padding: 2rem 1rem;
    backdrop-filter: blur(6px);
  }
  