<<<<<<< HEAD
/* ===== Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #fff;
  background: #0d0d0d;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Announcement Banner */
.announcement {
    background-color: #fffae6; /* Light yellow */
    color: #333;
    text-align: center;
    padding: 15px 10px;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 2px solid #ffd700;
}

.announcement a.announcement-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.announcement a.announcement-link:hover {
    text-decoration: underline;
}


/* ===== Navigation Bar ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

#navbar.scrolled {
  background: #111;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.logo {
  font-size: 1.8em;
  font-weight: bold;
  color: #ff7f50;
  letter-spacing: 1px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 20px;
  font-size: 1.1em;
  transition: color 0.3s;
}

nav a:hover {
  color: #ff7f50;
}

/* ===== Mobile Menu ===== */
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-icon span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #111;
    flex-direction: column;
    align-items: center;
    display: none;
  }

  nav.active {
    display: flex;
  }

  nav a {
    margin: 15px 0;
  }

  .menu-icon {
    display: flex;
  }
}


/* ===== Hero Section ===== */
#hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  overflow: hidden;
}

#hero canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#hero h1 {
  font-size: 3em;
  max-width: 800px;
  margin-bottom: 20px;
  z-index: 1;
  animation: fadeInDown 1.5s ease forwards;
}

#hero .buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  z-index: 1;
  animation: fadeInUp 2s ease forwards;
}

#hero button {
  padding: 15px 35px;
  font-size: 1.1em;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s ease;
  background: linear-gradient(45deg, #ff7f50, #ff3f50);
  color: #fff;
  box-shadow: 0 5px 15px rgba(255,63,80,0.4);
}

#hero button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255,63,80,0.6);
}

/* ===== Sections ===== */
section {
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ff7f50;
  letter-spacing: 1px;
}

p {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto;
  color: #ccc;
}

/* ===== Creations Section ===== */
#creations ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

#creations li {
  background: #1c1c1c;
  color: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  width: 200px;
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
  transition: transform 0.4s, box-shadow 0.4s;
}

#creations li:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(255,127,80,0.4);
}

/* ===== Join Section ===== */
form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
}

form input {
  padding: 15px;
  width: 250px;
  max-width: 90%;
  border-radius: 50px;
  border: none;
  outline: none;
  background: #1c1c1c;
  color: #fff;
  font-size: 1em;
  padding-left: 20px;
  transition: 0.3s;
}

form input:focus {
  box-shadow: 0 0 10px #ff7f50;
}

form button {
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  background: linear-gradient(45deg, #4b6cb7, #182848);
  color: #fff;
  transition: 0.3s;
}

form button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(75,108,183,0.6);
}

#thankyouMsg {
  display: none;
  margin-top: 15px;
  color: #ff7f50;
  font-weight: bold;
  animation: fadeIn 1s ease forwards;
}

/* ===== Footer ===== */
footer {
  background: #111;
  padding: 30px 20px;
  text-align: center;
}

footer .social a {
  color: #ff7f50;
  margin: 0 15px;
  text-decoration: none;
  transition: 0.3s;
}

footer .social a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* ===== Animations ===== */
.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-50px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  #creations ul {
    flex-direction: column;
    align-items: center;
  }

  #hero h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 2em;
  }

  form input {
    width: 80%;
  }
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 45px;
  width: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* ===== Arzo Section ===== */
.arzo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.arzo-container img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ff7f50;
  box-shadow: 0 0 20px rgba(255,127,80,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arzo-container img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255,127,80,0.7);
}

.arzo-container p {
  max-width: 600px;
  text-align: left;
  font-size: 1.1em;
  color: #ccc;
}

@media (max-width: 768px) {
  .arzo-container {
    flex-direction: column;
    text-align: center;
  }

  .arzo-container p {
    text-align: center;
  }
}

/* ===== Alaada OS Page ===== */
.hero {
  text-align: center;
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  color: #fff;
}

.hero h1 {
  font-size: 3em;
  color: #ff7f50;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  color: #ccc;
}

.content, .final {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  color: #ddd;
  text-align: center;
}

.modules {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.module-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 127, 80, 0.3);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 127, 80, 0.3);
}

.module-card h3 {
  color: #ff7f50;
  margin-bottom: 15px;
}

#creations li a {
  color: #fff;
  text-decoration: none;
  display: block;
  transition: 0.3s ease;
}

#creations li a:hover {
  color: #ff7f50;
  transform: scale(1.05);
}

