


.index-flex-layout {
  display: flex;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem !important;
}

.index-main-content {
  flex: 1;
  min-width: 0;
}


.hero-section {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, var(--bg-card) 50%, rgba(139, 92, 246, 0.05) 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  margin-bottom: 3rem;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: all 0.5s ease;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg,
    var(--accent-blue),
    var(--accent-blue-light),
    #8b5cf6,
    var(--accent-blue-light),
    var(--accent-blue)
  );
  background-size: 200% 100%;
  animation: gradientShift 8s ease infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

.hero-content-wrapper {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg,
    #60a5fa 0%,
    var(--accent-blue-light) 25%,
    #8b5cf6 50%,
    var(--accent-blue-light) 75%,
    #60a5fa 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: gradientText 6s ease infinite;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 900px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes gradientText {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    transform: translate(-50px, 50px) rotate(180deg);
    opacity: 0.15;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero-features-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  animation: fadeInUp 0.8s ease 0.4s both;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .hero-features-modern {
    grid-template-columns: 1fr;
  }

  .feature-card {
    text-align: center;
  }
}

.feature-card {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent-blue-light);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2),
              0 0 0 1px rgba(59, 130, 246, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  color: var(--accent-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.1));
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(139, 92, 246, 0.2));
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.feature-card h3 {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.feature-card:hover h3 {
  color: var(--accent-blue-light);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}


.how-to-use-section {
  margin: 3rem 0;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, var(--bg-card) 50%, rgba(139, 92, 246, 0.03) 100%);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.how-to-use-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), #8b5cf6, var(--accent-blue));
  background-size: 200% 100%;
  animation: gradientShift 6s ease infinite;
}

.how-to-use-section h2 {
  text-align: center;
  background: linear-gradient(135deg, var(--accent-blue-light), #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3rem;
  font-size: 2.25rem;
  font-weight: 800;
}

.usage-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .usage-steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    text-align: center;
  }
}

.step-card {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem 0.9rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2),
              0 0 0 1px var(--accent-blue);
  border-color: var(--accent-blue);
}

.step-card:hover::before {
  opacity: 1;
}

.step-number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-light), #8b5cf6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 0.75rem;
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.step-card:hover .step-number {
  transform: scale(1.15);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.6);
}

.step-card h3 {
  color: var(--accent-blue-light);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.step-card:hover h3 {
  color: var(--text-primary);
}

.step-card p {
  color: var(--text-secondary);
  line-height: 1.45;
  font-size: 0.825rem;
  position: relative;
  z-index: 1;
}


.live-status-header {
  text-align: center;
  margin: 3rem 0 2rem;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, var(--bg-card) 100%);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.live-status-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue-light), #8b5cf6);
  background-size: 200% 100%;
  animation: gradientShift 6s ease infinite;
}

.live-status-header h2 {
  background: linear-gradient(135deg, var(--accent-blue-light), #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.status-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin: 0;
  font-weight: 500;
}


.platforms-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.modern-platform-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.modern-platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--border-color);
  transition: all 0.3s ease;
}

