        /* Open Modal Button */
        .open-modal-btn {
          background-color: #007bff;
          color: white;
          padding: 12px 20px;
          font-size: 16px;
          border: none;
          border-radius: 8px;
          cursor: pointer;
          transition: 0.3s;
      }

      .open-modal-btn:hover {
          background-color: #0056b3;
      }

      /* Modal Background */
      .modal-bg {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.5);
          backdrop-filter: blur(8px);
          display: flex;
          justify-content: center;
          align-items: center;
      }

      /* Modal Box */
      .modal {
          background: #222;
          padding: 20px;
          width: 500px;
          border-radius: 12px;
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
          text-align: center;
          position: relative;
      }

      /* Modal Close Button */
      .close-btn {
          position: absolute;
          top: 12px;
          right: 15px;
          font-size: 20px;
          cursor: pointer;
          border: none;
          background: none;
          color: white;
      }

      /* Subscription Options (Styled as Buttons) */
      .subscription-option {
        font-family: Consolas;
          background-color: #181818;
          padding: 15px;
          margin: 10px 0;
          border-radius: 10px;
          border: 1px solid #333;
          text-align: left;
          cursor: pointer;
          transition: 0.3s;
          width: 100%;
          display: block;
      }

      .subscription-option:hover {
          border-color: rgb(199, 0, 0);
          box-shadow: 0px 0px 8px rgba(144, 0, 0, 0.8);
      }

      .subscription-option h3 {
          margin: 0;
          font-size: 16px;
          color: white;
      }

      .subscription-option p {
          margin: 5px 0;
          font-size: 13px;
          color: #bbb;
      }

      .price-stock {
          display: flex;
          justify-content: space-between;
          align-items: center;
          margin-top: 8px;
      }

      .price {
          font-size: 16px;
          font-weight: bold;
          color: white;
      }

      .stock {
          font-size: 12px;
          color: #8b8b8b;
      }

      /* Email Panel */
      .email-panel
      {
          display: none;
          flex-direction: column;
          justify-content: center;
          align-items: center;
      }

      .email-input
      {
        background-color: var(--primary-color);
        color: var(--text-color);
        overflow: hidden;
        resize: none;
        width: 99%;
        min-width: fit-content;
        text-align: center;
        vertical-align: middle;
        line-height: 2em;
        outline: none;
        margin-bottom: 10px;
      }

      .coupon-input-area
      {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 10px;
        width: 80%;
        height: 100%;
      }
.coupon-input
{
  background-color: var(--primary-color);
  color: var(--text-color);
  overflow: hidden;
  resize: none;
  width: 80%;
  min-width: fit-content;
  text-align: center;
  vertical-align: middle;
  line-height: 2em;
  outline: none;
  margin-bottom: 10px;
}


      .submit-btn {
        font-family: Consolas;
          background-color: rgb(199, 0, 0);
          color: white;
          padding: 12px 20px;
          font-size: 16px;
          border: none;
          border-radius: 8px;
          cursor: pointer;
          transition: 0.3s;
          width: 100%;
          margin-bottom: 10px;
      }

      .submit-btn:hover {
        background-color: red;
        transform: scale(1.01);
      }

      .back-btn {
        font-family: Consolas;
          background-color: transparent;
          color: white;
          padding: 10px;
          border: none;
          cursor: pointer;
          text-decoration: underline;
          display: block;
          margin-top: 10px;
      }

      .fade-in {
          animation: fadeIn 0.3s ease-in-out;
      }

      @keyframes fadeIn {
          from { opacity: 0; transform: translateY(-10px); }
          to { opacity: 1; transform: translateY(0); }
      }

      .purchase-information
      {
          color: white;
          font-family: Consolas;
          font-style: italic;
          font-size: 15px;
      }
body {
  background-color: #0E0E0E;
  color: #FFF;
  font-family: Consolas;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}
.compatibility-highlight {
  color: red;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.header a {
  color: #FF0000;
  text-decoration: none;
  font-size: 18px;
  margin-right: 10px;
}

.video-compatibility-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 20px;
}

.video {
  flex: 3;
}

.video iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.compatibility-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.compatibility {
  background-color: #1C1C1C;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.compatibility h2 {
  color: red;
  margin-top: 0;
}

.compatibility ul {
  text-align: left;
}

.compatibility li {
  margin: 8px 0;
}

.purchase-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-button
{
    font-family: Consolas;
    background-color: rgb(199, 0, 0);
    color: white;
    border: none;
    width: 33px;
    height: 33px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.check-button:hover
{
    background-color: red;
    transform: scale(1.05);
}
.purchase-button {
  font-family: Consolas;
  background-color: rgb(199, 0, 0);
  color: white;
  padding: 15px 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.purchase-button:hover {
  background-color: red;
}
.submit-btn-crypto
{
  max-width: 99%;
}
.cryptocurrency-options-container
{
  display: flex;
  flex-direction: column;
  align-items: left;
  max-height: 150px;
  overflow-y: auto;
  overflow-x: hidden;
}
.cryptocurrency-options-container::-webkit-scrollbar
{
  width: 8px;
}

.cryptocurrency-options-container::-webkit-scrollbar-thumb
{
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.cryptocurrency-options-container::-webkit-scrollbar-track
{
    background: rgba(150, 150, 150, 0.1);
}
.features {
  text-align: left;
  margin: 20px 0;
  background-color: #1C1C1C;
  padding: 15px;
  border-radius: 8px;
}
.features h2 {
  color: #ff0000;
}
.features ul {
  list-style: disc;
  padding-left: 20px;
}
.features ul li {
  margin: 8px 0;
}

.description {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
  background-color: #1C1C1C;
  padding: 15px;
  border-radius: 8px;
  text-align: left;
}

.description h2 {
  color: red;
}

.main-purchase-button {
  font-family: Consolas;
  background-color: rgb(199, 0, 0);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 20px;
}

.main-purchase-button:hover {
  background-color: red;
}