* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Infant', serif;
    background: #fafafa;
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: 600;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #CC5500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;

}

footer.main-footer {
    background: #1e1e1e;
    color: #ccc;
    padding: 30px 0px 20px;
    margin-top: 0;
    border-top: 4px solid #CC5500;
}

.main-content {
    padding-bottom: 40px;
    min-height: 70vh;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #CC5500;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo img {
    height: 40px;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.2s;
}

nav a:hover {
    color: #CC5500;
}

.search-wrapper {
    position: relative;
    display: inline-block;
}

#searchInput {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #1a1a1a;
    font-size: 0.9rem;
    width: 180px;
    transition: width 0.3s;
}

#searchInput:focus {
    width: 220px;
    border-color: #CC5500;
    outline: none;
}

#searchDropdown {
    position: absolute;
    top: 42px;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    width: 100%;
    min-width: 200px;
}

#searchDropdown div {
    padding: 10px 12px;
    cursor: pointer;
    color: #1a1a1a;
    transition: background 0.2s;
}

#searchDropdown div:hover {
    background: #fdebd0;
    color: #CC5500;
}

#loginBtn,
#profileBtn {
    background: #CC5500;
    border: none;
    padding: 8px 18px;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s, transform 0.1s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

#loginBtn:hover,
#profileBtn:hover {
    background: #b34700;
    transform: translateY(-1px);
}

.profile-icon {
    width: 18px;
    height: 18px;
}

.admin-panel-link {
    background: #CC5500;
    padding: 8px 18px;
    border-radius: 6px;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
}

.admin-panel-link:hover {
    background: #b34700;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

footer span {
    color: #CC5500;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
}

.hero {
    padding: 100px 20px;
    text-align: center;
    color: #261c12;
    border-bottom: 3px solid #CC5500;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: #CC5500;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.6rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.instructions {
    font-size: 2rem;
    padding: 100px 10px;
    text-align: center;
    color: #000000;
    border-bottom: 3px solid #CC5500;
}

.instructions h2 {
    font-family: 'Cinzel', serif;
    color: #CC5500;
    margin-bottom: 20px;

}

.instructions p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #261c12;
    font-size: 1.63rem;
}

.about.parallax-fixed {
    font-size: 2rem;
    padding: 40px 20px;
    text-align: center;
    min-height: auto;
    display: block;
}

.about h2 {
    font-family: 'Cinzel', serif;
    color: #CC5500;
    margin-bottom: 20px;
}

.about p {
    color: #261c12;
    font-size: 1.66rem;
    max-width: 900px;
    margin: 0 auto;
}

#map {
    height: calc(100vh - 120px);
}

#adminMap {
    height: 300px !important;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s;
}

.modal-content {
    background: #fff;
    margin: 2% auto;
    padding: 30px;
    border-radius: 16px;
    width: 95%;
    max-width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
    overflow-y: auto;
}

.place-detail-modal {
    max-width: 95%;
}

.small-modal {
    max-width: 450px;
    max-height: none;
    height: auto;
    padding: 25px 30px;
}

.large-modal {
    max-width: 1450px;
}


.close {
    position: absolute;
    right: 20px;
    top: 0px;
    font-size: 60px;
    cursor: pointer;
    color: #4e4d4d;
    transition: color 0.2s;
}

.close:hover {
    color: #CC5500;
}

#yearsRow {
    display: flex;
    gap: 8px;
    margin: 20px 0;
    flex-wrap: nowrap;
}

.year-btn {
    flex: 1 1 auto;
    min-width: 0;
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 8px 6px;
    border-radius: 20px;
    cursor: pointer;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.2s;
}

.year-btn.active {
    background: #CC5500;
    border-color: #CC5500;
    color: #fff;
}

.year-btn:hover:not(.active) {
    background: #fdebd0;
    border-color: #CC5500;
}

#modalImage {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
    transition: opacity 0.3s;
}