/* ===== Coming Soon Page ===== */
.coming-soon {
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
  overflow: hidden;
}

.coming-soon h1 {
  font-size: 3em;
  color: #ff7f50;
  margin-bottom: 30px;
  animation: fadeInDown 1.5s ease forwards;
}

.animated-text {
  font-size: 1.5em;
  color: #ccc;
  opacity: 0;
  animation: slideFadeIn 2s ease 0.8s forwards, glow 2s ease-in-out infinite alternate;
}

/* Keyframes for animation */
@keyframes slideFadeIn {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes glow {
  0% { text-shadow: 0 0 10px rgba(255,127,80,0.2); }
  100% { text-shadow: 0 0 25px rgba(255,127,80,0.8); }
}

.nav-links a.active {
  color: #ff7f50;
  border-bottom: 2px solid #ff7f50;
  padding-bottom: 3px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  background: #0f0f10;
  color: #e5e5e5;
  line-height: 1.7;
  scroll-behavior: smooth;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4rem;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 45px;
  border-radius: 10px;
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  color: #e5e5e5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #4dabf7;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 8rem 2rem;
  background: radial-gradient(circle at 30% 50%, #1a1a1d, #0d0d0f);
  animation: fadeIn 1.2s ease;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #4dabf7, #9775fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #ccc;
}

.cta {
  background: linear-gradient(90deg, #4dabf7, #9775fa);
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s;
}

.cta:hover {
  opacity: 0.8;
}

/* Intro */
.intro {
  text-align: center;
  font-size: 1.1rem;
  padding: 3rem 2rem;
  color: #bdbdbd;
}

/* Modules */
.modules {
  padding: 3rem 4rem;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.module-card {
  background: #17171a;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(77, 171, 247, 0.05);
  transition: all 0.3s ease;
}

.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(77, 171, 247, 0.2);
}

.module-card h3 {
  color: #4dabf7;
  margin-bottom: 0.8rem;
}

.module-card p {
  color: #bdbdbd;
}

/* Difference Section */
.difference {
  background: #111113;
  padding: 4rem 2rem;
  text-align: center;
}

.difference h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.difference ul {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.difference li {
  margin: 0.8rem 0;
  color: #bdbdbd;
}

/* Final */
.final {
  text-align: center;
  padding: 3rem 2rem;
  background: #0f0f10;
  font-size: 1.2rem;
  color: #e5e5e5;
}

/* Footer */
footer {
  background: #0b0b0c;
  color: #999;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

footer .social {
  margin-top: 0.8rem;
}

footer .social a {
  color: #4dabf7;
  margin: 0 10px;
  text-decoration: none;
}

footer .social a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    padding: 1rem 2rem;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .modules {
    padding: 2rem;
  }
}
/* Hero section background */
#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: radial-gradient(circle at bottom, #000010 0%, #020024 100%);
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.space-scene {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Earth */
.earth {
  position: absolute;
  bottom: -50px;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #2b82ff, #001b4d);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(0,150,255,0.7);
  transform: translateX(-50%);
  animation: rotateEarth 20s linear infinite;
}

@keyframes rotateEarth {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg); }
}

/* Rocket */
.rocket {
  position: absolute;
  bottom: -120px;
  left: 50%;
  width: 40px;
  height: 80px;
  background: linear-gradient(to bottom, #f5f5f5, #d4d4d4);
  border-radius: 20px 20px 5px 5px;
  transform: translateX(-50%);
  animation: rocketLaunch 5s ease-in-out 1 forwards;
}

.rocket::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 15px;
  height: 20px;
  background: linear-gradient(to top, orange, yellow, transparent);
  border-radius: 50%;
  transform: translateX(-50%);
  filter: blur(2px);
  animation: flame 0.3s infinite alternate;
}

@keyframes flame {
  from { opacity: 1; height: 20px; }
  to { opacity: 0.5; height: 30px; }
}

@keyframes rocketLaunch {
  0% { bottom: -120px; }
  40% { bottom: 150px; }
  70% { bottom: 350px; }
  100% { bottom: 800px; opacity: 0; }
}

/* Astronaut */
.astronaut {
  position: absolute;
  top: 40%;
  left: 30%;
  width: 60px;
  height: 60px;
  background: url('images/astronaut.png') no-repeat center/contain;
  animation: floatAstronaut 6s ease-in-out infinite;
}

@keyframes floatAstronaut {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}
#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}
#heroCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}
/* Hero Section with Live Background */
#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

#bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5) saturate(1.2);
}

/* Overlay Text and Buttons */
.hero-overlay {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 2rem 3rem;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  animation: fadeIn 2s ease-in-out;
}

.hero-overlay h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-overlay h1 span {
  color: #00aaff;
}

.hero-overlay p {
  margin-top: 1rem;
  font-size: 1.2rem;
  opacity: 0.9;
}

.buttons {
  margin-top: 2rem;
}

.buttons a {
  display: inline-block;
  margin: 0 10px;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta {
  background: linear-gradient(90deg, #00aaff, #0077ff);
  color: white;
}

.cta:hover {
  transform: scale(1.05);
}

.secondary {
  background: transparent;
  border: 2px solid #00aaff;
  color: #00aaff;
}

.secondary:hover {
  background: #00aaff;
  color: white;
}

/* Entry Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Transformation Section */
.transformation {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0b0b0b, #1c1c1c);
  color: #fff;
}

.transformation h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #ffcc70;
  text-shadow: 0 0 10px rgba(255, 204, 112, 0.6);
}

.transformation p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.video-comparison {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.video-card {
  background: #121212;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 204, 112, 0.15);
  width: 350px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(255, 204, 112, 0.25);
}

.video-card video {
  width: 100%;
  height: auto;
  display: block;
}

.video-card h3 {
  background: #ffcc70;
  color: #000;
  margin: 0;
  padding: 12px;
  font-weight: bold;
}

.caption {
  padding: 10px 15px 20px;
  font-size: 0.95rem;
  opacity: 0.8;
}
/* Creations Section */
#creations {
  background: radial-gradient(circle at top, #0d0d0d 0%, #000 100%);
  padding: 80px 20px;
  text-align: center;
}

#creations h2 {
  font-size: 2.5rem;
  background: linear-gradient(90deg, #00b4d8, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 50px;
}

.creations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Each creation box */
.creation-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  text-decoration: none;
  color: white;
  padding: 30px;
  transition: 0.4s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px rgba(138, 43, 226, 0.2);
  transform-style: preserve-3d;
}

.creation-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 25px rgba(0, 180, 216, 0.6);
  border-color: rgba(0, 180, 216, 0.8);
}

.creation-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #00b4d8, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.creation-card p {
  font-size: 1rem;
  opacity: 0.8;
}

@media (max-width: 600px) {
  #creations h2 {
    font-size: 2rem;
  }
  .creation-card {
    padding: 20px;
  }
}
=======
/* ===== Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #fff;
  background: #0d0d0d;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Announcement Banner */
