/* Monster Tombola - official rules page (Monster black / green identity).
   Scoped to .mt-reglement. */

.mt-reglement *,
.mt-reglement *::before,
.mt-reglement *::after {
    box-sizing: border-box;
}

body.mt-reglement-body {
    margin: 0;
    padding: 0;
    background: #101010;
    font-family: "Poppins", "Cairo", sans-serif;
    color: #222;
}

.mt-reglement {
    --green: #AEC90B;
    --black: #0d0d0d;
    --ray: #1b1b1b;
    max-width: 760px;
    margin: 0 auto;
    min-height: 100vh;
    background: #fff;
    box-shadow: 0 0 24px rgba(0,0,0,.35);
}

.mt-reglement .header {
    position: relative;
    padding: 28px 22px 24px;
    text-align: center;
    color: #fff;
    background: linear-gradient(rgba(0,0,0,.28), rgba(0,0,0,.28)),
                repeating-conic-gradient(from -4deg at 50% 46%, #0d0d0d 0deg 10deg, var(--ray) 10deg 20deg);
}

.mt-reglement .header .claw {
    width: 62px;
    height: 54px;
    object-fit: contain;
}

.mt-reglement .header h1 {
    margin: 14px 0 4px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .3px;
}

.mt-reglement .header .subtitle {
    font-size: 13px;
    font-weight: 700;
    opacity: .92;
}

.mt-reglement .header .period {
    margin-top: 10px;
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid var(--green);
    border-radius: 18px;
    background: rgba(174,201,11,.16);
    font-size: 12px;
    font-weight: 700;
}

.mt-reglement .content {
    padding: 26px 24px 60px;
}

.mt-reglement .content article.section {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eee;
}

.mt-reglement .content article.section:last-of-type {
    border-bottom: none;
}

.mt-reglement .content article.section h2 {
    margin: 0 0 10px;
    color: #6f800a;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.mt-reglement .content article.section p,
.mt-reglement .content article.section li {
    margin: 0 0 8px;
    color: #333;
    font-size: 14px;
    line-height: 1.65;
}

.mt-reglement .content article.section ul {
    margin: 6px 0 8px;
    padding-left: 22px;
}

.mt-reglement .content article.section ul li {
    margin-bottom: 4px;
}

.mt-reglement .content article.section .note {
    margin: 10px 0;
    padding: 10px 12px;
    border-left: 3px solid var(--green);
    border-radius: 6px;
    background: #f7fbe4;
    font-size: 13.5px;
}

.mt-reglement .period-table {
    width: 100%;
    border-collapse: collapse;
    margin: 8px 0 4px;
    font-size: 14px;
}

.mt-reglement .period-table td {
    padding: 8px 10px;
    border: 1px solid #eee;
}

.mt-reglement .period-table td:first-child {
    width: 42%;
    background: #fafafa;
    font-weight: 700;
}

.mt-reglement a.email-link {
    color: #6f800a;
    font-weight: 700;
    text-decoration: none;
}

.mt-reglement a.email-link:hover {
    text-decoration: underline;
}

.mt-reglement .doc-footer {
    padding: 18px 16px 28px;
    border-top: 1px solid #eee;
    color: #888;
    text-align: center;
    font-size: 12px;
}

@media (max-width: 480px) {
    .mt-reglement .header h1 { font-size: 18px; }
    .mt-reglement .content { padding: 22px 18px 50px; }
    .mt-reglement .content article.section h2 { font-size: 15px; }
    .mt-reglement .content article.section p,
    .mt-reglement .content article.section li { font-size: 13.5px; }
}
