body {
    font-family: Arial, sans-serif;
    background: linear-gradient(151deg, #071018, #1a3dda, #030303);
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh; /* Ensure at least full viewport height */
    text-align: left; /* Align all text to the left */
    flex-direction: column;
    overflow: auto; /* Allow scrolling if content exceeds the viewport */
}

.container {
    background-color: #191919;
    padding: 40px;
    border-radius: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 700px;
    box-sizing: border-box;
    margin-top: 20px; /* Small gap from the top of the viewport */
    margin-bottom: 20px; /* Small gap from the top of the viewport */
    margin-left: auto; /* Center horizontally */
    margin-right: auto; /* Center horizontally */
}

h1 {
    color: #f9f9f9;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-left: 20px;
    margin-right: 20px;
    text-align: left;
}

h2, h3, h4 {
    color: #cfd8dc;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-left: 20px;
    margin-right: 20px;
    text-align: left;
}

h1 {
    font-size: 1.9rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.3rem;
}

h4 {
    font-size: 1.2rem;
    color: #c1c1c1;
    letter-spacing: 0.10em;
}

a {
    color:#bac8d0;
    text-decoration: none;
}

a:hover {
    color:#b0bec5;
    text-decoration: underline;
}

p {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.button {
    padding: 12px 65px;
    background-color: #5260ff;
    color: #f0f0f0;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px; /* Rounded edges */
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 35px;
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    text-align: center; /* Ensure button text is centered */
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.button:hover {
    background-color: #4753d7; /* Change to a more vibrant orange on hover */
    text-decoration: none;
    color: #e0e0e0;
    transform: translateY(-4px); /* Slight lift on hover for interactivity */
}

.announcement {
    margin-top: 10px;
    text-align: left;
    font-size: 1.0rem;
    color: #bababa;
    font-family: 'Poppins', sans-serif;
}

.announcement ul {
    padding-left: 20px;
    list-style-type: none;
}

.announcement ul li {
    padding-left: 10px;
    position: relative;
    line-height: 1.4;
}

.announcement ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4b58e8;
}

.announcement p {
    margin: 0;
    padding: 0 10px;
    text-align: left;
    font-size: 0.9rem;
    color: #bababa;
    font-family: 'Poppins', sans-serif;
    margin-top: 30px;
    margin-bottom: 5px;
}

/* Center button by wrapping it in a div */
.button-container {
    text-align: center; /* Center-align the button container */
    width: 100%; /* Ensure the container spans full width */
}

code {
    background-color: #3c1f22; /* Dark purple for inline code */
    color: #bababa;
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
}

pre code {
    background-color: #262261; /* Darker purple for block-level code */
    color: #e0e0e0;
    padding: 15px;
    border-radius: 8px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
    display: block;
    white-space: pre-wrap;
    word-wrap: break-word;
}

pre code .keyword {
    color: #ffb74d; /* Yellow for keywords */
}

pre code .function {
    color: #81c784; /* Green for functions */
}

pre code .string {
    color: #f48fb1; /* Pink for strings */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 15px; /* Keep default width */
}

::-webkit-scrollbar-track {
    background: #1c1c1c; /* Darker track color */
}

::-webkit-scrollbar-thumb {
    background-color: #3a3a3a; /* Darker thumb color */
    border-radius: 10px; /* Keep rounded corners */
    border: 4px solid #1c1c1c;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #616161; /* Slightly lighter on hover */
}

/* For Firefox */
scrollbar {
    width: 10px;
    height: 10px;
}

scrollbar-track {
    background: #1c1c1c;
    border-radius: 10px;
}

scrollbar-thumb {
    background-color: #3a3a3a;
    border-radius: 10px;
    border: 3px solid #1c1c1c;
}

scrollbar-thumb:hover {
    background-color: #616161;
}

/* Responsive design */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h4 {
        font-size: 1.1rem;
        color: #c1c1c1;
        letter-spacing: 0.10em;
    }

    p {
        font-size: 1.0rem;
        line-height: 1.6;
        margin-bottom: 20px;
        margin-left: 20px;
        margin-right: 20px;
        text-align: left;
        font-family: 'Poppins', sans-serif;
    }

    .announcement {
        margin-top: 10px;
        text-align: left;
        font-size: 0.95rem;
        color: #bababa;
        font-family: 'Poppins', sans-serif;
    }

    .announcement p {
        margin: 0;
        padding: 0 10px;
        text-align: left;
        font-size: 0.85rem;
        color: #bababa;
        font-family: 'Poppins', sans-serif;
        margin-top: 30px;
        margin-bottom: 5px;
    }
    .button {
        padding: 12px 60px;
        font-size: 1.0rem;
    }
}