.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: oklch(100% 0.00011 271.152);
    
}
.auth-buttons button {
    background-color: white;
    border: 1px solid #ccc;
    color: black;
    padding: 6px 12px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}
.auth-buttons button:hover {
    background-color: hsl(127, 12%, 57%);
}
 /* you can use margin only and it will look okay, but just fill the gap in the page and thats all*/
body{
    margin:0px;
    padding: 0;
    background-color: #0d0d0d;
  color: #2b1919;
  font-family: 'Poppins', sans-serif;
}
h1{ 
    text-shadow: 2px 2px 2px hsl(0, 8%, 3%); 
    margin:10px;
}
.navbar ul{

    list-style-type:none;
    background-color: hsl(0, 0%, 25%);
    padding:0px;
    margin:0px;
    overflow:hidden; 
}
.navbar a{
color: white;
text-decoration: none;
padding: 15px;
display:block;
text-align: center;
}
.navbar a:hover{
background-color: hsl(0, 0%, 11%)

}
.navbar li{
    float: left;
}
.box{
background-color: rgb(49, 151, 23);
color:blanchedalmond;
    border: 2px solid;
    padding: 25px;
    box-sizing: border-box;
    width: 50%;
    float: left;
    
    
}
/* ===== SIGN UP FORM STYLING ===== */
.signup-form {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  background: linear-gradient(135deg, #f9f9f9, #dcdcdc);
  padding: 40px 0;
}

/* Main form container */
.signup-form form {
  background-color: white;
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 40px 50px;
  width: 400px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* Header inside form */
.signup-form h3 {
  text-align: center;
  font-size: 1.8em;
  color: hsl(0, 0%, 20%);
  text-transform: uppercase;
  margin-bottom: 25px;
  border-bottom: 2px solid hsl(0, 0%, 30%);
  display: inline-block;
  padding-bottom: 5px;
}

/* Labels and Inputs */
.signup-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  color: hsl(0, 0%, 15%);
}

.signup-form input,
.signup-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #aaa;
  border-radius: 6px;
  font-size: 1em;
  transition: all 0.3s ease;
}

.signup-form input:focus,
.signup-form select:focus {
  border-color: hsl(127, 12%, 57%);
  box-shadow: 0 0 6px hsl(127, 12%, 57%);
  outline: none;
}

/* Submit button styling */
.signup-form input[type="submit"] {
  background-color: hsl(0, 0%, 25%);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  padding: 12px;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.signup-form input[type="submit"]:hover {
  background-color: hsl(127, 12%, 57%);
  color: black;
}

/* Optional footer styling */
footer {
  text-align: center;
  color: hsl(0, 100%, 100%);
  padding: 20px;
  font-size: 0.9em;
}
.hero {
  background: url('trading-bg.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.hero-content {
  background: rgba(0, 0, 0, 0.6);
  display: inline-block;
  padding: 30px 50px;
  border-radius: 12px;
}

.hero h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 25px;
}

.hero button {
  background-color: hsl(127, 12%, 57%);
  border: none;
  color: black;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
}

.hero button:hover {
  background-color: white;
}
.about {
  text-align: center;
  padding: 60px 80px;
  background-color: #f9f9f9;
}
.about h2 {
  margin-bottom: 15px;
}
.about p {
  line-height: 1.6;
  color: #444;
}
.about-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.about-container {
  max-width: 800px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  padding: 40px 50px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.about-container h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 25px;
  color: hsl(0, 0%, 20%);
}

.about-container p {
  line-height: 1.6;
  margin-bottom: 18px;
}

.about-container strong {
  color: hsl(127, 12%, 40%);
}

.about-container blockquote {
  background: hsl(0, 0%, 96%);
  border-left: 4px solid hsl(127, 12%, 57%);
  padding: 15px 20px;
  margin: 25px 0;
  font-style: italic;
  color: #444;
}

.about-container .signature {
  text-align: right;
  font-weight: bold;
  color: #222;
  margin-top: 20px;
}
.login-form {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 75vh;
  background: linear-gradient(135deg, #f2f2f2, #e6e6e6);
  padding: 50px 0;
}

.login-form form {
  background: white;
  padding: 40px 50px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 100%;
  text-align: left;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-form h3 {
  text-align: center;
  color: #333;
  font-size: 1.8em;
  margin-bottom: 25px;
  border-bottom: 2px solid #444;
  display: inline-block;
  padding-bottom: 8px;
}

.login-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

.login-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  transition: border-color 0.3s ease;
}

.login-form input:focus {
  border-color: hsl(127, 12%, 57%);
  outline: none;
}

/* Submit button */
.login-form input[type="submit"] {
  background-color: hsl(0, 0%, 25%);
  color: white;
  font-size: 1.1em;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-form input[type="submit"]:hover {
  background-color: hsl(127, 12%, 57%);
  color: black;
}

/* Small note under form */
.login-note {
  text-align: center;
  font-size: 0.9em;
  color: #555;
}

.login-note a {
  color: hsl(127, 12%, 40%);
  font-weight: bold;
  text-decoration: none;
}

.login-note a:hover {
  text-decoration: underline;
}

.mentorship-videos {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.mentorship-videos h2 {
  font-size: 2.2em;
  color: #222;
  margin-bottom: 10px;
}

.video-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1em;
  color: #555;
  line-height: 1.6;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  justify-items: center;
}

.video-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 500px;
  transition: transform 0.2s ease;
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-card iframe {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.video-card h3 {
  font-size: 1.3em;
  color: hsl(0, 0%, 20%);
  margin-bottom: 8px;
}

.video-card p {
  font-size: 0.95em;
  color: #555;
}
.logo-title {
  display: flex;
  align-items: center;
  gap: 10px; /* space between logo and text */
}

.nav-logo {
  height: 50px; /* adjust size to fit header */
  width: auto;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.1);
}
.community-section {
  background-color: #23272a;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.community-container {
  max-width: 700px;
  margin: 0 auto;
}

.discord-logo {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.discord-logo:hover {
  transform: scale(1.1);
}

.community-section h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

.community-section p {
  font-size: 1.1em;
  color: #dcdcdc;
  margin-bottom: 30px;
  line-height: 1.6;
}

.discord-btn {
  background-color: #5865F2;
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.discord-btn:hover {
  background-color: #4752C4;
  transform: translateY(-3px);
}
/* ===== Market Section ===== */
.market-section {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.market-card {
  display: inline-block;
  background-color: #1e1e1e;
  border-radius: 10px;
  padding: 25px 40px;
  margin-top: 20px;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
}

.market-card p {
  font-size: 1.3em;
  margin: 10px 0;
}

#trend-icon {
  margin-left: 8px;
  font-size: 1.3em;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

#trend-icon.up {
  color: #00ff6a;
}

#trend-icon.down {
  color: #ff4b4b;
}

.update-time {
  font-size: 0.9em;
  color: #ccc;
  margin-top: 10px;
}