:root {
      --font-size-title-lg: 2.2rem;  
      --font-size-title-md: 1.8rem;  
      --font-size-title-sm: 1.5rem;  
      
      --font-size-subtitle-lg: 1.1rem;  
      --font-size-subtitle-md: 1rem;   
      --font-size-subtitle-sm: 0.9rem;  
      
      --font-size-text-lg: 1rem;   
      --font-size-text-md: 0.9rem; 
      --font-size-text-sm: 0.8rem;  
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(135deg, #0f0c29, #24243e, #313264);
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      position: relative;
      width: 100vw;
      overflow-x: hidden;
      -webkit-tap-highlight-color: transparent;
      -webkit-touch-callout: none;
      padding: 20px; 
    }

    .particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      overflow: hidden;
    }

    .particle {
      position: absolute;
      width: 2px; 
      height: 2px; 
      background: rgba(255, 255, 255, 0.2); 
      border-radius: 50%;
      animation: float 6s infinite linear;
    }

    @keyframes float {
      0% {
        transform: translateX(-100px) rotate(0deg);
        opacity: 0;
      }
      10% {
        opacity: 1;
      }
      90% {
        opacity: 1;
      }
      100% {
        transform: translateX(calc(100vw + 100px)) rotate(360deg);
        opacity: 0;
      }
    }

    .container {
      max-width: 500px; 
      width: 100%;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: auto; 
      transition: all 0.3s ease;
    }

    .construction-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 16px;
      width: 100%;
      margin: 0 auto;
      padding: clamp(1rem, 4vw, 1.5rem) clamp(0.8rem, 3vw, 1.2rem);
      text-align: center;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); 
      transition: all 0.3s ease;
      position: relative;
    }

    .construction-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .icon-container {
      position: relative;
      display: inline-block;
      margin-bottom: 1.5rem;
    }

    .main-icon {
      font-size: 3rem;
      animation: pulse 2s infinite;
      display: inline-block;
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
    }

    .floating-icons {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .floating-icon {
      position: absolute;
      font-size: clamp(0.7rem, 2.5vw, 1rem);
      animation: orbit 8s infinite linear;
      opacity: 0.6;
    }

    .floating-icon:nth-child(1) {
      animation-delay: 0s;
      transform: rotate(0deg) translateX(clamp(30px, 8vw, 60px)) rotate(0deg);
    }

    .floating-icon:nth-child(2) {
      animation-delay: -2.67s;
      transform: rotate(120deg) translateX(clamp(30px, 8vw, 60px)) rotate(-120deg);
    }

    .floating-icon:nth-child(3) {
      animation-delay: -5.33s;
      transform: rotate(240deg) translateX(clamp(30px, 8vw, 60px)) rotate(-240deg);
    }

    @keyframes orbit {
      0% {
        transform: rotate(0deg) translateX(clamp(30px, 8vw, 60px)) rotate(0deg);
      }
      100% {
        transform: rotate(360deg) translateX(clamp(30px, 8vw, 60px)) rotate(-360deg);
      }
    }

    .title {
      font-size: clamp(var(--font-size-title-sm), 5vw, var(--font-size-title-lg));
      font-weight: 700;
      margin-bottom: 0.8rem;
      background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      word-break: break-word;
      hyphens: auto;
      line-height: 1.2;
    }

    .subtitle {
      font-size: clamp(var(--font-size-subtitle-sm), 3vw, var(--font-size-subtitle-lg));
      margin-bottom: 1rem;
      opacity: 0.9;
    }

    .brand {
      color: #4ecdc4;
      font-weight: 600;
    }

    .description {
      font-size: clamp(var(--font-size-text-sm), 2.5vw, var(--font-size-text-lg));
      line-height: 1.5;
      margin-bottom: 1.5rem;
      opacity: 0.8;
    }

    .progress-section {
      margin-bottom: 1.5rem;
    }

    .progress-label {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.5rem;
      font-size: 0.85rem; 
      opacity: 0.9;
    }

    .progress-container {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      height: 8px;
      overflow: hidden;
    }

    .progress-bar {
      height: 100%;
      background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
      width: 72%;
      border-radius: 8px;
      transition: width 0.5s ease;
      animation: shimmer 2s infinite;
    }

    @keyframes shimmer {
      0% {
        background-position: -200px 0;
      }
      100% {
        background-position: 200px 0;
      }
    }

    .status-badges {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem; 
      margin-bottom: 1.5rem; 
    }

    .badge {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 16px;
      padding: 0.4rem 0.8rem;
      font-size: 0.75rem; 
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }

    .badge.active {
      background: rgba(76, 175, 80, 0.2);
      border-color: rgba(76, 175, 80, 0.4);
      color: #81c784;
    }

    .badge:hover {
      transform: translateY(-2px);
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    }

    .footer-text {
      font-size: 0.8rem; 
      opacity: 0.7;
      font-style: italic;
    }

    @media (max-width: 360px) {
      body {
        padding: 15px; 
      }
      
      .title {
        font-size: 1.4rem; 
      }
      
      .subtitle {
        font-size: 0.85rem; 
      }
      
      .description {
        font-size: 0.75rem; 
        margin-bottom: 1.2rem;
      }
      
      .status-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
      }

      .badge {
        width: 100%;
        text-align: center;
      }
    }

    @media (max-height: 700px) { 
      body {
        align-items: flex-start; 
        padding-top: 30px;
        padding-bottom: 30px;
      }
      
      .container {
        min-height: auto;
      }
      
      .construction-card {
        margin: 0 auto;
      }
      
      .icon-container {
        margin-bottom: 1rem;
      }
      
      .description {
        margin-bottom: 1rem;
      }

      .progress-section {
        margin-bottom: 1rem;
      }

      .status-badges {
        margin-bottom: 1rem;
      }
    }