.announcement {
    background-color: #fffae6; /* Light yellow */
    color: #333;
    text-align: center;
    padding: 15px 10px;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 2px solid #ffd700;
}

.announcement a.announcement-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.announcement a.announcement-link:hover {
    text-decoration: underline;
}


/* ===== Navigation Bar ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

#navbar.scrolled {
  background: #111;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.logo {
  font-size: 1.8em;
  font-weight: bold;
  color: #ff7f50;
  letter-spacing: 1px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 20px;
  font-size: 1.1em;
  transition: color 0.3s;
}

nav a:hover {
  color: #ff7f50;
}

/* ===== Mobile Menu ===== */
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-icon span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #111;
    flex-direction: column;
    align-items: center;
    display: none;
  }

  nav.active {
    display: flex;
  }

  nav a {
    margin: 15px 0;
  }

  .menu-icon {
    display: flex;
  }
}


/* ===== Hero Section ===== */
#hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  overflow: hidden;
}

#hero canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#hero h1 {
  font-size: 3em;
  max-width: 800px;
  margin-bottom: 20px;
  z-index: 1;
  animation: fadeInDown 1.5s ease forwards;
}

#hero .buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  z-index: 1;
  animation: fadeInUp 2s ease forwards;
}

#hero button {
  padding: 15px 35px;
  font-size: 1.1em;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s ease;
  background: linear-gradient(45deg, #ff7f50, #ff3f50);
  color: #fff;
  box-shadow: 0 5px 15px rgba(255,63,80,0.4);
}

#hero button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255,63,80,0.6);
}

/* ===== Sections ===== */
section {
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ff7f50;
  letter-spacing: 1px;
}

p {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto;
  color: #ccc;
}

/* ===== Creations Section ===== */
#creations ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

#creations li {
  background: #1c1c1c;
  color: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  width: 200px;
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
  transition: transform 0.4s, box-shadow 0.4s;
}

#creations li:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(255,127,80,0.4);
}

