.page-blog-90ok-login-troubleshooting {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --card-bg: #17191F;
  --background-color: #0D0E12;
  --text-main-color: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange-color: #D96800;

  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Default text color for dark body background */
  background-color: var(--background-color); /* Body background */
}

.page-blog-90ok-login-troubleshooting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-90ok-login-troubleshooting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--background-color);
}

.page-blog-90ok-login-troubleshooting__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-blog-90ok-login-troubleshooting__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-blog-90ok-login-troubleshooting__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-90ok-login-troubleshooting__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-blog-90ok-login-troubleshooting__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  color: var(--glow-color);
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 176, 77, 0.5);
}

.page-blog-90ok-login-troubleshooting__description {
  font-size: 1.1em;
  color: var(--text-main-color);
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-blog-90ok-login-troubleshooting__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange-color) 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-blog-90ok-login-troubleshooting__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
  filter: brightness(1.1);
}

/* Content Sections */
.page-blog-90ok-login-troubleshooting__content-section {
  padding: 60px 0;
}

.page-blog-90ok-login-troubleshooting__dark-bg {
  background-color: var(--background-color);
  color: var(--text-main-color);
}

.page-blog-90ok-login-troubleshooting__light-section {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-90ok-login-troubleshooting__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: var(--glow-color);
  text-shadow: 0 0 8px rgba(255, 176, 77, 0.3);
}

.page-blog-90ok-login-troubleshooting__light-section .page-blog-90ok-login-troubleshooting__section-title {
  color: var(--deep-orange-color);
  text-shadow: none;
}

.page-blog-90ok-login-troubleshooting__text-block {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px auto;
  text-align: center;
  line-height: 1.8;
}

.page-blog-90ok-login-troubleshooting__light-section .page-blog-90ok-login-troubleshooting__text-block {
  color: #555555;
}

/* Card Grid */
.page-blog-90ok-login-troubleshooting__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-90ok-login-troubleshooting__card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main-color);
}

.page-blog-90ok-login-troubleshooting__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-90ok-login-troubleshooting__card-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-90ok-login-troubleshooting__sub-title {
  font-size: 1.3em;
  color: var(--glow-color);
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 500;
}

.page-blog-90ok-login-troubleshooting__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-blog-90ok-login-troubleshooting__list li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.page-blog-90ok-login-troubleshooting__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  object-fit: cover;
}

/* Feature Grid (for Tips section) */
.page-blog-90ok-login-troubleshooting__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-90ok-login-troubleshooting__feature-card {
  background-color: #ffffff; /* Light background for features */
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
}

.page-blog-90ok-login-troubleshooting__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}