body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0b0f17;
  color: #fff;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

.main-header {
  background: #e50914;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

.main-header h1 {
  margin: 0;
  font-size: 2rem;
}

.highlight {
  color: #ffe600;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.content {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
}

.content h2 {
  color: #ffe600;
  margin-top: 2rem;
}

ul, ol {
  padding-left: 1.5rem;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #ff4d57 0%, #b10f17 100%);
  color: #fff;
  padding: 0.82rem 1.5rem;
  text-decoration: none;
  margin: 1rem 0;
  font-weight: bold;
  border-radius: 10px;
  border: 1px solid #ff8c93;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
  filter: brightness(1.03);
}

.cta-button:active {
  transform: translateY(1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  background: #1b1f2a;
}

table th, table td {
  border: 1px solid #333;
  padding: 0.75rem;
  text-align: left;
}

details {
  margin: 1rem 0;
  background: #1a1d26;
  padding: 1rem;
  border-left: 4px solid #ffe600;
}

a {
  color: #ffe600;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.conclusion {
  margin-top: 2rem;
  padding: 1rem;
  background: #222;
  border-left: 5px solid #ffe600;
}

.main-footer {
  text-align: center;
  padding: 1.5rem;
  background: #1b1f2a;
  color: #999;
}


.blog-list {
  list-style: none;
  padding: 0;
}

.blog-list li {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #333;
  padding: 0.85rem 0.9rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.blog-list li:hover {
  transform: translateY(-1px);
  border-color: #ffe60066;
  background: rgba(255, 230, 0, 0.06);
}

.blog-list a {
  color: #ffe600;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
}

.blog-list a:hover {
  text-decoration: underline;
}

.blog-list p {
  color: #ccc;
  margin: 0.5rem 0 0;
}

.cta-section {
  margin-top: 2rem;
  text-align: center;
}

.content h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.8rem);
}

.content p,
.blog-list p {
  line-height: 1.65;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #ffe600;
  outline-offset: 3px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .main-header {
    padding: 1.25rem 1rem;
  }

  .main-header h1 {
    font-size: 1.5rem;
  }

  .content {
    padding: 1.25rem 1rem;
  }

  .blog-list a {
    font-size: 1.05rem;
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}
