.maintenance-section {
      position: relative;
      width: 100%;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 6rem 2rem;
      background: linear-gradient(135deg, #0a2342 0%, #1a1f35 50%, #0f1923 100%);
      overflow: hidden;
    }

    .background-effects {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .grid-pattern {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
      background-size: 50px 50px;
      animation: gridMove 20s linear infinite;
      opacity: 0.3;
    }

    @keyframes gridMove {
      0% { transform: translate(0, 0); }
      100% { transform: translate(50px, 50px); }
    }

    .floating-orbs {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
    }

    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      animation: float-orb 20s ease-in-out infinite;
    }

    .orb-1 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
      top: -10%;
      right: -10%;
      animation-delay: 0s;
    }

    .orb-2 {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
      bottom: -10%;
      left: -10%;
      animation-delay: 5s;
    }

    .orb-3 {
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation-delay: 10s;
    }

    @keyframes float-orb {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(50px, -50px) scale(1.1); }
      66% { transform: translate(-50px, 50px) scale(0.9); }
    }

    .content-container {
      position: relative;
      z-index: 2;
      max-width: 900px;
      width: 100%;
      text-align: center;
    }

    .logo-container {
      margin-bottom: 3rem;
      opacity: 0;
      animation: fadeIn 1s ease forwards;
    }

    @keyframes fadeIn {
      to { opacity: 1; }
    }

    .logo {
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 800;
      background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.02em;
    }

    .maintenance-icon {
      width: 120px;
      height: 120px;
      margin: 0 auto 2rem;
      opacity: 0;
      transform: scale(0.8);
      animation: scaleIn 1s ease forwards 0.3s;
    }

    @keyframes scaleIn {
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .icon-wrapper {
      width: 120px;
      height: 120px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
      border: 2px solid rgba(59, 130, 246, 0.3);
      border-radius: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: pulse-border 2s ease-in-out infinite;
    }

    @keyframes pulse-border {
      0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
      }
      50% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.6), 0 0 60px rgba(139, 92, 246, 0.4);
      }
    }

    .icon-wrapper svg {
      width: 60px;
      height: 60px;
      stroke: #3b82f6;
      animation: rotate-gear 4s linear infinite;
    }

    @keyframes rotate-gear {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .main-title {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 800;
      margin-bottom: 1.5rem;
      line-height: 1.1;
      opacity: 0;
      transform: translateY(30px);
      animation: slideUp 1s ease forwards 0.5s;
      color: white;
    }

    @keyframes slideUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .main-title span {
      background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .subtitle {
      font-size: clamp(1.125rem, 2vw, 1.375rem);
      line-height: 1.7;
      color: #cbd5e1;
      margin-bottom: 3rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0;
      transform: translateY(30px);
      animation: slideUp 1s ease forwards 0.7s;
    }

    .status-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem 2rem;
      background: rgba(34, 197, 94, 0.1);
      border: 1px solid rgba(34, 197, 94, 0.3);
      border-radius: 50px;
      margin-bottom: 3rem;
      backdrop-filter: blur(10px);
      opacity: 0;
      animation: slideUp 1s ease forwards 0.9s;
    }

    .status-dot {
      width: 12px;
      height: 12px;
      background: #22c55e;
      border-radius: 50%;
      animation: pulse-dot 2s ease-in-out infinite;
    }

    @keyframes pulse-dot {
      0%, 100% {
        opacity: 1;
        transform: scale(1);
      }
      50% {
        opacity: 0.5;
        transform: scale(1.2);
      }
    }

    .status-text {
      color: #22c55e;
      font-weight: 600;
      font-size: 1rem;
    }

    .progress-container {
      max-width: 600px;
      margin: 0 auto 3rem;
      opacity: 0;
      animation: slideUp 1s ease forwards 1.1s;
    }

    .progress-label {
      display: flex;
      justify-content: space-between;
      margin-bottom: 1rem;
      color: #cbd5e1;
      font-size: 0.95rem;
    }

    .progress-bar {
      width: 100%;
      height: 8px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      overflow: hidden;
      position: relative;
    }

    .progress-fill {
      height: 100%;
      background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
      border-radius: 10px;
      animation: progress-animation 3s ease-in-out infinite;
      position: relative;
    }

    @keyframes progress-animation {
      0% { width: 0%; }
      50% { width: 75%; }
      100% { width: 0%; }
    }

    .progress-fill::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 30%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4));
      animation: shimmer 1.5s ease-in-out infinite;
    }

    @keyframes shimmer {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    .info-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 3rem;
      opacity: 0;
      animation: slideUp 1s ease forwards 1.3s;
    }

    .info-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 1.5rem;
      transition: all 0.3s ease;
    }

    .info-card:hover {
      transform: translateY(-5px);
      border-color: rgba(59, 130, 246, 0.3);
      box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
    }

    .info-card-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .info-card-icon svg {
      width: 24px;
      height: 24px;
      stroke: white;
    }

    .info-card-title {
      font-size: 0.875rem;
      color: #94a3b8;
      margin-bottom: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .info-card-value {
      font-size: 1.25rem;
      font-weight: 700;
      color: #fff;
    }

    .cta-section {
      opacity: 0;
      animation: slideUp 1s ease forwards 1.5s;
    }

    .notify-button {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1.25rem 2.5rem;
      background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
      color: white;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    }

    .notify-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
    }

    .notify-button svg {
      width: 20px;
      height: 20px;
      transition: transform 0.3s ease;
    }

    .notify-button:hover svg {
      transform: translateX(5px);
    }

    @media (max-width: 768px) {
      .maintenance-section {
        padding: 4rem 1.5rem;
      }

      .maintenance-icon {
        width: 100px;
        height: 100px;
      }

      .icon-wrapper {
        width: 100px;
        height: 100px;
      }

      .icon-wrapper svg {
        width: 50px;
        height: 50px;
      }

      .info-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .notify-button {
        width: 100%;
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      .maintenance-section {
        padding: 3rem 1rem;
      }

      .status-badge {
        padding: 0.75rem 1.5rem;
      }

      .info-card {
        padding: 1.25rem;
      }
    }