/* Box model properties */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Background and color properties */
body {
  font-family: 'Montserrat';
  background-color: #2f343f;
  background-image: linear-gradient(to bottom, #2f343f, #434a54);
}

ul, ol {
  /* Custom list styles */
  list-style-type: none; /* Remove default list markers */
  font-family: 'Montserrat';
  padding: 0; /* Remove default padding */
  margin: 0; /* Remove default margin */
}

li {
  /* Custom list item styles */
  margin-bottom: 10px; /* Add spacing between list items */
}

a {
  color: #34A8FF; /* Primary link color */
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #2E7BBF; /* Hover link color */
}

a:active {
  color: #1A6DFF; /* Active link color */
}

a:visited {
  color: #4E8FFB; /* Visited link color */
}


a[href*="buy"],
a[href*="up"],
a[href*="bullish"],
a[href*="bulls"],
a[href*="bull"],
a[href*="breakout"],
a[href*="greed"],
a[href*="rise"],
a[href*="rises"],
a[href*="long"] {
  color: #90EE90;
}

a[href*="short"],
a[href*="down"],
a[href*="bearish"],
a[href*="bears"],
a[href*="bear"],
a[href*="falls"],
a[href*="fall"],
a[href*="correction"],
a[href*="reverse"],
a[href*="fear"],
a[href*="sell"] {
  color: #FF7F7F;
}

a[href*="wait"] {
  color: #EBB866;
}

/* Typography properties */
h1 {
  font-size: 30px;
  font-weight: 500;
  margin-top: 10px;
  text-align: center;
}

/* Typography properties */
h2 {
  font-size: 24px;
  font-weight: 500;
  margin-top: 20px;
  color: #666666;
}

p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #777777;
}

/* Layout and positioning properties */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-size: 600% 600%;

  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 20px auto;
  width: 80%;
}

.logo {
  width: 220px;
  height: 120px;
  margin-right: 0px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  animation: fadeIn 2s;
  margin: 0 auto;
}

.logo img {
  object-fit: cover;
  width: 100%;
  height: 100%;

  margin: 0 auto;
}

.navbar {
  font-size: 44px;
  font-weight: bold;
  font-family: 'Montserrat';
  text-align: left;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  animation: fadeIn 2s;
  margin: 0 auto;
}

.container {
  max-width: 800px;
  margin: 80px auto;
  padding: 40px;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  animation: fadeIn 2s;
  margin: 0 auto;
}

.content {
  line-height: 1.6;
  word-wrap: break-word;
  width: 100%;
  border-radius: 20px;
  margin: 0 auto;
}


/* Content */
.content h1, .content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.content h1 { font-size: 2.2em; text-align: center; }
.content h2 { font-size: 1.6em; margin-top: 32px; }

.content p {
  font-size: 1em;
  margin-bottom: 16px;
  color: var(--text-medium);
}


.content img {
  object-fit: cover;
  width: 80%;
  height: 80%;
  display: block;
  margin: 20px auto;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.content video {
  object-fit: cover;
  width: 80%;
  height: 80%;
  display: block;
  margin: 20px auto;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.footer {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #888888;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Forms */
form {
  color: var(--text-dark);
  font-size: 1em;
}
form label {
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}
form input, form textarea, form select {
  color: var(--text-dark);
  background: var(--bg-surface-alt);
  border: none;
  padding: 12px;
  border-radius: var(--radius);
  width: 100%;
  margin-bottom: 16px;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.05);
}
form input:focus, form textarea:focus, form select:focus {
  outline: 2px solid var(--accent1);
}

/* Buttons */
button {
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: #34A8FF;
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow);
}
button:hover

video {
  max-width: 640px;
  height: auto;
  border: 0px solid #000000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  form {
    max-width: 480px;
    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 0px;
  }
}

@media (max-width: 640px) {
  video {
    max-width: 480px;
    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 0px;
  }
}

@media (max-width: 640px) {
  .logo {
    width: 120px;
    height: 60px;
  }

  .navbar {
    font-size: 26px;
  }
}

label {
  color: #000000;
  margin: 10 auto;
}

button[type="submit"]:hover {
  background-color: #f9fafb;
  margin: 10 auto;
}
