 :root {
     --primary-bg: #0a192f;
     --gradient-bg: #112240;
     --text-main: #f8f9fa;
     --text-muted: #a8b2d1;
     --accent-gold: #d4af37;
     --border-color: rgba(255, 255, 255, 0.1);
 }

 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 body {
     font-family: 'Inter', sans-serif;
     background-color: var(--primary-bg);
     color: var(--text-main);
     display: flex;
     flex-direction: column;
     min-height: 100vh;

     background-image:
         radial-gradient(circle at top right, var(--gradient-bg) 0%, transparent 50%),
         radial-gradient(circle at bottom left, var(--gradient-bg) 0%, transparent 50%);
     position: relative;
 }


 .bg-pattern {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     opacity: 0.04;
     z-index: 0;
     background-image:
         linear-gradient(var(--accent-gold) 1px, transparent 1px),
         linear-gradient(90deg, var(--accent-gold) 1px, transparent 1px);
     background-size: 60px 60px;
     pointer-events: none;
 }

 main {
     flex: 1;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
     padding: 2rem;
     z-index: 1;
 }

 .hero-content {
     max-width: 800px;
     animation: fadeIn 1s ease-out;
 }

 h1 {
     font-size: 3.5rem;
     font-weight: 700;
     margin-bottom: 0.5rem;
     letter-spacing: -1px;
     color: var(--text-main);
 }

 .tagline {
     font-size: 1.1rem;
     font-weight: 600;
     color: var(--accent-gold);
     text-transform: uppercase;
     letter-spacing: 2.5px;
     margin-bottom: 2.5rem;
 }

 .status-box {
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid var(--border-color);
     border-radius: 8px;
     padding: 2rem;
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     margin: 0 auto 2rem auto;
     max-width: 600px;
 }

 .status-box h2 {
     font-size: 1.5rem;
     font-weight: 400;
     margin-bottom: 1rem;
 }

 .status-box p {
     color: var(--text-muted);
     line-height: 1.6;
     font-size: 1rem;
 }

 footer {
     background: rgba(0, 0, 0, 0.25);
     border-top: 1px solid var(--border-color);
     padding: 3rem 2rem;
     z-index: 1;
 }

 .footer-container {
     max-width: 1000px;
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 2rem;
 }

 .footer-col {
     flex: 1;
     min-width: 250px;
 }

 .footer-col h3 {
     color: var(--accent-gold);
     font-size: 1.1rem;
     margin-bottom: 1.2rem;
     font-weight: 600;
 }

 .footer-col p,
 .footer-col a {
     color: var(--text-muted);
     font-size: 0.95rem;
     line-height: 1.6;
     margin-bottom: 0.5rem;
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .footer-col a:hover {
     color: var(--accent-gold);
     transition: color 0.3s ease;
 }

 .footer-bottom {
     text-align: center;
     padding-top: 2rem;
     margin-top: 2rem;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     color: var(--text-muted);
     font-size: 0.85rem;
 }


 .icon {
     width: 18px;
     height: 18px;
     fill: var(--accent-gold);
     flex-shrink: 0;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }


 @media (max-width: 768px) {
     h1 {
         font-size: 2.5rem;
     }

     .tagline {
         font-size: 0.9rem;
     }

     .footer-container {
         flex-direction: column;
         text-align: center;
     }

     .footer-col p,
     .footer-col a {
         justify-content: center;
     }
 }