   .section-img {
      width: 300px;
      transition: transform 0.6s ease;
      margin-top: 20px;
    }

    .section-img:hover {
      transform: rotateY(15deg) scale(1.05);
      cursor: pointer;
    }

    section {
      text-align: center;
      padding: 60px 20px;
      color: white;
    }

    /* 🌌 Background and base layout */
    body {
      margin: 0;
      min-height: 100vh;
      overflow-y: auto;
      background: radial-gradient(ellipse at center, #000010, #000014 60%, #000000);
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      font-family: 'Segoe UI', sans-serif;
      position: relative;
      color: white;
    }

    /* 🌠 Animated EBD Core */
    .ebd-core {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle at center, rgba(255, 230, 128, 0.9), rgba(255, 180, 0, 0.1));
      box-shadow: 0 0 60px rgba(255, 215, 0, 0.8), 0 0 120px rgba(255, 255, 255, 0.2);
      animation: rotateGlow 10s linear infinite;
      position: absolute;
      top: 40%;
      z-index: 2;
    }

    @keyframes rotateGlow {
      0% { transform: rotate(0deg) scale(1); filter: hue-rotate(0deg); }
      100% { transform: rotate(360deg) scale(1.1); filter: hue-rotate(360deg); }
    }

    /* ✨ Glowing Title */
    .glorion-title {
      font-size: 2.8em;
      text-align: center;
      background: linear-gradient(90deg, #ffd700, #fff8dc, #ffd700);
      -webkit-background-clip: text;
      color: transparent;
      letter-spacing: 3px;
      text-transform: uppercase;
      animation: shimmer 6s infinite linear;
      z-index: 3;
      margin-bottom: 10px;
    }

    .glorion-sub {
      font-size: 1.2em;
      color: gold;
      letter-spacing: 2px;
      z-index: 3;
    }

    @keyframes shimmer {
      0% { background-position: -100%; }
      100% { background-position: 100%; }
    }

    /* 🌟 Menu Button */
    .menu-button {
      position: absolute;
      top: 20px;
      right: 30px;
      background: none;
      border: 2px solid gold;
      border-radius: 8px;
      color: gold;
      padding: 8px 18px;
      font-size: 1em;
      font-weight: 600;
      letter-spacing: 1px;
      cursor: pointer;
      box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
      transition: all 0.3s ease;
      z-index: 4;
    }

    .menu-button:hover {
      background: gold;
      color: black;
      box-shadow: 0 0 25px rgba(255, 215, 0, 1);
    }

    /* 🌟 Dropdown Menu */
    .dropdown {
      position: absolute;
      top: 70px;
      right: 30px;
      background: rgba(255, 215, 0, 0.95);
      border-radius: 12px;
      box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
      display: none;
      flex-direction: column;
      text-align: center;
      padding: 10px 0;
      z-index: 4;
      animation: slideDown 0.5s ease;
    }

    .dropdown a {
      color: black;
      text-decoration: none;
      font-weight: 600;
      padding: 10px 40px;
      display: block;
      transition: all 0.3s;
    }

    .dropdown a:hover {
      background: black;
      color: gold;
    }

    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* 🌀 Eternal-Life Equation */
    .equation {
      position: absolute;
      font-size: 2em;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.1);
      text-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
      animation: rotateEq 30s linear infinite;
      z-index: 1;
    }

    @keyframes rotateEq {
      0% { transform: rotate(0deg) translateX(160px) rotate(0deg); }
      100% { transform: rotate(360deg) translateX(160px) rotate(-360deg); }
    }

    /* 🔶 Eternal Equilibrium Constant */
    .constant {
      position: absolute;
      top: 70%;
      font-size: 1.3em;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.2);
      text-shadow: 0 0 12px rgba(255, 215, 0, 0.25);
      letter-spacing: 1px;
      animation: floatConstant 8s ease-in-out infinite;
      z-index: 1;
    }

    @keyframes floatConstant {
      0%, 100% { transform: translateY(0); opacity: 0.7; }
      50% { transform: translateY(-10px); opacity: 1; }
    }

    /* 🌠 Star Field */
    .stars {
      position: absolute;
      width: 100%;
      height: 100%;
      background: url('https://www.transparenttextures.com/patterns/stardust.png');
      opacity: 0.4;
      animation: starMove 60s linear infinite;
      z-index: 0;
    }

    @keyframes starMove {
      from { transform: translateY(0); }
      to { transform: translateY(-1000px); }
    }

    /* 🌍 Footer Signature */
    footer {
      position: absolute;
      bottom: 12px;
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.9em;
      letter-spacing: 1px;
      z-index: 3;
    }

    /* ☀️ Radiant Orb Logo */
    .radiant-orb {
      position: absolute;
      top: 15%;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: radial-gradient(circle at center, #fff8dc, #ffd700, #ffcc00, #00000000);
      box-shadow: 0 0 40px gold, 0 0 80px rgba(255, 215, 0, 0.5);
      animation: pulseOrb 4s ease-in-out infinite, rotateOrb 30s linear infinite;
      z-index: 5;
    }

    @keyframes pulseOrb {
      0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.9; }
      50% { transform: translateX(-50%) scale(1.15); opacity: 1; }
    }

    @keyframes rotateOrb {
      from { filter: hue-rotate(0deg); }
      to { filter: hue-rotate(360deg); }
    }

    /* 🔹 RESPONSIVE ADJUSTMENTS */
    @media (max-width: 1024px) {
      .ebd-core { width: 150px; height: 150px; top: 38%; }
      .glorion-title { font-size: 2.4em; letter-spacing: 2px; }
      .glorion-sub { font-size: 1.1em; }
      .equation { font-size: 1.8em; }
      .constant { font-size: 1.1em; top: 68%; }
      .radiant-orb { width: 85px; height: 85px; top: 13%; }
      .menu-button { padding: 7px 16px; font-size: 0.95em; }
      .dropdown a { padding: 9px 35px; font-size: 0.95em; }
    }

    @media (max-width: 768px) {
      .ebd-core { width: 120px; height: 120px; top: 35%; }
      .glorion-title { font-size: 2em; }
      .glorion-sub { font-size: 1em; }
      .equation { font-size: 1.5em; }
      .constant { font-size: 1em; top: 65%; }
      .radiant-orb { width: 70px; height: 70px; top: 12%; }
      .menu-button { padding: 6px 14px; font-size: 0.9em; }
      .dropdown a { padding: 8px 30px; font-size: 0.9em; }
    }

    @media (max-width: 480px) {
      .ebd-core { width: 90px; height: 90px; top: 30%; }
      .glorion-title { font-size: 1.6em; }
      .glorion-sub { font-size: 0.9em; }
      .equation { font-size: 1.2em; }
      .constant { font-size: 0.85em; top: 60%; }
      .radiant-orb { width: 50px; height: 50px; top: 10%; }
      .menu-button { padding: 5px 10px; font-size: 0.8em; }
      .dropdown a { padding: 6px 20px; font-size: 0.8em; }
    }