body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1d1d1d; /* Background color */
    color: white; /* Default text color */
}

/* Modal Styles */
.modal {
    display: none; /* Hide modal by default */
    position: fixed; /* Position modal */
    z-index: 9999; /* Ensure it appears on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    opacity: 0; /* Initially invisible */
    transition: opacity 0.3s ease; /* Smooth transition for opacity */
}

.modal-content {
    background-color: #1a1a1a;
    margin: 15% auto; /* Center modal vertically and horizontally */
    padding: 20px;
    border: 1px solid #896CE7;
    width: 80%;
    max-width: 600px; /* Set maximum width */
    opacity: 0; /* Initially invisible */
    transform: translateY(-20px); /* Initial position off-screen */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transitions for opacity and transform */
}

/* Show the modal and modal content when displayed */
.modal.show {
    display: block;
    opacity: 1;
}

.modal.show .modal-content {
    opacity: 1;
    transform: translateY(0);
}

/* Close button styles */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #896CE7;
    text-decoration: none;
    cursor: pointer;
}

.modal-content .donation-link {
    color: #896CE7; /* Set link color */
    text-decoration: none; /* Remove underline */
}

.modal-content .donation-link:hover {
    text-decoration: underline; /* Underline on hover */
}

.container {
    text-align: center;
    margin-top: 10%;
    max-width: 870px; /* Limit container width */
    margin-left: auto; /* Center container horizontally */
    margin-right: auto; /* Center container horizontally */
}

.brand {
    font-size: 3em;
    margin-bottom: 20px;
}

.brand .nexus {
    color: white; /* Color for "NEXUS" */
}

.brand .best {
    color: #896CE7; /* Color for ".BEST" */
}

.buttons {
    display: flex;
    justify-content: center;
}

.button {
    padding: 10px 20px;
    margin: 0 10px;
    border: 2px solid #896CE7; /* Border color for unfilled button */
    background-color: transparent;
    color: #896CE7; /* Default text color for unfilled button */
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 3px; /* Rounded corners */
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    text-decoration: none; /* Remove underline for anchor */
}

.button:hover {
    background-color: #896CE7; /* Change background color on hover */
    color: white; /* Change text color on hover */
}

.button.filled {
    background-color: #896CE7; /* Background color for filled button */
    color: white; /* Text color for filled button */
}

.button.filled:hover {
    background-color: #7054a5; /* Slightly darker background color on hover for filled button */
}

.description {
    margin-top: 20px; /* Add space between buttons and description */
    font-size: 1.1em; /* Adjust font size */
    line-height: 1.6; /* Adjust line height */
    text-align: center; /* Align text to the center */
}

.description .colored-text {
    color: #896CE7; /* Example color for differently colored text */
}

hr {
    border: none;
    border-top: 1px solid #896CE7; /* Change the color and style as needed */
    max-width: 80%; /* Set maximum width for the line */
    margin: 20px auto; /* Center the line */
}

.discount-offer {
    background-color: #1a1a1a; /* Background color for discount offer section */
    padding: 20px;
    border-radius: 5px;
    margin: 20px auto; /* Center discount offer horizontally */
    max-width: 900px; /* Set maximum width */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.discount-offer h2 {
    color: #896CE7; /* Heading color */
    text-align: center;
    margin-bottom: 10px; /* Add margin below heading */
}

.discount-offer p {
    font-size: 1.1em;
    line-height: 1.6;
    color: white; /* Text color */
    text-align: center;
    margin-top: 10px; /* Adjust spacing between paragraphs */
}

.discount-offer .price {
    color: #896CE7; /* Color for the price */
    font-weight: bold; /* Make the price bold */
}

.service-support {
    padding: 20px;
    background-color: #1a1a1a; /* Same background color as discount offer */
    color: white; /* Same text color as discount offer heading */
    text-align: center;
    margin-top: 20px; /* Adjust margin top as needed */
    padding-bottom: 50px;
}

.service-support p {
    margin: 0 0 10px; /* Sets top and right margins to 0, bottom margin to 10px, and left margin to 0 */
}

.service-support a {
    color: #896CE7; /* Adjust link color as needed */
    text-decoration: none;
}

.service-support a:hover {
    text-decoration: underline;
}

.service-support .discord-paragraph {
    font-weight: bold;
}

.footer {
    background-color: #1a1a1a; /* Same background color as discount offer */
    padding: 10px; /* Adjust padding for better spacing */
    color: white; /* Text color */
    position: fixed; /* Fixed positioning */
    bottom: 0; /* Stick to the bottom */
    left: 0; /* Align to the left */
    width: 100%; /* Occupy full width */
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Align items vertically in the center */
    justify-content: space-around; /* Space items evenly with some space on the sides */
}

.footer p {
    margin: 0; /* Remove default margin */
    text-align: left; /* Align the text to the left */
}

.footer .prohibited-text {
    color: #896CE7; /* Set a different color for the prohibited text */
}

.footer .footer-link {
    margin: 0 5px; /* Adjust margin as needed */
    text-decoration: none;
    color: white; /* Adjust color as needed */
    transition: color 0.3s ease; /* Smooth transition effect */
}

.footer .footer-link:hover {
    color: #896CE7; /* Adjust hover color as needed */
}