    :root {
      --sand: #E7E3D4;
      --deep-blue: #1A3E72;
      --sky-blue: #88B7D6;
      --earth: #8C7A6D;
      --warm-white: #F9F7F3;
      --gaudi-green: #4A8B6E;
      --gaudi-orange: #D97E4A;
      --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    }
    
    body {
      font-family: 'Roboto', sans-serif;
      color: var(--deep-blue);
      background-color: var(--warm-white);
      margin: 0;
      padding: 0;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
    
    /* Header Coherente con el Diseño */
    .ludium-header {
      background-color: white;
      padding: 1.5rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 15px rgba(26, 62, 114, 0.05);
    }
    
    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--deep-blue);
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    
    /* Contenido Principal - Bajo Desarrollo */
    .development-container {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 4rem 2rem;
      background: linear-gradient(135deg, var(--warm-white) 0%, var(--sand) 100%);
    }
    
    .construction-icon {
      width: 120px;
      height: 120px;
      margin-bottom: 2rem;
      animation: pulse 2s infinite ease-in-out;
    }
    
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }
    
    .development-title {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      color: var(--deep-blue);
      margin-bottom: 1rem;
    }
    
    .development-subtitle {
      font-size: 1.2rem;
      color: var(--earth);
      max-width: 600px;
      margin-bottom: 2rem;
      line-height: 1.6;
    }
    
    .progress-container {
      width: 100%;
      max-width: 400px;
      background: rgba(255, 255, 255, 0.8);
      border-radius: 25px;
      padding: 3px;
      margin: 2rem 0;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .progress-bar {
      height: 20px;
      background: linear-gradient(90deg, var(--gaudi-green), var(--gaudi-orange));
      border-radius: 20px;
      width: 65%;
      animation: progressAnimation 3s infinite alternate;
    }
    
    @keyframes progressAnimation {
      0% { width: 65%; }
      100% { width: 70%; }
    }
    
    .countdown {
      display: flex;
      gap: 1.5rem;
      margin: 2rem 0;
    }
    
    .countdown-item {
      background: white;
      padding: 1rem;
      border-radius: 12px;
      min-width: 80px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }
    
    .countdown-number {
      font-size: 2rem;
      font-weight: 700;
      color: var(--gaudi-orange);
      font-family: 'Playfair Display', serif;
    }
    
    .countdown-label {
      font-size: 0.9rem;
      color: var(--earth);
      text-transform: uppercase;
    }
    
    .newsletter-form {
      max-width: 400px;
      width: 100%;
      margin-top: 2rem;
    }
    
    .form-group {
      margin-bottom: 1rem;
    }
    
    input[type="email"] {
      width: 100%;
      padding: 1rem;
      border: 2px solid var(--sand);
      border-radius: 50px;
      font-size: 1rem;
      outline: none;
      transition: var(--transition);
    }
    
    input[type="email"]:focus {
      border-color: var(--gaudi-green);
      box-shadow: 0 0 0 3px rgba(74, 139, 110, 0.1);
    }
    
    .btn {
      display: inline-block;
      padding: 1rem 2rem;
      border-radius: 50px;
      font-weight: 500;
      text-decoration: none;
      transition: var(--transition);
      border: none;
      cursor: pointer;
      font-size: 1rem;
    }
    
    .btn-primary {
      background-color: var(--gaudi-orange);
      color: white;
    }
    
    .btn-primary:hover {
      background-color: #c86d3a;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(217, 126, 74, 0.4);
    }
    
    /* Footer */
    .ludium-footer {
      background-color: var(--deep-blue);
      color: white;
      padding: 2rem 5%;
      text-align: center;
    }
    
    .social-links {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin: 1rem 0;
    }
    
    .social-links a {
      color: white;
      text-decoration: none;
      padding: 0.5rem;
      transition: var(--transition);
    }
    
    .social-links a:hover {
      color: var(--sky-blue);
    }