/* General body styling for the rules page */
body {
    background-image: url('/assets/img/illustrations/back.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    font-family: 'Rubik', sans-serif;
    color: #ffffff;
}

/* Navbar styling */
.navbar {
    background-color: transparent;
    transition: background-color 0.5s ease; /* Smooth transition */
}

.navbar {
    background-color: transparent;
    border: none;
}

.navbar .navbar-brand {
    color: #ffffff;
}

.navbar .nav-link {
    color: #ffffff;
}

.navbar .btn-primary {
    background-color: #ff6b6b;
    border-color: #ff6b6b;
}

.navbar .btn-primary:hover {
    background-color: #ff5252;
    border-color: #ff5252;
}

/* Main heading styling */
#rules h2 {
    color: #ffdd57;
    font-size: 2.5rem;
    font-weight: bold;
}

/* Rule sections styling */
#rules {
    padding-top: 150px; /* Adjust this value to increase/decrease the space */
}

#rules h2 {
    padding-top: 20px; /* You can adjust this value as needed */
    margin-top: 0;
}

#rules .rule {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 20px;
}

#rules .rule h5 {
    color: #ffdd57;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

#rules .rule p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer styling */
footer {
    background-color: #ffffff;
    color: #000000;
}

footer a {
    color: #000000;
}

footer a:hover {
    color: #00B5F1;
}

footer .border-bottom {
    border-color: #e0e0e0;
}

footer .text-1100 {
    color: #000000;
}
