.page-title {
    font-size: 24px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: white;
    overflow: auto;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background: none;
}

.page-bg {
    background: url('./forums/bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.image-container {
    position: relative;
    z-index: 1;
    width: 80%;
    max-width: 1200px;
    margin: 115px auto 0 auto;
}

.image-container img {
    width: 100%;
    border-radius: 3px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.content {
    position: relative;
    z-index: 1;
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    max-width: 1160px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 3px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


p {
    padding-left: 35px;
}

.main-container {
    max-width: 1000px;
    margin: 48px auto 40px auto;
    padding: 0 16px;
}

.rules-container {
    background: rgba(20, 20, 20, 0.85);
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.5);
    padding: 36px 28px 36px 28px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    text-align: left;
}

.rules-title {
    font-size: 2em;
    font-family: 'Montserrat', sans-serif;
    color: #00fff6;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-align: center;
}

.rule-section {
    margin-bottom: 32px;
}

.rule-section h2, .rule-section .rule-subtitle {
    color: #00fff6;
    font-size: 1.2em;
    margin-top: 32px;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    border-left: 4px solid #00fff6;
    padding-left: 12px;
    background: rgba(0,255,246,0.03);
}

.rule-label {
    color: #c0392b;
    font-weight: bold;
    margin-right: 6px;
}

.rule-desc {
    color: #fff;
}

ul {
    margin: 14px 0 14px 36px;
    padding-left: 18px;
}

ul li {
    margin-bottom: 8px;
    font-size: 1em;
    color: #bbb;
    line-height: 1.6;
    list-style-type: disc;
}

.rule-bullets {
    margin: 10px 0 10px 36px;
    padding-left: 18px;
}

.rule-bullets li {
    color: #bbb;
    font-size: 1em;
    margin-bottom: 6px;
    list-style-type: disc;
}

.rule-dash {
    margin-left: 36px;
    color: #999;
    font-size: 1em;
    margin-bottom: 6px;
    display: block;
}

.rule-example {
    margin-left: 36px;
    color: #aaa;
    font-size: 0.98em;
    font-style: italic;
    margin-bottom: 8px;
    display: block;
}

@media (max-width: 700px) {
    .main-container {
        padding: 0 2vw;
    }
    .rules-container {
        padding: 16px 6px 16px 6px;
    }
    .rules-title {
        font-size: 1.3em;
    }
    .rule-section h2, .rule-section .rule-subtitle {
        font-size: 1em;
        padding-left: 7px;
    }
}