        body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('cc.jpg') no-repeat center center;
  background-size: cover;
  filter: blur(12px);
  z-index: -1;
  opacity: 1;
}



body {
    background-color: #020000;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, sans-serif;
    color: #ece4e4;
    height: 100vh;
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
    overflow: auto;
}

.crypto-container {
    background-color: #020000;
    padding: 20px;
    border-radius: 13px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: calc(100% - 40px);
    max-width: 768px;
    text-align: center;
    border: 1px solid #015a07;
    margin: 20px auto;
}

.crypto-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.crypto-option {
    cursor: pointer;
    padding: 10px;
    border: 1px solid #015a07;
    border-radius: 15px;
    margin: 5px 0;
    width: 50%;
    background-color: #010000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s;
    text-align: center;
    color: #d5d2d2;
}

.crypto-option:hover {
    background-color: #010000;
    transform: scale(1.02);
}

.highlight {
    color: #4fddf7;
}

.payment-details {
    display: none;
    margin-top: 20px;
    background: #000000;
    padding: 20px;
    width: calc(100% - 40px);
    max-width: 768px;
    text-align: center;
    border: 1px solid #021926;
    color: #015a07;
}

.confirm-button {
    border: 1px solid #000600;
    padding: 8px 12px;
    background-color: #86f08a;
    color: #060000;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    margin-top: 10px;
    border-radius: 0%;
}

.confirm-button:hover {
    background-color: #86f08a;
}

.message {
    display: none;
    font-size: 16px;
    color: #f09e9a;
    margin-top: 10px;
}

#qr-code {
    margin-top: 20px;
    text-align: center;
}

.countdown-container {
    display: none;
    margin-top: 20px;
}

.countdown {
    font-size: 1.5em;
    color: #f7fcfc;
    text-align: left;font-weight: bold;
}

.highlight {
font-weight: bold;
color: #8ae5ef;
}

#payment-address {
word-wrap: break-word;
white-space: pre-wrap;
max-width: 100%;
color: #8ae5ef;
}

.spinner {
    margin: 10px 0;
    font-size: 16px;
    color: #05767a;
    text-align: center;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 300px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

button {
    margin: 5px;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    background-color: #2d2e2e;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #2d2e2e;
}
