/* Global Styles */
body {
  background-color: #1a0e0e; 
  color: #ffffff; 
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

/* Header */
header {
  background-color: rgba(50, 10, 10, 0.9);
  border-bottom: 2px solid #800000;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(128, 0, 0, 0.8);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 0 5px #800000);
}

/* Header buttons */
.header-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.header-buttons a {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(45deg, #800000, #cc3333);
  border: 2px solid #cc3333;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(204, 51, 51, 0.5);
}

.header-buttons a:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(204, 51, 51, 0.8);
}

/* Wrap Container */
.wrap {
  width: 1220px;
  margin: 30px auto;
  padding: 20px;
  text-align: center;
  background-color: rgba(30, 0, 0, 0.85);
  border: 2px solid #cc3333;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(204, 51, 51, 0.6);
}

/* Button */
.m_but {
  padding: 10px 20px;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(to right, #800000, #cc3333);
  border: 2px solid #cc3333;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(204, 51, 51, 0.5);
}

.m_but:hover {
  box-shadow: 0 0 20px #aa0000;
  transform: translateY(-2px);
}

/* Footer */
footer {
  background-color: #1a0e0e;
  padding: 20px;
  text-align: center;
  margin-top: 50px;
  border-top: 2px solid #800000;
  box-shadow: 0 -2px 20px #800000;
}

footer .wrap,
footer a {
  color: #fff;
}

footer a:hover {
  text-decoration: underline;
}

/* Content Sections */
.monetizing,
.content-block {
  background-color: rgba(40, 0, 0, 0.9);
  padding: 20px;
  border: 2px solid #cc3333;
  border-radius: 5px;
  margin-top: 20px;
  box-shadow: 0 0 15px rgba(204, 51, 51, 0.6);
}

/* Headings */
h1, h2, h3 {
  color: #ffffff;
}

/* Text */
p,
li {
  color: #ffffff;
  line-height: 1.6;
}

/* Tables */
table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}

table th,
table td {
  padding: 10px;
  border: 1px solid #cc3333;
  text-align: left;
}

table th {
  background-color: #330000;
  color: #fff;
}

table td {
  background-color: rgba(30, 0, 0, 0.8);
}

/* FAQ Section */
.faq-item {
  background-color: rgba(50, 0, 0, 0.85);
  padding: 15px;
  margin-top: 15px;
  border: 2px solid #800000;
  border-radius: 5px;
  box-shadow: 0 0 10px #800000;
}

.faq-item h3 {
  margin: 0;
  color: #fff;
  cursor: pointer;
}

.faq-item p {
  display: none;
  color: #fff;
  margin-top: 10px;
}

/* Promo Image */
.promo-image img {
  width: 100%;
  max-width: 1220px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 0 15px #800000;
}

/* Promo Code Block */
.top_exc_st_id_input {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 40px;
  font-size: 25px;
  font-weight: bold;
  color: #800000;
  background-color: #fff;
  border: 2px solid #cc3333;
  border-radius: 5px;
  margin-bottom: 10px;
  box-sizing: border-box;
  text-align: center;
  padding: 0;
  line-height: 40px;
  box-shadow: 0 0 10px rgba(204, 51, 51, 0.5);
}

.centered-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.top_exc_st_id_sub {
  display: inline-block;
  width: 180px;
  height: 40px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
  color: #fff;
  background: linear-gradient(to right, #800000, #cc3333);
  border: 2px solid #cc3333;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  box-shadow: 0 0 10px rgba(204, 51, 51, 0.5);
}

.top_exc_st_id_sub:hover {
  background: linear-gradient(to right, #cc3333, #800000);
  box-shadow: 0 0 20px #aa0000;
}

.top_exc_st_id_sub:active {
  background: linear-gradient(to right, #aa0000, #dd4444);
}

.highlight-link {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}

.highlight-link:hover {
  color: #cc5500;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
  }

  .logo img {
    width: 150px;
  }

  .header-buttons {
    margin-top: 10px;
  }

  .m_but {
    font-size: 12px;
    padding: 10px 18px;
  }

  .wrap {
    width: 90%;
    padding: 10px;
  }

  .top_exc_st_id_input,
  .top_exc_st_id_sub {
    width: 100%;
    max-width: 100%;
  }

  table {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .logo img {
    width: 80px;
  }

  .m_but {
    font-size: 13px;
    padding: 10px 15px;
  }

  .wrap {
    padding: 10px;
  }
}
