/* ===============================
   Базовые настройки страницы
================================ */

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #222;
    background-color: #f5f5f5;
}

a {
    color: #1a73e8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ===============================
   Контейнер
================================ */



.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===============================
   Блок правил корта
================================ */

.court-rules-section {
    position: relative;
    padding: 60px 0;
    background-color: #f5f5f5;
    z-index: 90;
}

.court-rules-section .container {
    max-width: 1000px;
    margin: -230px auto 10px;
    position: relative;
    z-index: 20;
}

.court-rules-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 30;
}

.court-rules-title {
    margin-bottom: 30px;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: #111;
}

/* ===============================
   Список правил
================================ */

.court-rules-list {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}

.court-rules-list li {
    margin-bottom: 12px;
    padding-left: 5px;
}

/* ===============================
   Предупреждающий блок
================================ */

.court-rules-warning {
    margin-top: 40px;
    padding: 20px;
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 4px;
}

.court-rules-warning p {
    margin: 0;
    font-weight: 600;
    color: #856404;
}

/* ===============================
   Подтверждение согласия
================================ */

.court-rules-agreement {
    margin-top: 30px;
    padding: 20px;
    background-color: #f1f1f1;
    border-left: 4px solid #333;
}

.court-rules-agreement p {
    margin: 0;
    font-style: italic;
    color: #333;
}

/* ===============================
   Адаптивность
================================ */

@media (max-width: 768px) {
    .court-rules-title {
        font-size: 22px;
    }

    .court-rules-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .court-rules-title {
        font-size: 20px;
    }
}