/* -------------------
   RESET & VARIABLES
------------------- */
@import url('https://fonts.cdnfonts.com/css/burger-free');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --bg: #265990;
    --fg: #ffffff;
    --muted: #fdfeff;
    --accent: #ff6f61;
    --accent-2: #fca311;
    --shadow: rgba(0, 0, 0, 0.25);
  }
  
  body {
    font-family: 'Burger Free', sans-serif;
    background-image:url("../images/spaceship.jpeg");
    color: var(--fg);
    line-height: 1.6;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  ul {
    list-style: none;
  }
  
  /* -------------------
     WRAPPER
  ------------------- */
  .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
  }
  
  /* -------------------
     HEADER
  ------------------- */
  header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #5EBEE2 (6, 16, 40, 0.9);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  
  .nav {
    display: flex;
    align-items: center;     
    justify-content: space-between;
    padding: 14px 0;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .brand h1 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.5px;
  }
  
  .logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
  }
  .logo-img {
    width: 48px;        /* adjust size as needed */
    height: 48px;
    border-radius: 50%; /* makes it perfectly round */
    object-fit: cover;  /* keeps aspect ratio while filling circle */
    border: 2px solid transparent;
    padding: 2px; /* creates gradient border effect */
  }
  
  
  nav ul {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  
  nav a {
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  nav a:hover {
    color: var(--accent);
  }
  
  .cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #061028;
    font-weight: 700;
    border: none;
    padding: 15px 25px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
  }
  
  .cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
  }
  
  /* -------------------
     MOBILE MENU
  ------------------- */
  .hambtn {
    background: none;
    border: none;
    display: none;
    cursor: pointer;
  }
  
  .mobile-menu {
    position: absolute;
    top: 60px;
    right: 16px;
    background: #0d1a40;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow);
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    animation: fadeIn 0.3s ease;
  }
  
  .mobile-menu a {
    padding: 6px 0;
    font-weight: 600;
  }
  
  /* -------------------
     HERO SECTION
  ------------------- */
  .hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: center;
    gap: 32px;
    padding: 60px 0;
  }
  
  .eyebrow {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-2);
    margin-bottom: 8px;
  }
  
  .title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  
  .subtitle {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 20px;
    max-width: 500px;
  }
  
  .links-row {
    display: flex;
    gap: 10px;
  }
  
  .social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
  }
  
  .social-btn:hover {
    background: var(--accent);
  }
  
  .hero-right {
    display: flex;
    justify-content: center;
  }
  
  .card-3d {
    width: 260px;
    height: 260px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px var(--shadow);
    transform: rotateY(0deg);
    transition: transform 0.6s ease;
  }
  
  .anime-img {
    font-weight: 800;
    font-size: 22px;
    color: #061028;
    text-align: center;
  }
  .card-3d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }
  
  /* -------------------
     SECTIONS
  ------------------- */
  section {
    padding: 60px 0;
  }
  
  h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .card {
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 10px var(--shadow);
  }
  
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }
  
  .contract {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  
  .contract input {
    flex: 1;
    padding: 8px 10px;
    border-radius: 8px;
    border: none;
    background: rgba(255,255,255,0.06);
    color: var(--fg);
  }
  
  .copy-btn {
    background: var(--accent);
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #061028;
  }
  
  /* -------------------
     HOW TO BUY
  ------------------- */
  .how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .how-card {
    background: rgba(255,255,255,0.04);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px var(--shadow);
  }
  
  /* -------------------
     FOOTER
  ------------------- */
  footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  
  .footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  
  .legal {
    font-size: 13px;
    color: var(--muted);
  }
  
  /* -------------------
     RESPONSIVE
  ------------------- */
  @media (max-width: 768px) {
    nav {
      display: none;
    }
  
    .cta {
      display: none;
    }
  
    .hambtn {
      display: block;
    }
  
    .mobile-menu.show {
      display: flex;
    }
  
    .title {
      font-size: 28px;
    }
  }
  
  /* -------------------
     ANIMATIONS
  ------------------- */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  

