    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    @font-face {
    font-family: 'LemonMilk';
    src: url('fonts/lemon_milk/LEMONMILK-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    }
    @font-face {
    font-family: 'LemonMilk';
    src: url('fonts/lemon_milk/LEMONMILK-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    }
    @font-face {
    font-family: 'LemonMilk';
    src: url('fonts/lemon_milk/LEMONMILK-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    }
    @font-face {
    font-family: 'LemonMilk';
    src: url('fonts/lemon_milk/LEMONMILK-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    }

    :root {
      --deep:    #020b16;
      --navy:    #061829;
      --blue:    #0d3d6e;
      --mid:     #1a6aab;
      --bright:  #4fc3f7;
      --glow:    #7dd9ff;
      --white:   #ffffff;
      --muted:   #8ab4cc;
      --accent:  #c8e8ff;
    }

    html, body {
      height: 100%;
       font-family: 'LemonMilk', sans-serif;
      background: var(--deep);
      color: var(--white);
      overflow-x: hidden;
    }

    /* ── BACKGROUND ── */
    .bg {
      position: fixed; inset: 0; z-index: 0;
    }
    .bg-img {
      position: absolute; inset: 0;
      /* ✏️  CAMBIA ESTA RUTA POR TU IMAGEN DE FONDO */
      background: url('/img/bg.jpeg') center center / cover no-repeat;
      opacity: 0.18;
    }
    .bg-gradient {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 100%, #0d3d6e55 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 20%, #1a6aab22 0%, transparent 60%),
        linear-gradient(160deg, #020b16 0%, #061829 40%, #0a2540 70%, #020b16 100%);
    }
    /* Water shimmer lines */
    .bg-lines {
      position: absolute; inset: 0; overflow: hidden; opacity: 0.07;
    }
    .bg-lines::before, .bg-lines::after {
      content: '';
      position: absolute;
      left: -50%; width: 200%; height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--bright) 50%, transparent 100%);
      animation: shimmer 6s ease-in-out infinite;
    }
    .bg-lines::before { top: 38%; animation-delay: 0s; }
    .bg-lines::after  { top: 62%; animation-delay: 3s; }
    @keyframes shimmer {
      0%, 100% { transform: translateX(-10%) scaleY(1); opacity: 0.4; }
      50%       { transform: translateX( 10%) scaleY(2); opacity: 1;   }
    }

    /* ── PARTICLES ── */
    #particles { position: fixed; inset: 0; z-index: 1; pointer-events: none; }

    /* ── LAYOUT ── */
    .page {
      position: relative; z-index: 2;
      min-height: 100vh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      padding: 40px 24px;
      text-align: center;
    }

    /* ── TOP BORDER GLOW ── */
    .top-bar {
      position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 10;
      background: linear-gradient(90deg, transparent, var(--bright), var(--glow), var(--bright), transparent);
      animation: topGlow 4s ease-in-out infinite;
    }
    @keyframes topGlow {
      0%, 100% { opacity: 0.6; }
      50%       { opacity: 1; box-shadow: 0 0 20px var(--bright); }
    }

    /* ── LOGO AREA ── */
    .logo-wrap {
      margin-bottom: 48px;
      animation: fadeDown 1s ease both;
    }
    .logo-wrap img {
      /* ✏️  CAMBIA ESTA RUTA POR TU LOGO */
      width: 160px; height: auto;
      filter: drop-shadow(0 0 24px #4fc3f766);
    }
    /* Fallback si no hay logo */
    .logo-fallback {
      display: flex; flex-direction: column; align-items: center; gap: 6px;
    }
    .logo-circle {
      width: 100px; height: 100px;
      border: 2px solid var(--bright);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 0 30px #4fc3f740, inset 0 0 20px #4fc3f710;
      animation: pulse 3s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 30px #4fc3f740, inset 0 0 20px #4fc3f710; }
      50%       { box-shadow: 0 0 50px #4fc3f780, inset 0 0 30px #4fc3f730; }
    }
    .logo-gv {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700; font-size: 28px;
      color: var(--bright);
      letter-spacing: 4px;
    }
    .logo-sub {
      font-size: 9px; font-weight: 400; letter-spacing: 5px;
      color: var(--muted); text-transform: uppercase;
      margin-top: 8px;
    }

    /* ── DIVIDER ── */
    .divider {
      width: 80px; height: 1px;
      background: linear-gradient(90deg, transparent, var(--bright), transparent);
      margin: 0 auto 40px;
      animation: fadeIn 1.4s ease both;
    }

    /* ── MAIN COPY ── */
    .eyebrow {
      font-size: 11px; font-weight: 600; letter-spacing: 6px;
      color: var(--bright); text-transform: uppercase;
      margin-bottom: 20px;
      animation: fadeDown 1.2s ease both;
    }
    .headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(42px, 8vw, 88px);
      font-weight: 300; line-height: 1.05;
      letter-spacing: -1px;
      color: var(--white);
      margin-bottom: 24px;
      animation: fadeDown 1.4s ease both;
    }
    .headline em {
      font-style: italic;
      color: var(--bright);
    }
    .subtext {
      font-size: clamp(13px, 2vw, 16px);
      font-weight: 200; letter-spacing: 1px;
      color: var(--muted); line-height: 1.8;
      max-width: 500px; margin: 0 auto 56px;
      animation: fadeIn 1.8s ease both;
    }

    /* ── COUNTDOWN ── */
    .countdown-label {
      font-family: 'LemonMilk', sans-serif;
      font-size: 10px; letter-spacing: 5px; font-weight: 600;
      color: var(--muted); text-transform: uppercase;
      margin-bottom: 20px;
      animation: fadeIn 2s ease both;
    }
    .countdown {
      display: flex; gap: clamp(12px, 3vw, 32px);
      justify-content: center; margin-bottom: 64px;
      animation: fadeIn 2.2s ease both;
    }
    .unit {
      display: flex; flex-direction: column; align-items: center; gap: 8px;
    }
    .unit-num {
      font-family: 'LemonMilk', sans-serif;
      font-size: clamp(36px, 6vw, 64px); font-weight: 300;
      line-height: 1;
      color: var(--white);
      min-width: clamp(60px, 8vw, 90px);
      padding: 16px 12px;
      border: 1px solid #1a6aab55;
      border-radius: 4px;
      background: linear-gradient(160deg, #0d3d6e22, #020b1644);
      backdrop-filter: blur(8px);
      position: relative; overflow: hidden;
    }
    .unit-num::after {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--bright)66, transparent);
    }
    .unit-label {
      font-size: 9px; letter-spacing: 3px; font-weight: 600;
      color: var(--muted); text-transform: uppercase;
    }
    .sep {
      font-family: 'Cormorant Garamond', serif;
      font-size: 48px; font-weight: 300; color: var(--blue);
      align-self: center; padding-bottom: 20px;
    }

    /* ── SOCIAL / CONTACT ── */
    .contact-line {
      display: flex; align-items: center; gap: 8px;
      font-size: 12px; letter-spacing: 2px; font-weight: 400;
      color: var(--muted); margin-bottom: 32px;
      animation: fadeIn 2.4s ease both;
    }
    .contact-line svg { color: var(--bright); flex-shrink: 0; }

    .socials {
      display: flex; gap: 20px; justify-content: center;
      animation: fadeIn 2.6s ease both;
    }
    .social-btn {
      width: 44px; height: 44px;
      border: 1px solid #1a6aab66;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--muted);
      text-decoration: none;
      transition: all 0.3s ease;
      backdrop-filter: blur(8px);
      background: #0d3d6e11;
    }
    .social-btn:hover {
      border-color: var(--bright);
      color: var(--bright);
      background: #4fc3f715;
      box-shadow: 0 0 20px #4fc3f730;
      transform: translateY(-2px);
    }

    /* ── FOOTER ── */
    .footer {
      position: fixed; bottom: 24px; left: 0; right: 0;
      text-align: center; z-index: 2;
      font-size: 10px; letter-spacing: 3px; font-weight: 400;
      color: #1a6aab88; text-transform: uppercase;
      animation: fadeIn 3s ease both;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 480px) {
      .sep { display: none; }
      .countdown { gap: 8px; }
      .unit-num { min-width: 56px; padding: 12px 8px; }
      .contact-line { flex-direction: column; text-align: center; gap: 4px; }
    }
