 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Fredoka', sans-serif;
 }

 body {
     background: #000;
     color: #fff;
     display: flex;
     flex-direction: column;
     align-items: center;
     min-height: 100vh;
     padding: 1.5rem;
 }

 header img {
     height: 70px;
     margin-bottom: 1rem;
 }

 .hero-gif {
     max-width: 280px;
     margin-bottom: 2rem;
     border-radius: 1rem;
 }

 h1 {
     font-size: 2rem;
     margin-bottom: 1.5rem;
     text-align: center;
     font-weight: 700;
 }

 .sectors {
     display: flex;
     flex-wrap: wrap;
     gap: 1rem;
     justify-content: center;
     width: 100%;
     max-width: 1100px;
     margin-bottom: 2rem;
 }

 .sector-btn {
     flex: 1 1 220px;
     background: #111;
     border: 2px solid #333;
     padding: 1rem;
     border-radius: 1rem;
     text-align: center;
     cursor: pointer;
     font-size: 1rem;
     font-weight: 600;
     transition: all 0.4s ease;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 0.6rem;
 }

 .sector-btn i {
     font-size: 1.8rem;
 }

 .sector-btn:hover {
     background: #fff;
     color: #000;
     transform: translateY(-6px);
     border-color: transparent;
 }

 /* Loader */
 .loader-container {
     display: none;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     height: 300px;
 }

 .loader-circle {
     width: 60px;
     height: 60px;
     background: #000;
     border: 2px solid #333;
     border-radius: 50%;
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .loader-circle::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     border-radius: 50%;
     box-shadow: 0 0 15px #ff00ff, 0 0 30px #00ffff;
     z-index: -1;
 }

 .loader-circle i {
     font-size: 1.5rem;
     color: #fff;
     position: absolute;
     animation: jetMove 2s ease-in-out infinite alternate;
 }

 @keyframes jetMove {
     from {
         transform: translateY(5px);
     }

     to {
         transform: translateY(-5px);
     }
 }

 .loader-text {
     font-size: 1.2rem;
     text-align: center;
     font-weight: 600;
     text-shadow: 0 0 10px #fff, 0 0 20px #999;
     margin-top: 30px;
 }

 /* Downloads */
 .downloads {
     display: none;
     flex-direction: column;
     gap: 1.2rem;
     align-items: center;
     margin-top: 1rem;
     animation: fadeIn 1s ease-in;
 }

 .download-btn {
     display: flex;
     align-items: center;
     gap: 0.7rem;
     padding: 1rem 2rem;
     border: 2px solid #fff;
     border-radius: 3rem;
     cursor: pointer;
     font-size: 1.1rem;
     font-weight: 600;
     background: transparent;
     color: #fff;
     overflow: hidden;
     position: relative;
     justify-content: space-between;
     text-decoration: none;
 }

 .download-btn i {
     animation: bounceUpDown 1s infinite alternate;
 }

 @keyframes bounceUpDown {
     from {
         transform: translateY(-2px);
     }

     to {
         transform: translateY(2px);
     }
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Responsive Design */
 @media(max-width:600px) {
     h1 {
         font-size: 1.5rem;
     }

     .sector-btn {
         flex: 1 1 100%;
         font-size: 0.9rem;
     }

     .download-btn {
         flex-direction: column-reverse;
         /* Stack icon and text on mobile */
         gap: 0.2rem;
     }
 }