/* ===== variables ===== */
:root {
    --primary:#4fd3ff;
    --accent:#00ffa2;
    --bg:#0b0e26;
    --text:#e7faff;
    --font:"Rajdhani",sans-serif;
}

/* ===== resets ===== */
*{margin:0;padding:0;box-sizing:border-box}
html,body{height:100%;background:var(--bg);color:var(--text);font-family:var(--font);overflow-x:hidden}

/* ===== layout helpers ===== */
.container{width:90%;max-width:1200px;margin:0 auto;padding:2rem 0}
.center{text-align:center}
.btn{display:inline-block;padding:0.9rem 2rem;border:2px solid var(--primary);color:var(--primary);text-decoration:none;border-radius:4px;transition:all .25s}
.btn:hover{background:var(--primary);color:var(--bg)}

/* ===== headings & text ===== */
h1,h2,h3{font-weight:600;letter-spacing:0.03em}
h1{font-size:3rem;margin-bottom:1rem}
h2{font-size:2rem;margin:2rem 0 1rem}

/* ===== background starry parallax ===== */
body::before{
    content:"";
    position:fixed;
    inset:0;
    background:url('img/bg_starry.png') repeat center/cover;
    z-index:-2;
    animation:pan 120s linear infinite;
}
@keyframes pan{to{background-position:-10000px 0}}

.hero-split {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 550px;
    margin-bottom: 30px;
  }
  
  .hero-text {
    width: 50%;
    padding: 40px 24px 40px 7vw;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .brand-row {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  .brand-logo {
    height: 38px;
    margin-right: 0.5em;
  }
  .brand-name {
    font-size: 1.2em;
    font-weight: 600;
  }
  
  .hero-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 1em;
  }
  
  .hero-bolded {
    font-size: 1.15em;
    font-weight: bold;
    margin-bottom: 1em;
  }
  
  .hero-unbolded {
    font-size: 1em;
    margin-bottom: 1.2em;
  }
  .hero-unbolded ul {
    margin-top: 0.5em;
    margin-bottom: 0;
    padding-left: 1.6em;
  }
  
  .hero-cta {
    display: inline-block;
    background: #00ffa2;
    color: #0b0e26;
    padding: 0.8em 1.7em;
    margin-top: 1em;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 18px #00ffa24d;
    transition: background 0.2s;
  }
  .hero-cta:hover { background: #1afcae; }
  
  .hero-wheel {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
  }

  .brand-logo {
    height: 76px;            /* Twice the previous 38px */
    width: 76px;             /* Make the box square */
    background: #fff;        /* Solid white box */
    border-radius: 10px;     /* A little rounding for a friendly box, or use 0 for square */
    padding: 6px;            /* Padding so logo doesn't touch the border */
    box-sizing: border-box;
    object-fit: contain;     /* Keep the full logo and text visible */
    box-shadow: 0 2px 8px #0002;
    display: block;
  }
  
  /* Example additions for the master/base template */
body {
  background: url('img/bg_starry.png') repeat center/cover;
  min-height: 100vh;
  margin: 0;
  color: #e7faff;
  font-family: 'Rajdhani', Arial, sans-serif;
}
.navbar {
  width: 100%;
  background: rgba(20,30,50,0.92);
  padding: 16px 0 12px 0;
  box-shadow: 0 2px 14px #0002;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.navbar a.home {
  display: flex;
  align-items: center;
  background: #fff;
  color: #222e;
  border-radius: 10px;
  padding: 8px 18px 8px 12px;
  font-size: 1.18em;
  font-weight: bold;
  text-decoration: none;
  margin-left: 38px;
  transition: background 0.18s;
  box-shadow: 0 3px 17px #0003;
}
.navbar a.home:hover {
  background: #e9faff;
  color: #0b0e26;
}
.navbar .home-icon {
  margin-right: 0.7em;
  vertical-align: middle;
  width: 28px; height: 28px;
  background: #fff;
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 2px 8px #0002;
}
main {
  width: 100vw;
  max-width: 1100px;
  margin: 36px auto 0 auto;
  padding: 28px;
  box-sizing: border-box;
  background: rgba(7,19,31, 0.72);
  border-radius: 22px;
  min-height: 480px;
}
@media (max-width: 600px) {
  main { padding: 12px; }
  .navbar { padding: 11px 0 7px 0;}
  .navbar a.home { font-size: 1em; margin-left: 12px; }
}
