/* Article Page General Styles */
.article-page {
  padding: 6rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.article {
  text-align: left;
}

/* Level Header */
.level-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.level-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  color: #f2a900;
}

.progress-bar {
  width: 200px;
  height: 10px;
  background-color: #2e2e2e;
  border-radius: 5px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background-color: #f2a900;
  transition: width 0.5s ease;
}

/* Article Content */
.article__title {
  font-size: 2.5rem;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px rgba(242, 169, 0, 0.7);
}

.article p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.btc-logo {
  width: 100%;
  max-width: 200px;
  margin: 2rem auto;
  display: block;
  animation: rotate 5s linear infinite; /* Continuous rotation */
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.video {
  margin: 2rem auto;
  display: block;
}

.article__image {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  display: block;
}

/* Buttons */
.botton {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #f2a900;
  color: #1a1a1a90;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.botton:hover {
  transform: translateY(-3px);
  color: #1a1a1a;
  box-shadow: 0 0 15px rgba(242, 169, 0, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
  .article-page {
    padding: 2rem 1rem;
  }

  .article__title {
    font-size: 2rem;
  }

  .level-header {
    flex-direction: column;
    gap: 1rem;
  }

  .progress-bar {
    width: 100%;
  }
}

html {
  scroll-behavior: smooth;
}
