/* =========================================================
   EVENT RULES PAGE CSS
========================================================= */

.event-rules-section {
    padding: 40px 0 70px;
    background: #f5f8fc;
}

.event-rules-header {
    max-width: 760px;
    margin: 0 auto 28px;
}

.rules-badge {
    display: inline-block;
    padding: 7px 16px;
    background: #4de0dd;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: #0e5678;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.event-rules-header h1 {
    font-size: 46px;
    font-weight: 800;
    color: #083b63;
    margin-bottom: 12px;
    line-height: 1.2;
}

.event-rules-header p {
    color: #6e8396;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.event-rules-wrapper {
    max-width: 760px;
    margin: 0 auto;
}

.event-rules-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 34px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.event-rules-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #083b63;
    margin-bottom: 22px;
}

.event-rules-card h3 i {
    color: #0b5d87;
    margin-right: 8px;
}

.rules-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.rules-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: #456176;
    font-size: 15px;
    line-height: 1.8;
}

.rules-list li::before {
    content: "\f058";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: #39b980;
}

.rules-form {
    border-top: 1px solid #e4edf3;
    padding-top: 22px;
}

.rules-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.rules-checkbox-row input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: #0b5d87;
    flex-shrink: 0;
}

.rules-checkbox-row label {
    color: #456176;
    font-size: 15px;
    line-height: 1.7;
    cursor: pointer;
}

.rules-action {
    display: flex;
    justify-content: flex-end;
}

.rules-next-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 150px;
    height: 52px;
    padding: 0 24px;
    border: none;
    border-radius: 12px;
    background: #0b5d87;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rules-next-btn:hover {
    background: #084866;
}

.rules-next-btn:disabled {
    background: #b7c8d4;
    cursor: not-allowed;
}

/* =========================
   Tablet
========================= */
@media (max-width: 991px) {
    .event-rules-header h1 {
        font-size: 38px;
    }
}

/* =========================
   Mobile
========================= */
@media (max-width: 767px) {
    .event-rules-section {
        padding: 30px 0 45px;
    }

    .event-rules-header h1 {
        font-size: 30px;
    }

    .event-rules-card {
        padding: 22px;
        border-radius: 16px;
    }

    .rules-list li,
    .rules-checkbox-row label {
        font-size: 14px;
    }

    .rules-action {
        justify-content: stretch;
    }

    .rules-next-btn {
        width: 100%;
    }
}

/* =========================
   Small Mobile
========================= */
@media (max-width: 575px) {
    .event-rules-header h1 {
        font-size: 26px;
    }

    .rules-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .event-rules-card {
        padding: 16px;
    }

    .event-rules-card h3 {
        font-size: 19px;
    }
}