.modern-platform-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.modern-platform-card.operational::before {
  background: linear-gradient(90deg, var(--success), #34d399);
}

.modern-platform-card.outage::before {
  background: linear-gradient(90deg, var(--danger), #f87171);
}

.modern-platform-card.possible-issue::before {
  background: linear-gradient(90deg, var(--warning), #fbbf24);
}

.modern-platform-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
              0 0 0 1px var(--border-hover);
  border-color: var(--border-hover);
}

.modern-platform-card:hover::after {
  opacity: 1;
}

.platform-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.platform-header h2 {
  color: var(--text-primary);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  transition: color 0.3s ease;
}

.modern-platform-card:hover .platform-header h2 {
  color: var(--accent-blue-light);
}

.status-badge {
  font-size: 0.75rem;
  padding: 0.45rem 0.95rem;
  border-radius: 20px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.status-badge.operational {
  background: rgba(72, 187, 120, 0.15);
  color: #68d391;
}

.status-badge.outage {
  background: rgba(239, 68, 68, 0.15);
  color: #fc8181;
}

.status-badge.possible-issue {
  background: rgba(245, 158, 11, 0.15);
  color: #f6ad55;
}

.modern-platform-card:hover .status-badge {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.graph-container {
  margin-top: 1rem;
  height: 120px;
}


.faq-section {
  margin: 3rem 0;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.03) 0%, var(--bg-card) 50%, rgba(59, 130, 246, 0.03) 100%);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6, var(--accent-blue), #8b5cf6);
  background-size: 200% 100%;
  animation: gradientShift 6s ease infinite;
}

.faq-section h2 {
  text-align: center;
  background: linear-gradient(135deg, #8b5cf6, var(--accent-blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 450px));
  gap: 2rem;
  justify-content: center;
}

.faq-item {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(139, 92, 246, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.2),
              0 0 0 1px rgba(139, 92, 246, 0.3);
  border-color: #8b5cf6;
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item h3 {
  color: var(--accent-blue-light);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.faq-item:hover h3 {
  color: #8b5cf6;
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 1;
}


.faq-section-modern {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
}

.faq-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.faq-section-header svg {
  stroke: var(--accent-blue-light);
}

.faq-section-header h2 {
  color: var(--text-primary);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item-modern {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item-modern:hover {
  border-color: var(--accent-blue);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.faq-toggle {
  color: var(--accent-blue-light);
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item-modern.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}

.faq-item-modern.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}


.latest-posts-section {
  margin: 3rem 0;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, var(--bg-card) 50%, rgba(139, 92, 246, 0.03) 100%);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.latest-posts-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), #8b5cf6, var(--accent-blue));
  background-size: 200% 100%;
  animation: gradientShift 6s ease infinite;
}

.latest-posts-title {
  text-align: center;
  background: linear-gradient(135deg, var(--accent-blue-light), #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 3rem;
}

.latest-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.latest-post-card {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
}

.latest-post-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.latest-post-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25),
              0 0 0 1px var(--accent-blue);
  border-color: var(--accent-blue);
}

.latest-post-card:hover::before {
  opacity: 1;
}

.latest-post-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.latest-post-card:hover .latest-post-img {
  transform: scale(1.05);
}

.latest-post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem 0;
  position: relative;
  z-index: 2;
}

.blog-date {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.latest-post-title {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0 1.5rem;
  margin: 0.75rem 0;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.latest-post-card:hover .latest-post-title {
  color: var(--accent-blue-light);
}

.latest-post-summary {
  color: var(--text-secondary);
  padding: 0 1.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.blog-category {
  background: rgba(59, 130, 246, 0.2);
  color: var(--accent-blue-light);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.latest-post-card:hover .blog-category {
  background: rgba(59, 130, 246, 0.3);
  transform: scale(1.05);
}

.blog-tags {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.tag {
  background: rgba(59, 130, 246, 0.15);
  color: var(--accent-blue-light);
  border-radius: 12px;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.latest-post-card:hover .tag {
  background: rgba(59, 130, 246, 0.25);
  border-color: rgba(59, 130, 246, 0.4);
}


.outage-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(71, 85, 105, 0.5);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.outage-card .outage-title {
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: left;
}

.outage-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.outage-item {
  background: var(--bg-secondary);
  border-left: 4px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  transition: transform 0.2s;
  text-align: center;
}

.outage-item:hover {
  transform: translateX(4px);
}

.outage-item.operational {
  border-left-color: var(--success);
  background: rgba(16, 185, 129, 0.1);
}

.outage-item.outage {
  border-left-color: var(--danger);
  background: rgba(239, 68, 68, 0.1);
}

.outage-item.possible-issue {
  border-left-color: var(--warning);
  background: rgba(245, 158, 11, 0.1);
}

.outage-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.outage-item a:hover .outage-message {
  color: var(--accent-blue-light);
}

.outage-message {
  color: var(--text-primary);
  font-weight: 500;
}


@media (max-width: 1200px) {
  .hero-section::after {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 1024px) {
  .index-flex-layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .platforms-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .index-flex-layout {
    padding: 0 !important;
    gap: 0;
  }

  .hero-section {
    padding: 2rem 1rem;
    border-radius: 0;
    margin-bottom: 0;
  }

  .hero-section::after {
    width: 300px;
    height: 300px;
    top: -30%;
    right: -30%;
  }

  .hero-title {
    font-size: 2rem;
    letter-spacing: -0.3px;
  }

  .hero-description {
    font-size: 1.05rem;
  }

  .hero-features-modern {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .feature-card {
    text-align: center;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
  }

  .how-to-use-section,
  .faq-section-modern,
  .latest-posts-section {
    padding: 2rem 1rem;
    margin-bottom: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .faq-section-modern {
    margin-top: 1.5rem;
  }

  .latest-posts-section {
    margin-top: 1.5rem;
  }

  .how-to-use-section h2,
  .live-status-header h2,
  .faq-section-modern h2,
  .latest-posts-title {
    font-size: 1.875rem;
  }

  .usage-steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .step-card {
    text-align: center;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }

  .platforms-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
  }

  .live-status-header {
    padding: 1.5rem 1rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .latest-posts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .index-flex-layout {
    padding: 0.5rem;
  }

  .hero-section {
    padding: 2rem 1rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-features-modern {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 1.5rem 1rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .how-to-use-section {
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: 1.5rem 1rem;
  }

  .how-to-use-section h2,
  .live-status-header h2,
  .faq-section h2,
  .latest-posts-title {
    font-size: 1.5rem;
  }

  .usage-steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    padding: 2rem 1.25rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .live-status-header {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .modern-platform-card {
    padding: 1.25rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
    touch-action: manipulation;
  }

  .modern-platform-card:hover {
    transform: none;
    box-shadow: none;
  }

  .modern-platform-card:hover::after {
    opacity: 0;
  }

  .modern-platform-card:hover .platform-header h2 {
    color: var(--text-primary);
  }

  .modern-platform-card:hover .status-badge {
    transform: none;
    box-shadow: none;
  }

  .platform-header h2 {
    font-size: 1.15rem;
  }

  .faq-section {
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: 1.5rem 1rem;
  }

  .faq-section-modern {
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: 1.5rem 1rem;
    margin-top: 1.5rem;
  }

  .faq-item {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .latest-posts-section {
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: 1.5rem 1rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .latest-post-card {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}




.ad-block-before-live-status,
.ad-block-before-faq {
  text-align: center;
  margin: 2rem auto;
  width: 100%;
  
  overflow: hidden;
}


.desktop-ad {
  text-align: center;
  margin: 1rem auto;
  display: flex;
  justify-content: center;
  max-width: 1000px;
}


@media (max-width: 768px) {

  
  .sidebar .desktop-ad {
    width: auto !important;
    max-width: 300px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  
  .sidebar .desktop-ad .adsbygoogle,
  .sidebar .desktop-ad .ad-banner-300x250 {
    max-width: 300px !important;
    width: 300px !important;
    height: 250px !important;
  }
}