/* ===== Join Section ===== */
form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
}

form input {
  padding: 15px;
  width: 250px;
  max-width: 90%;
  border-radius: 50px;
  border: none;
  outline: none;
  background: #1c1c1c;
  color: #fff;
  font-size: 1em;
  padding-left: 20px;
  transition: 0.3s;
}

form input:focus {
  box-shadow: 0 0 10px #ff7f50;
}

form button {
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  background: linear-gradient(45deg, #4b6cb7, #182848);
  color: #fff;
  transition: 0.3s;
}

form button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(75,108,183,0.6);
}

#thankyouMsg {
  display: none;
  margin-top: 15px;
  color: #ff7f50;
  font-weight: bold;
  animation: fadeIn 1s ease forwards;
}

/* ===== Footer ===== */
footer {
  background: #111;
  padding: 30px 20px;
  text-align: center;
}

footer .social a {
  color: #ff7f50;
  margin: 0 15px;
  text-decoration: none;
  transition: 0.3s;
}

footer .social a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* ===== Animations ===== */
.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-50px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  #creations ul {
    flex-direction: column;
    align-items: center;
  }

  #hero h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 2em;
  }

  form input {
    width: 80%;
  }
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 45px;
  width: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* ===== Arzo Section ===== */
.arzo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.arzo-container img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ff7f50;
  box-shadow: 0 0 20px rgba(255,127,80,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arzo-container img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255,127,80,0.7);
}

.arzo-container p {
  max-width: 600px;
  text-align: left;
  font-size: 1.1em;
  color: #ccc;
}

@media (max-width: 768px) {
  .arzo-container {
    flex-direction: column;
    text-align: center;
  }

  .arzo-container p {
    text-align: center;
  }
}

/* ===== Alaada OS Page ===== */
.hero {
  text-align: center;
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  color: #fff;
}

.hero h1 {
  font-size: 3em;
  color: #ff7f50;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  color: #ccc;
}

.content, .final {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  color: #ddd;
  text-align: center;
}

.modules {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.module-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 127, 80, 0.3);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 127, 80, 0.3);
}

.module-card h3 {
  color: #ff7f50;
  margin-bottom: 15px;
}

#creations li a {
  color: #fff;
  text-decoration: none;
  display: block;
  transition: 0.3s ease;
}

#creations li a:hover {
  color: #ff7f50;
  transform: scale(1.05);
}

/* ===== Coming Soon Page ===== */
.coming-soon {
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
  overflow: hidden;
}

.coming-soon h1 {
  font-size: 3em;
  color: #ff7f50;
  margin-bottom: 30px;
  animation: fadeInDown 1.5s ease forwards;
}

.animated-text {
  font-size: 1.5em;
  color: #ccc;
  opacity: 0;
  animation: slideFadeIn 2s ease 0.8s forwards, glow 2s ease-in-out infinite alternate;
}