#modalDescription {
    margin-top: 30px;
    color: #1a1a1a;
    text-align: justify;
    font-size: 1.46rem;
}

.place-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding: 10px 0;
    border-top: 1px solid #eee;
}

.place-stats span {
    font-size: 1.1rem;
    color: #555;
}

.likes-clickable {
    cursor: pointer;
    user-select: none;
}

.likes-clickable:hover {
    opacity: 0.8;
}

.comments-section {
    margin-top: 20px;
    border-top: 2px solid #CC5500;
    padding-top: 15px;
}

.comment-form {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.comment-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    resize: vertical;
    font-family: inherit;
    font-size: 1rem;
}

.comment-form button {
    width: auto;
    padding: 8px 20px;
    background: #CC5500;
    border: none;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
    font-size: 0.9rem;
}

#commentsList {
    max-height: 250px;
    overflow-y: auto;
}

.comment-item {
    padding: 8px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
    color: #1a1a1a;
}

.comment-item strong {
    color: #CC5500;
}

.modal-content input,
.modal-content textarea,
.modal-content select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.modal-content button {
    width: 100%;
    padding: 12px;
    background: #CC5500;
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.modal-content button:hover {
    background: #b34700;
}

.modal-link {
    margin-top: 15px;
    text-align: center;
    color: #CC5500;
    cursor: pointer;
    font-weight: 600;
}

.modal-link:hover {
    text-decoration: underline;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 28px;
    border-radius: 10px;
    color: #fff;
    z-index: 9999;
    font-weight: bold;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s;
    backdrop-filter: blur(6px);
    cursor: pointer;
    min-width: 200px;
}

.notification.success {
    background: #1aa453;
}

.notification.error {
    background: #ce3a05;
    color: #fff;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

th,
td {
    border: 1px solid #eee;
    padding: 14px 16px;
    text-align: left;
    color: #1a1a1a;
}

th {
    background: #fdebd0;
    color: #CC5500;
    font-weight: 700;
}

.btn,
button.btn {
    background: #CC5500;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    margin-right: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(204, 85, 0, 0.2);
}

.btn:hover {
    background: #b34700;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(204, 85, 0, 0.3);
}

.btn-secondary {
    background: #7f8c8d;
    box-shadow: none;
}

.btn-success {
    background: #0b7436;
}

.btn-danger {
    background: #d24e0c;
}

.btn-back {
    position: absolute;
    left: 20px;
    top: 20px;
    background: transparent;
    color: #CC5500;
    padding: 8px 16px;
    border: 1px solid #CC5500;
    border-radius: 8px;
}

.btn-back:hover {
    background: #fdebd0;
}

.success {
    background: #d4edda;
    color: #ffffff;
    padding: 14px;
    border-radius: 8px;
    margin: 15px 0;
}

.error {
    color: #a93211;
    margin: 5px 0;
}

.catalog-page .catalog-container {
    padding: 30px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url('/images/catalog-bg.jpg') center/cover fixed;
    flex: 1;
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 16px;

}

.catalog-filters select,
.catalog-filters input {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.catalog-region {
    margin-bottom: 30px;
    padding-left: 30px;
}

.region-title {
    color: #CC5500;
    font-size: 2.2rem;
    font-family: 'Cinzel', serif;
    margin-bottom: 15px;
    border-bottom: 2px solid #CC5500;
    padding-bottom: 5px;
    -webkit-text-stroke: 0.4px #000000;
    color: #CC5500;
}

.city-title {
    color: #1a1a1a;
    font-size: 1.6rem;
    font-family: 'Cinzel', serif;
    margin: 10px 0;
    padding-left: 15px;
}

.catalog-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-left: 15px;
}

.place-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    width: calc(25% - 15px);
    min-width: 200px;
}

.place-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.place-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.place-card .card-info {
    padding: 16px;
}

.place-card .card-info h4 {
    font-family: 'Cinzel', serif;
    color: #CC5500;
    margin-bottom: 6px;
    font-size: 1.2rem;
}

.place-card .card-info p {
    color: #1a1a1a;
    font-size: 1rem;
    line-height: 1.4;
}

.profile-modal-content {
    max-width: 500px;
}

.profile-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #CC5500;
}

