 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 body {
     min-height: 100vh;
     overflow-x: hidden;
     background: #000;
     color: #fff;
     position: relative;
     display: flex;
     flex-direction: column;
     padding-bottom: 60px;
 }

 /* Animated Background */
 .background {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, #000000, #1a1a1a, #000000);
     z-index: -2;
     overflow: hidden;
 }

 .particles {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
 }

 .particle {
     position: absolute;
     background: rgba(212, 175, 55, 0.6);
     border-radius: 50%;
     animation: float 15s infinite linear;
     opacity: 0;
 }

 /* Logo Styling */
 .logo-container {
     padding: 0px 0 10px;
     text-align: center;
     position: relative;
     z-index: 2;
 }

 .logo {
     display: inline-block;
 }

  .logo img{
    max-width: 300px;
  }

 .logo::after {
     content: "";
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 80%;
     height: 3px;
     background: linear-gradient(90deg, transparent, #d4af37, transparent);
 }

 /* Main Content */
 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 20px;
     position: relative;
     z-index: 1;
     flex: 1;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .hero {
     text-align: center;
     padding: 40px 20px;
     position: relative;
 }

 .coming-soon {
     font-size: 5rem;
     font-weight: 100;
     margin: 20px 0 10px;
     text-transform: uppercase;
     background: linear-gradient(45deg, #ffd700, #d4af37, #ffd700);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-size: 200% 200%;
     animation: gradient-shift 3s ease infinite;
     text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
     letter-spacing: 3px;
     line-height: 1.3;
 }

 .tagline {
     font-size: 1.8rem;
     margin: 20px auto 40px;
     color: #f0f0f0;
     max-width: 700px;
     line-height: 1.6;
 }

 .highlight {
     color: #ffd700;
     font-weight: 600;
 }

 /* Features Grid */
 .features {
     display: flex;
     justify-content: center;
     gap: 30px;
     margin: 60px 0;
     flex-wrap: wrap;
 }

 .feature-card {
     background: rgba(26, 26, 26, 0.7);
     border: 1px solid rgba(212, 175, 55, 0.3);
     border-radius: 15px;
     padding: 30px 25px;
     width: 260px;
     backdrop-filter: blur(10px);
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
     transition: all 0.4s ease;
     text-align: center;
 }

 .feature-card:hover {
     transform: translateY(-10px);
     border-color: rgba(212, 175, 55, 0.8);
     box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
 }

 .feature-icon {
     font-size: 3.5rem;
     margin-bottom: 20px;
     background: linear-gradient(45deg, #d4af37, #ffd700);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-size: 200% 200%;
     animation: gradient-shift 3s ease infinite;
 }

 .feature-title {
     font-size: 1.5rem;
     margin-bottom: 15px;
     color: #ffd700;
 }

 /* Social Links */
 .social-links {
     display: flex;
     justify-content: center;
     gap: 25px;
     margin: 40px 0;
 }

 .social-link {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 60px;
     height: 60px;
     border-radius: 50%;
     background: rgba(30, 30, 30, 0.8);
     border: 1px solid rgba(212, 175, 55, 0.4);
     color: #d4af37;
     font-size: 1.8rem;
     transition: all 0.3s ease;
     text-decoration: none;
 }

 .social-link:hover {
     background: linear-gradient(45deg, #d4af37, #ffd700);
     color: #000;
     transform: translateY(-5px);
     box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
 }

 /* Footer */
 footer {
     background: rgba(10, 10, 10, 0.9);
     border-top: 1px solid rgba(212, 175, 55, 0.2);
     padding: 20px 0;
     backdrop-filter: blur(10px);
     position: fixed;
     bottom: 0;
     width: 100%;
     z-index: 2;
 }

 .footer-content {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 0 20px;
     flex-wrap: wrap;
 }

 .copyright {
     color: #aaa;
     font-size: 1rem;
 }

 .footer-links {
     display: flex;
     gap: 30px;
 }

 .footer-links a {
     color: #d4af37;
     text-decoration: none;
     font-size: 1rem;
     transition: all 0.3s ease;
     position: relative;
     font-weight: 500;
 }

 .footer-links a:hover {
     color: #ffd700;
     text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
 }

 .footer-links a::after {
     content: '';
     position: absolute;
     width: 0;
     height: 1px;
     bottom: -2px;
     left: 0;
     background: #ffd700;
     transition: width 0.3s ease;
 }

 .footer-links a:hover::after {
     width: 100%;
 }

 /* Animations */
 @keyframes float {
     0% {
         transform: translateY(0) translateX(0);
         opacity: 0;
     }

     10% {
         opacity: 1;
     }

     90% {
         opacity: 1;
     }

     100% {
         transform: translateY(-100vh) translateX(100px);
         opacity: 0;
     }
 }

 @keyframes gradient-shift {
     0% {
         background-position: 0% 50%;
     }

     50% {
         background-position: 100% 50%;
     }

     100% {
         background-position: 0% 50%;
     }
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .logo {
         font-size: 2.8rem;
     }

     .coming-soon {
         font-size: 3.5rem;
     }

     .tagline {
         font-size: 1.4rem;
     }

     .features {
         gap: 20px;
     }

     .feature-card {
         width: 100%;
         max-width: 350px;
     }

     .footer-content {
         flex-direction: column;
         gap: 20px;
         text-align: center;
     }

     .footer-links {
         justify-content: center;
     }
 }