/* Keyframes for animation */
@keyframes slideFadeIn {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes glow {
  0% { text-shadow: 0 0 10px rgba(255,127,80,0.2); }
  100% { text-shadow: 0 0 25px rgba(255,127,80,0.8); }
}

.nav-links a.active {
  color: #ff7f50;
  border-bottom: 2px solid #ff7f50;
  padding-bottom: 3px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  background: #0f0f10;
  color: #e5e5e5;
  line-height: 1.7;
  scroll-behavior: smooth;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4rem;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 45px;
  border-radius: 10px;
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  color: #e5e5e5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #4dabf7;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 8rem 2rem;
  background: radial-gradient(circle at 30% 50%, #1a1a1d, #0d0d0f);
  animation: fadeIn 1.2s ease;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #4dabf7, #9775fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #ccc;
}

.cta {
  background: linear-gradient(90deg, #4dabf7, #9775fa);
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s;
}

.cta:hover {
  opacity: 0.8;
}

/* Intro */
.intro {
  text-align: center;
  font-size: 1.1rem;
  padding: 3rem 2rem;
  color: #bdbdbd;
}

/* Modules */
.modules {
  padding: 3rem 4rem;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.module-card {
  background: #17171a;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(77, 171, 247, 0.05);
  transition: all 0.3s ease;
}

.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(77, 171, 247, 0.2);
}

.module-card h3 {
  color: #4dabf7;
  margin-bottom: 0.8rem;
}

.module-card p {
  color: #bdbdbd;
}

/* Difference Section */
.difference {
  background: #111113;
  padding: 4rem 2rem;
  text-align: center;
}

.difference h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.difference ul {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.difference li {
  margin: 0.8rem 0;
  color: #bdbdbd;
}

/* Final */
.final {
  text-align: center;
  padding: 3rem 2rem;
  background: #0f0f10;
  font-size: 1.2rem;
  color: #e5e5e5;
}

/* Footer */
footer {
  background: #0b0b0c;
  color: #999;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

footer .social {
  margin-top: 0.8rem;
}

footer .social a {
  color: #4dabf7;
  margin: 0 10px;
  text-decoration: none;
}

footer .social a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    padding: 1rem 2rem;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .modules {
    padding: 2rem;
  }
}
/* Hero section background */
#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: radial-gradient(circle at bottom, #000010 0%, #020024 100%);
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.space-scene {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Earth */
.earth {
  position: absolute;
  bottom: -50px;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #2b82ff, #001b4d);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(0,150,255,0.7);
  transform: translateX(-50%);
  animation: rotateEarth 20s linear infinite;
}

@keyframes rotateEarth {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg); }
}

/* Rocket */
.rocket {
  position: absolute;
  bottom: -120px;
  left: 50%;
  width: 40px;
  height: 80px;
  background: linear-gradient(to bottom, #f5f5f5, #d4d4d4);
  border-radius: 20px 20px 5px 5px;
  transform: translateX(-50%);
  animation: rocketLaunch 5s ease-in-out 1 forwards;
}

.rocket::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 15px;
  height: 20px;
  background: linear-gradient(to top, orange, yellow, transparent);
  border-radius: 50%;
  transform: translateX(-50%);
  filter: blur(2px);
  animation: flame 0.3s infinite alternate;
}

@keyframes flame {
  from { opacity: 1; height: 20px; }
  to { opacity: 0.5; height: 30px; }
}

@keyframes rocketLaunch {
  0% { bottom: -120px; }
  40% { bottom: 150px; }
  70% { bottom: 350px; }
  100% { bottom: 800px; opacity: 0; }
}

/* Astronaut */
.astronaut {
  position: absolute;
  top: 40%;
  left: 30%;
  width: 60px;
  height: 60px;
  background: url('images/astronaut.png') no-repeat center/contain;
  animation: floatAstronaut 6s ease-in-out infinite;
}

@keyframes floatAstronaut {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}
#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}
#heroCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}
/* Hero Section with Live Background */
#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

#bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5) saturate(1.2);
}

/* Overlay Text and Buttons */
.hero-overlay {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 2rem 3rem;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  animation: fadeIn 2s ease-in-out;
}

.hero-overlay h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-overlay h1 span {
  color: #00aaff;
}

.hero-overlay p {
  margin-top: 1rem;
  font-size: 1.2rem;
  opacity: 0.9;
}

.buttons {
  margin-top: 2rem;
}

.buttons a {
  display: inline-block;
  margin: 0 10px;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta {
  background: linear-gradient(90deg, #00aaff, #0077ff);
  color: white;
}

.cta:hover {
  transform: scale(1.05);
}

.secondary {
  background: transparent;
  border: 2px solid #00aaff;
  color: #00aaff;
}

.secondary:hover {
  background: #00aaff;
  color: white;
}

/* Entry Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Transformation Section */
.transformation {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0b0b0b, #1c1c1c);
  color: #fff;
}

.transformation h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #ffcc70;
  text-shadow: 0 0 10px rgba(255, 204, 112, 0.6);
}

.transformation p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.video-comparison {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.video-card {
  background: #121212;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 204, 112, 0.15);
  width: 350px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(255, 204, 112, 0.25);
}

.video-card video {
  width: 100%;
  height: auto;
  display: block;
}

.video-card h3 {
  background: #ffcc70;
  color: #000;
  margin: 0;
  padding: 12px;
  font-weight: bold;
}

.caption {
  padding: 10px 15px 20px;
  font-size: 0.95rem;
  opacity: 0.8;
}
/* Creations Section */
#creations {
  background: radial-gradient(circle at top, #0d0d0d 0%, #000 100%);
  padding: 80px 20px;
  text-align: center;
}

#creations h2 {
  font-size: 2.5rem;
  background: linear-gradient(90deg, #00b4d8, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 50px;
}

.creations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Each creation box */
.creation-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  text-decoration: none;
  color: white;
  padding: 30px;
  transition: 0.4s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px rgba(138, 43, 226, 0.2);
  transform-style: preserve-3d;
}

.creation-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 25px rgba(0, 180, 216, 0.6);
  border-color: rgba(0, 180, 216, 0.8);
}

.creation-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #00b4d8, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.creation-card p {
  font-size: 1rem;
  opacity: 0.8;
}

@media (max-width: 600px) {
  #creations h2 {
    font-size: 2rem;
  }
  .creation-card {
    padding: 20px;
  }
}

