/* Apply background image from URL */
body {
    background-image: url("https://files.catbox.moe/tzs0mw.png");
    background-size: cover; /* Cover the entire page */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent tiling */
    height: 100vh; /* Full viewport height */
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center the content box */
.content {
    background: rgba(0, 0, 0, 0.7); /* Dark transparent background */
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Style the "Important Notices" heading */
h2 {
    font-size: 1.5em;
    margin-bottom: 5px;
    color: #ffcc00; /* Yellow for emphasis */
}

/* Style the notices list */
.notices-list {
    list-style-type: none;
    padding: 0;
    font-size: 1em;
    margin-bottom: 20px;
}

.notices-list li {
    margin: 5px 0;
    padding: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-left: 5px solid #ffcc00; /* Yellow left border */
    border-radius: 5px;
}

/* Style the "Rules" heading */
h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

/* Style the rules list */
.rules-list {
    list-style-type: none;
    padding: 0;
    font-size: 1.2em;
}

.rules-list li {
    margin: 10px 0;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Last list item border removal */
.rules-list li:last-child {
    border-bottom: none;
}