.profile-section:first-of-type {
    margin-top: 40px;
}

.profile-section:last-of-type {
    border-bottom: none;
}

.profile-section h3 {
    color: #CC5500;
    margin-bottom: 8px;
}

.logout-btn {
    background: #CC5500;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
    width: 100%;
    margin-top: 10px;
}

.logout-btn:hover {
    background: #b34700;
}

.form-field {
    margin-bottom: 20px;
}

.form-actions {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.sug-photo-entry {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.photo-entry {
    border: 1px solid #ddd;
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    nav {
        flex-wrap: wrap;
        gap: 12px;
    }

    #searchInput {
        width: 140px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 60px 15px;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
    }

    .catalog-cards {
        padding-left: 0;
    }

    .place-card {
        width: calc(50% - 10px);
    }

    .catalog-region,
    .city-title,
    .catalog-cards {
        padding-left: 10px;
    }
}

.city-autocomplete {
    position: relative;
    margin: 10px 0;
}

.city-autocomplete input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.city-autocomplete .search-dropdown {
    position: absolute;
    top: 45px;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    max-height: 150px;
    overflow-y: auto;
    z-index: 1100;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.city-autocomplete .search-dropdown div {
    padding: 8px 12px;
    cursor: pointer;
}

.city-autocomplete .search-dropdown div:hover {
    background: #fdebd0;
}

#addSugPhoto {
    margin-top: 10px;
}

#submitSuggestion {
    margin-top: 20px;
    display: block;
    width: 100%;
}

.home-page {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
        url('/images/main-bg.jpg') top center / cover repeat-y;
    background-size: cover;
}

.hero {
    background: none;
    border-bottom: 3px solid #CC5500;
}

.instructions {
    background: none;
    border-bottom: 3px solid #CC5500;
}

.about.parallax-fixed {
    background: none;
}

.hero h1,
.hero p,
.instructions h2,
.instructions p,
.about h2,
.about p {
    -webkit-text-stroke: 0.28px #000000;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.catalog-page .main-content {
    padding-bottom: 0;
}

.photos-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.photo-frame {
    border: 3px solid #CC5500;
    border-radius: 8px;
    overflow: hidden;
    width: 600px;

    height: 450px;
    display: block;
    background: #f0f0f0;
    margin-bottom: 0;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-year {
    margin: 10px 0 0 0;
    text-align: center;
    font-weight: bold;
    font-style: italic;
    color: #CC5500;
    font-size: 1.9rem;
}

#modalPlaceName {
    font-size: 2rem;
    color: #1a1a1a;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
}

.photo-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.photo-label {
    color: #CC5500;
    font-weight: bold;
    font-style: italic;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

#viewOnMapBtn {
    padding: 8px 20px;
    background: #CC5500;
    border: none;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
    font-size: 0.9rem;
    margin-left: 1100px;
    width: 200px;
}

#viewOnMapBtn:hover {
    background: #b34700;
}

.footer-left {
    display: flex;
    font-style: italic;
    align-items: left;
    gap: 15px;
}

.footer-logo {
    height: 40px;
}

.footer-right {
    text-align: right;
    font-style: italic;
    max-width: 500px;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
}

.catalog-page .catalog-container {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 160px);
}

/* ===== Страница викторин ===== */
.quiz-page {
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url('/images/quiz-bg.jpg') center/cover fixed;
}

.quiz-container {
    padding: 40px 20px;
}

.quiz-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.quiz-card {
    width: calc(50% - 15px);
    max-width: 800px;
    border: 3px solid #CC5500;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    aspect-ratio: 16 / 9;
}

.quiz-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.quiz-card-image {
    height: 100%;
    background-size: cover;
    background-position: center;
}