/* ---------- Navbar base & layout ---------- */
:root {
  --nav-height: 68px; /* adjust if your header is taller */
  --nav-width-mobile: 260px;
  --navbar-bg: rgba(6, 10, 18, 0.95);
}

/* make header fixed so we can control spacing */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  z-index: 1100;
  background: var(--navbar-bg); /* translucent dark background */
  backdrop-filter: blur(6px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.15);
}

/* logo area */
#navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
#navbar .logo img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
}

/* desktop nav links horizontal */
#navLinks {
  display: flex;
  gap: 16px;
  align-items: center;
}
#navLinks a {
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 6px;
  font-weight: 600;
}

/* menu icon - hidden on desktop */
.menu-icon {
  display: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-icon span {
  display: block;
  height: 2px;
  width: 18px;
  margin: 4px 0;
  background: #fff;
  border-radius: 2px;
}

/* ensure main content sits below fixed header */
body {
  padding-top: var(--nav-height);
}

/* ---------- Responsive: mobile / Android (vertical nav) ---------- */
@media (max-width: 900px) {
  /* show the burger */
  .menu-icon { display: flex; }

  /* hide the nav from inline flow; it becomes a slide-in sidebar */
  #navLinks {
    position: fixed;
    top: 0;
    left: calc(-1 * var(--nav-width-mobile));
    width: var(--nav-width-mobile);
    height: 100vh;
    padding-top: var(--nav-height);
    display: flex;
    flex-direction: column;
    gap: 0;
    background: linear-gradient(180deg, rgba(8,10,15,0.98), rgba(12,14,20,0.98));
    box-shadow: 3px 0 18px rgba(0,0,0,0.45);
    transition: left 260ms cubic-bezier(.2,.9,.2,1);
    z-index: 1200;
    overflow-y: auto;
  }

  /* when open, slide in */
  #navLinks.open {
    left: 0;
  }

  /* nav link styles for vertical menu */
  #navLinks a {
    display: block;
    width: 100%;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: #fff;
  }
  #navLinks a.active { background: rgba(255,255,255,0.04); }

  /* dim the page when menu open - implement with a .menu-open class on body */
  body.menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.36);
    z-index: 1150;
    pointer-events: none; /* JS will disable/enable scrolling separately */
  }

  /* make header content compact */
  #navbar h1 { display: none; } /* hide text brand on small screens if needed */
}

/* small visual tweak: ensure hero video not under header */
#hero {
  position: relative;
  z-index: 1; /* behind nav overlay but content starts after padding-top */
}

/* optional: clickable area for closing menu (if you implement overlay clickable) */
.close-overlay {
  position: fixed;
  inset: 0;
  z-index: 1140;
  display: none;
}
body.menu-open .close-overlay { display: block; }
body {
  padding-top: 90px; /* match navbar height */
}
#navLinks {
  display: flex;
}

@media (max-width: 768px) {
  #navLinks {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 90px;
    right: 0;
    width: 220px;
    background: rgba(0,0,0,0.9);
    padding: 20px;
  }

  #navLinks.active {
    display: flex;
  }

  .menu-icon {
    display: block;
    z-index: 9999;
  }
}
#hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 2;
}
.announcement {
  position: relative;
  z-index: 3;
}
.alaada-modal {
  z-index: 999999;
}
#bg-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Highlighted Web Analyzer Card */
.web-analyser-highlight {
  position: relative;
  border: 2px solid #00c6ff;
  box-shadow: 0 0 12px #00c6ff55;
  transform: scale(1.03);
  transition: all 0.25s ease;
  background: linear-gradient(135deg, #0f1721, #111d29);
}

.web-analyser-highlight:hover {
  box-shadow: 0 0 18px #00c6ffaa;
  transform: scale(1.06);
}

/* Clickable title link */
.web-link {
  color: #00d1ff;
  text-decoration: none;
  font-weight: 600;
}

.web-link:hover {
  text-decoration: underline;
}

/* “NEW” badge */
.badge-new {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #00d1ff;
  color: #000;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 0 6px #00d1ffaa;
}
