/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #fff;
  background-color: #0A0A0A;
}

h1, h2, h3 {
  font-family: 'Orbitron', sans-serif;
}

/* Announcement Bar */
.announcement-bar {
  background-color: #8A2BE2;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
  font-weight: bold;
}

/* Sticky Header */
.sticky-header {
  background-color: #0A0A0A;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  color: #00BFFF;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-size: 16px;
}

nav a:hover {
  color: #8A2BE2;
}

/* Hero Section */
.hero-section {
  background-image: url('https://via.placeholder.com/1920x800'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 100px 20px;
}

.hero-section h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 24px;
  color: #C0C0C0;
  margin-bottom: 30px;
}

.hero-section button {
  background-color: #00BFFF;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
}

.hero-section button:hover {
  background-color: #8A2BE2;
}

/* Feature Highlights */
.feature-highlights {
  background-color: #0A0A0A;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  text-align: center;
}

.feature i {
  font-size: 36px;
  color: #00BFFF;
  margin-bottom: 10px;
}

.feature h3 {
  font-size: 18px;
}

/* Trading Tools */
.trading-tools {
  background-color: #00BFFF;
  text-align: center;
  padding: 60px 20px;
}

.trading-tools h2 {
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.tool i {
  font-size: 36px;
  color: #8A2BE2;
  margin-bottom: 10px;
}

.tool h3 {
  font-size: 18px;
}

/* Why Choose Us */
.why-choose-us {
  background-color: #0A0A0A;
  text-align: center;
  padding: 60px 20px;
}

.points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.point i {
  font-size: 24px;
  color: #00BFFF;
  margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
  background-color: #C0C0C0;
  color: #0A0A0A;
  text-align: center;
  padding: 60px 20px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Newsletter */
.newsletter {
  background-color: #00BFFF;
  text-align: center;
  padding: 60px 20px;
}

.newsletter input {
  padding: 12px;
  border: none;
  border-radius: 5px;
  width: 300px;
  max-width: 100%;
  margin-right: 10px;
}

.newsletter button {
  background-color: #8A2BE2;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  cursor: pointer;
}

.newsletter button:hover {
  opacity: 0.9;
}

/* Footer */
footer {
  background-color: #0A0A0A;
  text-align: center;
  padding: 40px 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

.social-icons a {
  color: #00BFFF;
  font-size: 24px;
  margin: 0 10px;
}

.social-icons a:hover {
  color: #8A2BE2;
}

.contact-info {
  margin-top: 20px;
  font-size: 14px;
  color: #C0C0C0;
}
/* Login Section */
.login-section {
  background-color: #0A0A0A;
  text-align: center;
  padding: 60px 20px;
}

.login-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  margin-bottom: 30px;
}

.login-section form {
  max-width: 400px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: #C0C0C0;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #8A2BE2;
  border-radius: 5px;
  background-color: #0A0A0A;
  color: #fff;
}

.login-section button {
  background-color: #8A2BE2;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
  font-size: 16px;
}

.login-section button:hover {
  background-color: #00BFFF;
}

.login-section p {
  margin-top: 20px;
  font-size: 14px;
  color: #C0C0C0;
}

.login-section a {
  color: #8A2BE2;
  text-decoration: none;
}

.login-section a:hover {
  color: #00BFFF;
}
/* Signup Section */
.signup-section {
  background-color: #0A0A0A;
  text-align: center;
  padding: 60px 20px;
}

.signup-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  margin-bottom: 30px;
}

.signup-section form {
  max-width: 400px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: #C0C0C0;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #8A2BE2;
  border-radius: 5px;
  background-color: #0A0A0A;
  color: #fff;
}

.signup-section button {
  background-color: #8A2BE2;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
  font-size: 16px;
}

.signup-section button:hover {
  background-color: #00BFFF;
}

.signup-section p {
  margin-top: 20px;
  font-size: 14px;
  color: #C0C0C0;
}

.signup-section a {
  color: #8A2BE2;
  text-decoration: none;
}

.signup-section a:hover {
  color: #00BFFF;
}

/* Trading Page Styles */
.trading-section {
  background-color: #0A0A0A;
  text-align: center;
  padding: 60px 20px;
}

.trading-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.trading-section p {
  font-size: 18px;
  color: #C0C0C0;
  margin-bottom: 40px;
}

.trading-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.trading-features .feature {
  background-color: #1A1A1A;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.trading-features .feature i {
  font-size: 36px;
  color: #00BFFF;
  margin-bottom: 10px;
}

.trading-features .feature h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.trading-features .feature p {
  font-size: 16px;
  color: #C0C0C0;
}

.trading-section button {
  background-color: #8A2BE2;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.trading-section button:hover {
  background-color: #00BFFF;
}

/* About Us Page Styles */
.about-section {
  background-color: #0A0A0A;
  text-align: center;
  padding: 60px 20px;
}

.about-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 18px;
  color: #C0C0C0;
  margin-bottom: 40px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.about-features .feature {
  background-color: #1A1A1A;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.about-features .feature i {
  font-size: 36px;
  color: #00BFFF;
  margin-bottom: 10px;
}

.about-features .feature h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.about-features .feature p {
  font-size: 16px;
  color: #C0C0C0;
}

/* Contact Page Styles */
.contact-section {
  background-color: #0A0A0A;
  text-align: center;
  padding: 60px 20px;
}

.contact-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 18px;
  color: #C0C0C0;
  margin-bottom: 40px;
}

.contact-section form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-section .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.contact-section .form-group label {
  display: block;
  font-size: 14px;
  color: #C0C0C0;
  margin-bottom: 5px;
}

.contact-section .form-group input,
.contact-section .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #8A2BE2;
  border-radius: 5px;
  background-color: #0A0A0A;
  color: #fff;
}

.contact-section button {
  background-color: #8A2BE2;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.contact-section button:hover {
  background-color: #00BFFF;
}

/* Resources Page Styles */
.resources-section {
  background-color: #0A0A0A;
  text-align: center;
  padding: 60px 20px;
}

.resources-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.resources-section p {
  font-size: 18px;
  color: #C0C0C0;
  margin-bottom: 40px;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.resources-grid .resource {
  background-color: #1A1A1A;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.resources-grid .resource i {
  font-size: 36px;
  color: #00BFFF;
  margin-bottom: 10px;
}

.resources-grid .resource h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.resources-grid .resource p {
  font-size: 16px;
  color: #C0C0C0;
}
/* Mission Section */
.mission-section {
  background-color: #0A0A0A;
  text-align: center;
  padding: 60px 20px;
}

.mission-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.mission-section p {
  font-size: 18px;
  color: #C0C0C0;
  max-width: 800px;
  margin: 0 auto;
}

/* Team Section */
.team-section {
  background-color: #0A0A0A;
  text-align: center;
  padding: 60px 20px;
}

.team-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.team-section p {
  font-size: 18px;
  color: #C0C0C0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.team-member {
  background-color: #1A1A1A;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.team-member h3 {
  font-size: 24px;
  margin-bottom: 5px;
}

.team-member p {
  font-size: 16px;
  color: #C0C0C0;
}