    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      min-height: 100vh;
      background: #020617; /* deep space */
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
      color: #fff;
    }

    /* ===== TOP BAR (fully responsive, same as index) ===== */
    .top-bar {
      background: #0f2b46;
      color: #fff;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: clamp(8px, 2vh, 10px) 5%;
      align-items: center;
      font-size: clamp(12px, 3.5vw, 14px);
      position: relative;
      overflow: hidden;
      z-index: 1001;
      gap: clamp(8px, 2vw, 15px);
    }
    .top-bar::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
      animation: shimmer 8s infinite;
      pointer-events: none;
    }
    @keyframes shimmer {
      0% { left: -100%; }
      20% { left: 200%; }
      100% { left: 200%; }
    }
    .top-bar i { margin-right: 5px; color: #ffd700; }
    .top-bar .fa-phone { animation: softPulse 2s infinite; }
    @keyframes softPulse {
      0%,100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.8; transform: scale(1.05); }
    }
    .top-bar select {
      padding: clamp(6px, 1.5vh, 8px) clamp(15px, 4vw, 20px);
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      border-radius: 30px;
      cursor: pointer;
      font-size: clamp(12px, 3.5vw, 14px);
      backdrop-filter: blur(5px);
      min-width: clamp(120px, 30vw, 140px);
      appearance: none;
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffd700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 10px center;
      background-size: 16px;
    }
    .top-bar select:hover {
      background: rgba(255,215,0,0.15);
      border-color: #ffd700;
      box-shadow: 0 0 20px rgba(255,215,0,0.3);
      transform: translateY(-2px);
    }
    @media (max-width: 600px) {
      .top-bar { flex-direction: column; text-align: center; }
      .top-left { justify-content: center; flex-wrap: wrap; }
    }

    /* CTA button style for LOGIN/SIGNUP link */
    .navbar nav a.cta-link {
      background: linear-gradient(145deg, #ffd700, #ffb800);
      color: #0f2b46;
      padding: 8px 20px;
      border-radius: 50px;
      font-weight: 700;
      border: 2px solid transparent;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .navbar nav a.cta-link::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: left 0.6s;
    }

    .navbar nav a.cta-link:hover::before {
      left: 100%;
    }

    .navbar nav a.cta-link:hover {
      background: linear-gradient(145deg, #ffb800, #ffd700);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
      border-color: #00ffff;
    }

    .navbar nav a.cta-link:after {
      display: none;
    }

    .navbar nav a.cta-link i {
      margin-right: 5px;
      transition: transform 0.3s;
    }

    .navbar nav a.cta-link:hover i {
      transform: rotate(90deg);
    }

    .navbar.scrolled nav a.cta-link {
      background: linear-gradient(145deg, #ffd700, #ffaa00);
      color: #0a1a2f;
      box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
    }

    /* ===== NAVBAR (fully responsive, slide-down) ===== */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: clamp(10px, 2.5vh, 15px) 5%;
      background: #ffffff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.03);
      transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
      z-index: 999;
      position: relative;
    }
    .navbar.scrolled {
      background: rgba(10,25,45,0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      border-bottom: 1px solid rgba(255,215,0,0.2);
    }
    .navbar.scrolled nav a { color: #ffffff; }
    .navbar.scrolled .logo img { filter: brightness(0) invert(1); }
    .navbar.sticky {
      position: fixed;
      top: 0;
      width: 100%;
    }
    .navbar nav {
      display: flex;
      gap: clamp(15px, 3vw, 30px);
    }
    .navbar nav a {
      text-decoration: none;
      color: #1e293b;
      font-weight: 500;
      font-size: clamp(12px, 3vw, 14px);
      transition: 0.3s;
      position: relative;
    }
    .navbar nav a:after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #ffd700;
      transition: 0.3s;
    }
    .navbar.scrolled nav a:after { background: #ffd700; }
    .navbar nav a:hover:after,
    .navbar nav a.active:after { width: 100%; }
    .navbar nav a.active {
      color: #0f2b46;
      font-weight: 600;
    }
    .navbar.scrolled nav a.active { color: #ffd700; }
    .logo img {
      height: clamp(30px, 10vw, 60px);
      transition: all 0.3s ease;
    }
    .menu-toggle {
      display: none;
      font-size: clamp(22px, 6vw, 28px);
      cursor: pointer;
      color: #0f2b46;
      z-index: 1002;
      transition: transform 0.3s ease;
    }
    .navbar.scrolled .menu-toggle { color: #ffd700; }
    .menu-toggle:hover { transform: scale(1.1); }

    @media (max-width: 992px) {
      .navbar { flex-wrap: wrap; }
      .navbar nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0a1a2f;
        flex-direction: column;
        padding: 0 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        z-index: 998;
        transition: max-height 0.4s ease, padding 0.3s ease;
        max-height: 0;
        overflow: hidden;
        gap: 0;
        display: flex !important;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
      }
      .navbar nav.active {
        max-height: 550px;
        padding: 15px 20px 25px;
        border-top: 1px solid rgba(255,215,0,0.3);
      }
      .navbar nav a {
        color: #ffffff;
        font-size: 16px;
        padding: 14px 15px;
        width: 100%;
        text-align: left;
        border-radius: 8px;
        background: transparent;
        border: 1px solid transparent;
        margin: 2px 0;
      }
      .navbar nav a:hover {
        background: #ffd700;
        color: #0a1a2f;
        transform: translateX(5px);
      }
      .navbar nav a.active {
        background: #ffd700;
        color: #0a1a2f;
      }
      .navbar nav a:after { display: none; }
      .menu-toggle { display: block; }
      .menu-toggle.active i { transform: rotate(90deg); }
      .menu-toggle.active i::before { content: "\f00d"; }
      body.menu-open { overflow: hidden; }
    }

    /* ===== MAIN – STUNNING CONNECT WALLET SECTION ===== */
    .wallet-universe {
      position: relative;
      min-height: calc(100vh - 250px);
      background: radial-gradient(ellipse at 30% 40%, #1a2f4e, #030712 80%);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 3rem 5%;
      overflow: hidden;
    }

    /* floating orbs – cosmic */
    .cosmic-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      opacity: 0.5;
      z-index: 1;
      animation: orbFloat 20s infinite alternate;
    }
    .orb-a {
      top: 5%;
      left: -5%;
      width: min(600px, 70vw);
      height: min(600px, 70vw);
      background: radial-gradient(circle, #ffd700, transparent 80%);
    }
    .orb-b {
      bottom: 0;
      right: -5%;
      width: min(700px, 80vw);
      height: min(700px, 80vw);
      background: radial-gradient(circle, cyan, transparent 80%);
      animation-delay: -5s;
    }
    .orb-c {
      top: 40%;
      left: 30%;
      width: min(400px, 50vw);
      height: min(400px, 50vw);
      background: radial-gradient(circle, #b026ff, transparent 80%);
      animation-duration: 30s;
    }

    @keyframes orbFloat {
      0% { transform: translate(0, 0) scale(1); }
      100% { transform: translate(5%, 10%) scale(1.3); }
    }

    /* main glass card */
    .wallet-citadel {
      position: relative;
      z-index: 20;
      width: 100%;
      max-width: 1300px;
      background: rgba(8, 20, 40, 0.4);
      backdrop-filter: blur(20px) saturate(200%);
      -webkit-backdrop-filter: blur(20px) saturate(200%);
      border: 1px solid rgba(255, 215, 0, 0.25);
      border-radius: 4rem;
      padding: clamp(2rem, 6vh, 4rem) clamp(2rem, 5vw, 4rem);
      box-shadow: 0 50px 100px -30px black, 0 0 0 1px rgba(255,215,0,0.2) inset, 0 0 80px rgba(0,255,255,0.3);
      transition: box-shadow 0.5s;
    }
    .wallet-citadel:hover {
      box-shadow: 0 60px 120px -30px #000, 0 0 0 2px #ffd700 inset, 0 0 100px cyan;
    }

    /* header */
    .wallet-header {
      text-align: center;
      margin-bottom: clamp(2.5rem, 8vh, 4rem);
    }
    .wallet-header h1 {
      font-family: 'Clash Display', sans-serif;
      font-size: clamp(2.5rem, 8vw, 5rem);
      font-weight: 700;
      background: linear-gradient(135deg, #ffd700, #00ffff, #ffd700);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      line-height: 1.1;
      text-transform: uppercase;
      letter-spacing: -0.02em;
      filter: drop-shadow(0 0 30px rgba(255,215,0,0.5));
    }
    .wallet-header p {
      font-size: clamp(1rem, 3vw, 1.4rem);
      color: rgba(255,255,255,0.7);
      max-width: 700px;
      margin: 1.5rem auto 0;
      border-bottom: 2px dashed rgba(0,255,255,0.3);
      padding-bottom: 1.5rem;
    }

    /* wallet grid – madly stunning cards */
    .wallet-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: clamp(1.2rem, 3vw, 2rem);
      margin: 3rem 0 4rem;
    }

    @media (max-width: 1100px) { .wallet-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) { .wallet-grid { grid-template-columns: 1fr; } }

    .wallet-card {
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,215,0,0.2);
      border-radius: 3rem;
      padding: clamp(1.8rem, 4vh, 2.5rem) 1.5rem;
      text-align: center;
      backdrop-filter: blur(10px);
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.2rem;
    }
    .wallet-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 0%, rgba(255,215,0,0.3), transparent 70%);
      opacity: 0;
      transition: opacity 0.5s;
    }
    .wallet-card:hover::before {
      opacity: 1;
    }
    .wallet-card:hover {
      transform: translateY(-12px) scale(1.02);
      border-color: #ffd700;
      box-shadow: 0 30px 50px -20px gold, 0 0 0 2px rgba(0,255,255,0.5) inset, 0 0 60px cyan;
    }

    .wallet-icon {
      width: clamp(70px, 15vw, 100px);
      height: clamp(70px, 15vw, 100px);
      background: linear-gradient(145deg, #0f2b46, #1a3f62);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: clamp(2.5rem, 6vw, 3.5rem);
      color: #ffd700;
      border: 3px solid rgba(255,215,0,0.5);
      transition: 0.5s;
      position: relative;
      z-index: 5;
    }
    .wallet-card:hover .wallet-icon {
      transform: rotateY(360deg);
      background: #ffd700;
      color: #0f2b46;
      border-color: cyan;
      box-shadow: 0 0 50px gold;
    }

    .wallet-name {
      font-family: 'Clash Display', sans-serif;
      font-size: clamp(1.3rem, 4vw, 1.8rem);
      font-weight: 600;
      background: linear-gradient(145deg, #fff, #ffd700);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: 0.5px;
    }

    .wallet-desc {
      font-size: clamp(0.8rem, 2.2vw, 0.95rem);
      color: rgba(255,255,255,0.5);
      margin-top: 0.2rem;
    }

    .connect-badge {
      background: rgba(0,255,255,0.1);
      border: 1px solid cyan;
      border-radius: 60px;
      padding: 0.5rem 1.5rem;
      font-size: 0.9rem;
      color: cyan;
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      margin-top: 0.8rem;
      transition: 0.3s;
      font-weight: 500;
    }
    .wallet-card:hover .connect-badge {
      background: cyan;
      color: #0a1a2f;
      box-shadow: 0 0 30px cyan;
    }

    /* featured / new wallet highlight */
    .wallet-card.featured {
      background: linear-gradient(145deg, rgba(255,215,0,0.1), rgba(0,255,255,0.05));
      border: 2px solid #ffd700;
      box-shadow: 0 0 60px rgba(255,215,0,0.3);
    }
    .wallet-card.featured .wallet-icon {
      border-color: cyan;
    }
    /* CHATBOT - FULLY RESPONSIVE */
    .chatbot-container {
      position: fixed;
      bottom: clamp(20px, 5vh, 40px);
      right: clamp(10px, 3vw, 20px);
      z-index: 1000;
    }

    .chatbot-avatar {
      width: clamp(50px, 12vw, 70px);
      height: clamp(50px, 12vw, 70px);
      border-radius: 50%;
      background: linear-gradient(135deg, #0f2b46, #1a3f62);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      border: 3px solid #ffd700;
      transition: all 0.3s ease;
      animation: avatarPulse 2s infinite;
      overflow: hidden;
      position: relative;
    }

    .chatbot-avatar i {
      font-size: clamp(25px, 6vw, 35px);
      color: #ffd700;
    }

    .chatbot-avatar:hover {
      transform: scale(1.1) rotate(5deg);
      border-color: #00ffff;
      box-shadow: 0 15px 40px rgba(255,215,0,0.4);
    }

    @keyframes avatarPulse {
      0%,100% { box-shadow: 0 5px 20px rgba(255,215,0,0.3); }
      50% { box-shadow: 0 5px 30px rgba(255,215,0,0.6), 0 0 20px #00ffff; }
    }

    .chatbot-window {
      position: absolute;
      bottom: 60px;
      right: 0;
      width: min(350px, 90vw);
      height: min(450px, 70vh);
      background: rgba(15,43,70,0.95);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.2);
      box-shadow: 0 20px 40px rgba(0,0,0,0.4);
      display: none;
      flex-direction: column;
      overflow: hidden;
      z-index: 1001;
      transform-origin: bottom right;
      animation: chatOpen 0.3s ease;
    }

    @keyframes chatOpen {
      from { opacity: 0; transform: scale(0.8); }
      to { opacity: 1; transform: scale(1); }
    }

    .chatbot-window.active { display: flex; }

    .chatbot-header {
      background: linear-gradient(135deg, #ffd700, #ffaa00);
      padding: clamp(15px, 3vh, 20px);
      color: #0f2b46;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .chatbot-header h3 {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: clamp(16px, 4vw, 18px);
    }

    .chatbot-header i { font-size: clamp(18px, 4.5vw, 20px); }

    .close-chat {
      background: none;
      border: none;
      color: #0f2b46;
      font-size: clamp(18px, 4.5vw, 20px);
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .close-chat:hover { transform: rotate(90deg); }

    .chat-messages {
      flex: 1;
      padding: 20px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .message {
      max-width: 80%;
      padding: 12px 15px;
      border-radius: 15px;
      font-size: clamp(12px, 3.5vw, 14px);
      line-height: 1.5;
      animation: messageSlide 0.3s ease;
    }

    @keyframes messageSlide {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .message.bot {
      background: rgba(255,255,255,0.1);
      color: #fff;
      align-self: flex-start;
      border-bottom-left-radius: 5px;
      border: 1px solid rgba(255,215,0,0.2);
    }

    .message.user {
      background: #ffd700;
      color: #0f2b46;
      align-self: flex-end;
      border-bottom-right-radius: 5px;
    }

    .typing-indicator {
      display: flex;
      gap: 5px;
      padding: 12px 15px;
      background: rgba(255,255,255,0.1);
      border-radius: 15px;
      width: fit-content;
      border-bottom-left-radius: 5px;
    }

    .typing-indicator span {
      width: 8px;
      height: 8px;
      background: #ffd700;
      border-radius: 50%;
      animation: typing 1.4s infinite;
    }

    .typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
    .typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

    @keyframes typing {
      0%,60%,100% { transform: translateY(0); opacity: 0.5; }
      30% { transform: translateY(-10px); opacity: 1; }
    }

    .chat-input-area {
      padding: clamp(15px, 3vh, 20px);
      background: rgba(0,0,0,0.2);
      display: flex;
      gap: 10px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    .chat-input-area input {
      flex: 1;
      padding: 12px;
      border: none;
      border-radius: 25px;
      background: rgba(255,255,255,0.1);
      color: #fff;
      border: 1px solid rgba(255,215,0,0.3);
      transition: all 0.3s ease;
      min-width: 0;
    }

    .chat-input-area input:focus {
      outline: none;
      border-color: #ffd700;
      background: rgba(255,255,255,0.15);
    }

    .chat-input-area input::placeholder { color: rgba(255,255,255,0.5); }

    .chat-input-area button {
      width: clamp(40px, 10vw, 45px);
      height: clamp(40px, 10vw, 45px);
      border-radius: 50%;
      background: #ffd700;
      border: none;
      color: #0f2b46;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .chat-input-area button:hover {
      transform: scale(1.1) rotate(5deg);
      background: #fff;
    }

    /* SCROLL TO TOP BUTTON - FULLY RESPONSIVE */
    .scroll-to-top {
      position: fixed;
      bottom: clamp(80px, 15vh, 115px);
      right: clamp(10px, 3vw, 23px);
      width: clamp(45px, 12vw, 60px);
      height: clamp(45px, 12vw, 60px);
      border-radius: 50%;
      background: #0f2b46;
      color: #ffd700;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 998;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      border: none;
      box-shadow: 0 5px 20px rgba(0,0,0,0.2);
      font-weight: bold;
      font-size: clamp(12px, 3vw, 14px);
    }

    .scroll-to-top.visible { opacity: 1; visibility: visible; }

    .scroll-to-top:hover {
      transform: scale(1.1) translateY(-5px);
      box-shadow: 0 10px 30px rgba(255,215,0,0.4);
      background: #ffd700;
      color: #0f2b46;
    }

    .scroll-to-top .progress-ring {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .scroll-to-top svg {
      transform: rotate(-90deg);
      width: 100%;
      height: 100%;
    }

    .scroll-to-top circle {
      fill: none;
      stroke: #ffd700;
      stroke-width: 4;
      stroke-linecap: round;
      stroke-dasharray: 176;
      stroke-dashoffset: 176;
      transition: stroke-dashoffset 0.3s ease;
    }

    .scroll-to-top:hover circle { stroke: #0f2b46; }

    .scroll-to-top .percentage {
      position: relative;
      z-index: 1;
      font-size: clamp(12px, 3vw, 14px);
      font-weight: bold;
    }


    /* new tag */
    .new-tag {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: #ffd700;
      color: #0a1a2f;
      font-weight: 700;
      font-size: 0.8rem;
      padding: 0.3rem 1rem;
      border-radius: 60px;
      letter-spacing: 0.5px;
      box-shadow: 0 0 20px gold;
      z-index: 10;
    }

    /* bottom actions */
    .wallet-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: clamp(1.5rem, 5vw, 3rem);
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,215,0,0.3);
    }

    .btn-cosmic {
      background: transparent;
      border: 2px solid #ffd700;
      color: #ffd700;
      font-size: clamp(1rem, 3vw, 1.2rem);
      font-weight: 600;
      padding: clamp(0.8rem, 2.5vh, 1.2rem) clamp(1.8rem, 5vw, 2.8rem);
      border-radius: 60px;
      cursor: pointer;
      transition: all 0.4s;
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(8px);
    }
    .btn-cosmic::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.6s;
    }
    .btn-cosmic:hover::before {
      left: 100%;
    }
    .btn-cosmic:hover {
      background: #ffd700;
      color: #0a1a2f;
      transform: scale(1.08);
      box-shadow: 0 0 50px gold;
      border-color: cyan;
    }

    .btn-cosmic i {
      transition: transform 0.3s;
    }
    .btn-cosmic:hover i {
      transform: translateX(8px) rotate(10deg);
    }

    .info-text {
      color: rgba(255,255,255,0.5);
      font-size: clamp(0.8rem, 2.5vw, 1rem);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .info-text i {
      color: cyan;
    }

    /* glow animation */
    .glow-pulse {
      animation: pulseGlow 3s infinite;
    }
    @keyframes pulseGlow {
      0% { text-shadow: 0 0 10px gold, 0 0 20px cyan; }
      50% { text-shadow: 0 0 30px gold, 0 0 60px cyan; }
      100% { text-shadow: 0 0 10px gold, 0 0 20px cyan; }
    }

    /* ===== FOOTER (fully responsive, same as index) ===== */
    .footer {
      background: #0a1a2f;
      color: #ffffff;
      padding: clamp(50px, 10vh, 80px) 5% 30px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
      gap: clamp(20px, 5vw, 40px);
      max-width: 1200px;
      margin: 0 auto 60px;
    }
    @media (max-width: 1200px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
    .footer-logo img {
      height: clamp(40px, 10vw, 60px);
      margin-bottom: 20px;
      filter: brightness(0) invert(1);
    }
    .footer-about p {
      color: #94a3b8;
      line-height: 1.8;
      margin-bottom: 20px;
      font-size: clamp(14px, 3.5vw, 16px);
    }
    .social-links {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }
    .social-links a {
      width: clamp(35px, 8vw, 40px);
      height: clamp(35px, 8vw, 40px);
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      transition: 0.3s;
      font-size: clamp(16px, 4vw, 18px);
    }
    .social-links a:hover {
      background: #ffd700;
      color: #0a1a2f;
      transform: translateY(-3px);
    }
    .footer h4 {
      font-size: clamp(16px, 4vw, 18px);
      margin-bottom: 25px;
      position: relative;
    }
    .footer h4:after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 40px;
      height: 2px;
      background: #ffd700;
    }
    .footer-links {
      list-style: none;
    }
    .footer-links li {
      margin-bottom: 12px;
    }
    .footer-links a {
      color: #94a3b8;
      text-decoration: none;
      transition: 0.3s;
      font-size: clamp(14px, 3.5vw, 16px);
    }
    .footer-links a:hover {
      color: #ffd700;
      padding-left: 5px;
    }
    .newsletter p {
      color: #94a3b8;
      margin-bottom: 20px;
      font-size: clamp(14px, 3.5vw, 16px);
    }
    .newsletter-form {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .newsletter-form input {
      flex: 1 1 150px;
      padding: clamp(10px, 2.5vh, 12px);
      border: none;
      border-radius: 30px;
      background: rgba(255,255,255,0.1);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.2);
      min-width: 150px;
    }
    .newsletter-form button {
      width: clamp(45px, 10vw, 50px);
      height: clamp(45px, 10vw, 50px);
      background: #ffd700;
      border: none;
      border-radius: 50%;
      color: #0a1a2f;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .newsletter-form button:hover {
      background: #fff;
      transform: scale(1.1) rotate(5deg);
    }
    .footer-bottom {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255,255,255,0.1);
      color: #94a3b8;
      font-size: clamp(12px, 3vw, 14px);
    }
    .risk-disclaimer {
      max-width: 1200px;
      margin: 30px auto 0;
      padding: 20px;
      background: rgba(255,255,255,0.05);
      border-radius: 10px;
      font-size: clamp(11px, 3vw, 12px);
      color: #94a3b8;
    }