/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #ffffff;
    background-image: url('rules-background.jpg'); /* Use a background suitable for rules and regulations */
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

header {
    text-align: center;
    padding: 40px;
    background-color: #1e1e1e;
    border-bottom: 2px solid #ff4081;
    box-shadow: 0 0 10px #ff4081, 0 0 20px #ff4081;
    background-image: linear-gradient(to right, #2a2a2a, #1e1e1e, #2a2a2a);
}

h1 {
    font-size: 3rem;
    color: #f9a602;
    text-shadow: 0 0 10px #f9a602, 0 0 20px #ff4081;
}

main {
    padding: 20px;
}

.rules-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(31, 31, 31, 0.9);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    border: 2px solid #f9a602;
}

.rules-content h2 {
    font-size: 2.5rem;
    color: #f9a602;
    text-shadow: 0 0 10px #f9a602, 0 0 20px rgba(255, 64, 129, 0.7);
    margin-bottom: 20px;
}

.rules-content h3 {
    font-size: 1.8rem;
    color: #ff4081;
    text-shadow: 0 0 10px #ff4081, 0 0 15px rgba(255, 64, 129, 0.7);
    margin-top: 30px;
}

.rules-content p, .rules-content ul {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 20px;
}

.rules-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #1e1e1e;
    border-top: 2px solid #ff4081;
    box-shadow: 0 0 10px #ff4081, 0 0 20px #ff4081;
    background-image: linear-gradient(to right, #2a2a2a, #1e1e1e, #2a2a2a);
    color: #f9a602;
    text-shadow: 0 0 10px #f9a602;
}