.quiz-card h3 {
    text-align: center;
    font-family: 'Cinzel', serif;
    color: #CC5500;
    margin: 10px 0;
    font-size: 1.5rem;
}

/* ===== Модальные окна игр ===== */
.game-modal-small {
    width: 65%;
    min-height: auto;
    overflow-y: auto;
    margin: 5% auto;
}

.game-modal-large {
    max-width: 90%;
    width: 90%;
    height: auto;
    min-height: 80vh;
    overflow-y: auto;
    font-size: 1.3rem;
    font-weight: bold;
}

/* Инструкция */
.game-instructions {
    margin: 50px 0;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.6;
}

.game-instructions p+p {
    margin-top: 55px;
}

.game-start-btn-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
    height: 50px;
    font-size: 1.9rem;

}

/* Изображения в вопросах */
.game-image {
    max-width: 100%;
    max-height: 550px;
    border-radius: 12px;
    object-fit: contain;
    display: block;
    margin: 15px auto;
}

/* Кнопки ответов и действий */
.game-options {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 40px;
}

.game-btn-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.btn-small {
    padding: 8px 16px;
    font-size: 1.25rem;
    width: auto;
    min-width: 100px;
    margin-top: 5px;
    background: #CC5500;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s, transform 0.1s;
    font-family: 'Cormorant Infant', serif;
}

.btn-small:hover {
    background: #b34700;
    transform: translateY(-1px);
}

/* Игра «Сопоставь пары» */
.match-container {
    display: flex;
    gap: 300px;
    justify-content: center;
    margin: 30px 0;
    position: relative;
    padding: 0 20px;
}

.match-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
}

.match-item {
    width: 480px;
    height: 280px;
    border: 3px solid #CC5500;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.match-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.match-item.selected {
    border-color: #007bff;
    box-shadow: 0 0 12px rgba(0, 123, 255, 0.5);
}

.match-item.paired {
    opacity: 0.8;
    border-color: #000;
}

.match-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.game-modal-large h3+p {
    margin-bottom: 130px;
    margin-top: 30px;
    font-size: 1.3rem;
}

.game-image-frame {
    width: 700px;
    height: 450px;
    border: 3px solid #CC5500;
    border-radius: 12px;
    overflow: hidden;
    margin: 15px auto;
}

.game-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-progress {
    position: absolute;
    top: 30px;
    right: 70px;
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: #000;
}

.game-options-row {
    display: flex;
    justify-content: center;
    gap: 0px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.game-options-row .btn-small {
    min-width: 80px;
    width: 350px;
    font-size: 22px;
    padding: 17px 22px;
}

.btn-small {
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.btn-small.correct {
    background-color: #1a9436 !important;
    border-color: #1a9436 !important;
    color: #fff !important;
}

.btn-small.wrong {
    background-color: #b30214 !important;
    border-color: #b30214 !important;
    color: #fff !important;
}

.match-item.correct-match {
    border-color: #127c2b !important;
    transition: border-color 0.3s;
}

.match-item.wrong-match {
    border-color: #a30918 !important;
    transition: border-color 0.3s;
}

.game-modal-large[style*="quiz-game-bg-4"] {
    width: 50%;
}

.game-modal-large[data-game="historyTest"] .game-options-row {
    margin-top: 100px;
    gap: 13px;
}

.game-modal-large[data-game="historyTest"] .game-options-row .btn-small {
    min-width: 820px;
    padding: 22px 24px;
    font-size: 1.1rem;
}

.game-modal-large[data-game="historyTest"] h3 {
    text-align: center;
    margin-top: 50px;
    font-size: 2rem;
    font-weight: bold;
}

.game-modal-small p {
    font-family: 'Cormorant Infant', serif;
    font-size: 1.6rem;
    color: #1a1a1a;
    margin: 15px 0;
}

.leaflet-control-attribution {
    display: none !important;
}