body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #121212;
    color: #f1f1f1;
    margin: 0;
    padding: 0;
  }
  
  .container {
    max-width: 960px;
    margin: auto;
    padding: 20px;
  }
  
  header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  header img {
    width: 40px;
    vertical-align: middle;
  }
  
  header h1 {
    display: inline-block;
    margin-left: 10px;
    font-size: 2.2em;
  }
  
  .tagline {
    margin-top: 5px;
    font-size: 1em;
    color: #aaaaaa;
  }
  
  .card {
    background: #1e1e1e;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
  }
  
  input[type="text"] {
    padding: 10px;
    font-size: 16px;
    width: 70%;
    margin-right: 10px;
    border-radius: 8px;
    border: none;
  }
  
  button {
    padding: 10px 16px;
    font-size: 16px;
    background: #1f8ef1;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  
  button:hover {
    background: #0d6efd;
  }
  
  #volatilityTag {
    margin-top: 12px;
    font-weight: bold;
    font-size: 16px;
    color: #ffc107;
  }
  
  #recentList li {
    display: inline-block;
    margin: 5px;
    background: #292929;
    padding: 6px 12px;
    border-radius: 6px;
    color: #1f8ef1;
    cursor: pointer;
  }
  
  #recentList li:hover {
    background: #444;
  }
  
  #newsContainer div {
    border-bottom: 1px solid #333;
    padding: 10px 0;
  }
  
  #newsContainer h4 {
    margin: 0;
    color: #f1f1f1;
  }
  
  #newsContainer p {
    margin: 5px 0;
    color: #cccccc;
  }
  
  #newsContainer a {
    color: #1f8ef1;
    text-decoration: none;
  }
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #1f8ef1 10%, transparent 10.01%) repeat;
    background-size: 200px 200px;
    opacity: 0.03;
    z-index: -1;
  }
  /* 🌞 LIGHT MODE */
.light-mode {
  background-color: #ffffff !important;
  color: #000000 !important;
}

.light-mode .card {
  background-color: #f5f5f5 !important;
  color: #111111 !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* 🌅 COMFORT MODE */
.warm-mode {
  background-color: #fff7ec !important;
  color: #3a2d2d !important;
}

.warm-mode .card {
  background-color: #ffebd4 !important;
  color: #2b1c1c !important;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}

/* 🌚 DARK MODE (default) */
.dark-mode {
  background-color: #121212 !important;
  color: #f1f1f1 !important;
}

.dark-mode .card {
  background-color: #1e1e1e !important;
  color: #f1f1f1 !important;
}

#trendingList li:hover {
  text-decoration: underline;
  color: #0f62fe;
}
#google_translate_element {
  margin-top: 20px;
  text-align: center;
}

.goog-te-gadget {
  font-family: inherit !important;
  font-size: 14px !important;
}

body > .skiptranslate {
  display: none;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #fff;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
  background: linear-gradient(to bottom right, #1f1f1f, #0d0d0d);
  text-align: center;
  padding: 2rem;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #1f8ef1;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.hero input {
  padding: 10px;
  width: 60%;
  border-radius: 5px;
  border: none;
  margin-right: 10px;
}

.hero button {
  padding: 10px 15px;
  background-color: #1f8ef1;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.hero button:hover {
  background-color: #0f62fe;
}

body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.features {
  text-align: center;
  padding: 2rem;
  background: #181818;
  color: white;
}
.feature-grid {
  display: flex;
  justify-content: space-around;
  margin-top: 1rem;
}
.feature {
  background: #222;
  padding: 1rem;
  border-radius: 10px;
  width: 30%;
}
