/* --- Глобальные настройки и переменные --- */
:root {
    --color-yellow: #fbc02d;
    --color-cyan: #34d3d3;
    --color-purple: #514a9d; /* ДОБАВЛЕНО: Цвет для градиента */
    --color-dark-blue: #1a202c;
    --color-dark-blue-light: #2d3748;
    --color-text: #e2e8f0;
    --color-text-secondary: #a0aec0;
    --color-text-dark: #1a202c;
    --color-border: #3d4a63; 
    --font-family: 'Montserrat', sans-serif;
    --header-height: 90px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
body { font-family: var(--font-family); background-color: var(--color-dark-blue); color: var(--color-text); overflow-x: hidden; line-height: 1.7; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }

/* --- Стили хедера --- */
.site-header { height: var(--header-height); background-color: var(--color-dark-blue); border-bottom: 1px solid var(--color-dark-blue-light); position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; }
.header-container { display: flex; justify-content: space-between; align-items: center; height: 100%; position: relative; }
.logo { position: absolute; left: 50%; transform: translateX(-50%); }
.logo img { height: 50px; width: auto; display: block; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 20px; } /* Уменьшил gap */
.main-nav a { color: var(--color-text); text-decoration: none; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s ease; }
.main-nav a:hover { color: var(--color-yellow); }
.header-actions { display: flex; justify-content: flex-end; flex: 1; }
.main-nav { flex: 1; }

/* --- Стили первого экрана (слайдер) --- */
.hero-slider { position: relative; height: 100vh; overflow: hidden; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease-in-out; visibility: hidden; }
.slide.active { opacity: 1; z-index: 1; visibility: visible; }
.slide-background { width: 100%; height: 100%; background-size: cover; background-position: center; transform: scale(1); }
.slide.active .slide-background { animation: zoom-in-effect 6s linear forwards; }
.slide-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; background: radial-gradient(circle, rgba(26, 32, 44, 0.1) 0%, rgba(26, 32, 44, 0.9) 70%, rgba(26, 32, 44, 1) 100%); }
.slide-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; z-index: 3; width: 90%; max-width: 900px; }
.pre-title { font-size: 1.2rem; font-weight: 700; color: var(--color-yellow); text-transform: uppercase; letter-spacing: 1.5px; }
.hero-title { font-size: 4.5rem; font-weight: 900; color: var(--color-yellow); text-transform: uppercase; margin: 10px 0; text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.5); }
.sub-heading { font-size: 2rem; font-weight: 700; color: white; margin-bottom: 40px; text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); }
.cta-button { display: inline-block; background: var(--color-yellow); color: var(--color-text-dark); padding: 18px 50px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1rem; text-transform: uppercase; border: none; transition: all 0.3s ease; box-shadow: 0 5px 20px rgba(251, 192, 45, 0.3); letter-spacing: 1px; }
.cta-button:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(251, 192, 45, 0.4); }
.slider-dots { position: absolute; bottom: 50px; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; gap: 15px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background-color: rgba(255, 255, 255, 0.4); cursor: pointer; transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.4); }
.dot.active { background-color: var(--color-yellow); border-color: var(--color-yellow); transform: scale(1.2); }
.pre-title .highlight { color: white; }

/* --- Стили информационной секции --- */
.info-section { padding: 100px 0; background-color: var(--color-dark-blue); scroll-margin-top: var(--header-height); }
.info-grid { display: flex; align-items: center; gap: 60px; }
.info-text { flex: 1.2; }
.info-image { flex: 0.8; }
.info-text h1 { font-size: 2.4rem; font-weight: 700; margin-bottom: 25px; color: var(--color-text); margin-top: 60px; text-align: center;}
.info-text h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 25px; color: var(--color-text); }
.info-text h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 25px; color: var(--color-text); }
.info-text h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 25px; color: var(--color-text); }
.info-text p { color: var(--color-text-secondary); margin-bottom: 20px; }
.info-text .features-title { font-weight: 700; color: var(--color-text); margin-top: 30px; }
.info-image img { width: 100%; height: auto; display: block; border-radius: 15px; box-shadow: 0 0 25px rgba(52, 211, 211, 0.2); }
.section-cta { text-align: center; margin-top:30px; }
.cta-button-alt { display: inline-block; background: linear-gradient(to right, var(--color-cyan), var(--color-purple)); color: white; padding: 18px 50px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1rem; text-transform: uppercase; border: none; transition: all 0.3s ease; box-shadow: 0 5px 20px rgba(68, 208, 222, 0.3); letter-spacing: 1px; }
.cta-button-alt:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(68, 208, 222, 0.4); }

/* Маркерованный список */
.features-list { list-style: none; padding-left: 0; }
.features-list li { position: relative; padding-left: 25px; margin-bottom: 12px; color: var(--color-text-secondary); }
.features-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; background-color: var(--color-cyan); border-radius: 50%; }

/* Нумерованный список */
.custom-numbered-list { list-style: none; padding-left: 0; counter-reset: my-counter; }
.custom-numbered-list li { position: relative; margin-bottom: 12px; padding-left: 35px; color: var(--color-text-secondary); counter-increment: my-counter; }
.custom-numbered-list li::before { content: counter(my-counter) "."; position: absolute; left: 0; top: 0; color: var(--color-cyan); font-weight: bold; font-size: 1rem; min-width: 20px; text-align: right; margin-right: 10px; }

/* Список с произвольной нумерацией */
.custom-numbered-list.start-from-4 { counter-reset: my-counter 3; }
.custom-numbered-list.start-from-8 { counter-reset: my-counter 7; }
.custom-numbered-list.start-from-5 { counter-reset: my-counter 4; }

/* --- Стили для сетки игр --- */
.games-section { padding: 100px 0; background-color: var(--color-dark-blue-light); scroll-margin-top: var(--header-height); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h1, .section-header h2 { font-size: 2.5rem; font-weight: 700; color: var(--color-text); margin-bottom: 15px; }
.section-header p { font-size: 1.1rem; color: var(--color-text-secondary); max-width: 600px; margin: 0 auto; }
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.game-card { display: block; position: relative; overflow: hidden; border-radius: 12px; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.game-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); }
.game-card-image { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.game-card:hover .game-card-image { transform: scale(1.1); }
.game-card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(18, 18, 18, 0.95) 0%, rgba(18, 18, 18, 0) 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; opacity: 0; transition: opacity 0.4s ease; }
.game-card:hover .game-card-overlay { opacity: 1; }
.game-card-title { color: var(--color-text); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; transform: translateY(20px); transition: transform 0.4s ease; }
.game-card:hover .game-card-title { transform: translateY(0); }
.play-button { display: inline-block; background-color: var(--color-yellow); color: var(--color-text-dark); padding: 8px 15px; border-radius: 5px; font-size: 0.9rem; font-weight: 700; text-decoration: none; text-transform: uppercase; transform: translateY(20px); transition: transform 0.4s 0.1s ease; }
.game-card:hover .play-button { transform: translateY(0); }

/* --- Стили для FAQ-аккордеона --- */
.faq-section { padding: 100px 0; background-color: var(--color-dark-blue); scroll-margin-top: var(--header-height); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 25px 0; background: none; border: none; cursor: pointer; text-align: left; color: var(--color-text); font-family: var(--font-family); font-size: 1.2rem; font-weight: 700; }
.faq-question:hover { color: var(--color-yellow); }
.faq-icon { position: relative; width: 20px; height: 20px; flex-shrink: 0; margin-left: 20px; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; top: 50%; left: 50%; width: 18px; height: 2px; background-color: var(--color-cyan); transition: transform 0.3s ease; }
.faq-icon::before { transform: translate(-50%, -50%) rotate(0deg); }
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.active .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-answer p { padding-bottom: 25px; color: var(--color-text-secondary); }
.faq-item.active .faq-answer { max-height: 200px; }

/* --- Анимация приближения --- */
@keyframes zoom-in-effect {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

/* --- Анимация свечения для бонуса --- */
@keyframes bonus-glow {
    0%, 100% { box-shadow: 0 0 15px rgba(36, 198, 220, 0.5); }
    50% { box-shadow: 0 0 25px 8px rgba(81, 74, 157, 0.4); }
}

/* --- Стили футера --- */
.site-footer { background-color: var(--color-dark-blue-light); color: var(--color-text-secondary); padding-top: 60px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--color-border); }
.footer-column { flex: 1; }
.footer-column h3 { color: var(--color-text); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-links ul { list-style: none; padding: 0; display: flex; gap: 15px; align-items: center; } /* Изменено для футера */
.footer-links li { margin-bottom: 0; } /* Изменено для футера */
.footer-links a { color: var(--color-text-secondary); text-decoration: none; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--color-yellow); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.footer-logo img { height: 40px; opacity: 0.8; }
.copyright-text { font-size: 14px; }

/* Стили для выделенных кнопок меню App и Bonus */
/* Общие стили для li кнопок, чтобы избежать !important */
.main-nav ul li.menu-button-app a,
.main-nav ul li.menu-button-bonus a,
.footer-links ul li.menu-button-app a,
.footer-links ul li.menu-button-bonus a { padding: 10px 22px; border-radius: 50px; display: inline-flex; align-items: center; line-height: 1; transition: all 0.3s ease; color: white; }

/* Кнопка APP */
.main-nav ul li.menu-button-app a,
.footer-links ul li.menu-button-app a { background-color: var(--color-yellow); color: var(--color-text-dark); box-shadow: 0 4px 15px rgba(251, 192, 45, 0.3); }
.main-nav ul li.menu-button-app a:hover,
.footer-links ul li.menu-button-app a:hover { background-color: #ffca28; color: #000; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(251, 192, 45, 0.45); }
.menu-button-app .fa-android { margin-inline-end: 8px; }

/* Кнопка BONUS */
.main-nav ul li.menu-button-bonus a,
.footer-links ul li.menu-button-bonus a { background: linear-gradient(to right, var(--color-cyan), var(--color-purple)); animation: bonus-glow 2.5s ease-in-out infinite; }
.main-nav ul li.menu-button-bonus a:hover,
.footer-links ul li.menu-button-bonus a:hover { transform: translateY(-2px); animation-play-state: paused; }
.menu-button-bonus .fa-gift { margin-inline-end: 8px; }


/* Стили переключателя языка */
.language-switcher { display: flex; align-items: center; }
.lang-link { color: var(--color-text-secondary); text-decoration: none; font-weight: 700; font-size: 14px; padding: 5px 10px; border-radius: 5px; transition: all 0.3s ease; }
.lang-link:hover { color: var(--color-yellow); }
.lang-link.active { color: var(--color-text-dark); background-color: var(--color-yellow); }
.lang-separator { color: var(--color-border); margin: 0 5px; font-size: 14px; }

/* --- Мобильная адаптация и переключатели видимости --- */
.language-switcher.mobile-lang,
.hamburger-menu,
.close-menu { display: none; }

@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .sub-heading { font-size: 1.8rem; }
    .info-grid { flex-direction: column; }
    .info-image { order: -1; width: 80%; margin: 0 auto 40px auto; }
    .info-text h2 { text-align: center; }
}
@media (max-width: 768px) {
    .header-container { justify-content: space-between; }
    .logo { position: absolute; left: 50%; transform: translateX(-50%); order: 2; }
    .main-nav, .header-actions { display: none; }   
    .language-switcher.mobile-lang { display: flex; order: 1; }
    .hamburger-menu { display: flex; flex-direction: column; justify-content: space-around; width: 80px; height: 40px; background: transparent; border: 1px solid var(--color-border); border-radius: 5px; cursor: pointer; padding: 8px; z-index: 10; transition: border-color 0.3s ease; order: 3; }
    .hamburger-menu:hover { border-color: var(--color-yellow); }
    .hamburger-menu .bar { display: block; width: 100%; height: 3px; background-color: var(--color-text); border-radius: 3px; transition: all 0.3s ease-in-out; }
    .main-nav.is-open { display: flex; flex-direction: column; justify-content: center; align-items: center; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-color: var(--color-dark-blue-light); z-index: 1000; }
    .main-nav.is-open .close-menu { display: block; position: absolute; top: 30px; right: 30px; font-size: 40px; color: var(--color-text); background: none; border: none; cursor: pointer; }
    .main-nav.is-open ul { flex-direction: column; gap: 40px; text-align: center; }
    .main-nav.is-open a { font-size: 24px; }
    .main-nav.is-open li.menu-button-app a,
    .main-nav.is-open li.menu-button-bonus a { padding: 15px 30px !important; }

    html[dir="rtl"] .language-switcher.mobile-lang { order: 3; }
    html[dir="rtl"] .hamburger-menu { order: 1; }

    .hero-title { font-size: 2.5rem; line-height: 1.2; }
    .sub-heading { font-size: 1.4rem; }
    .cta-button { padding: 15px 35px; font-size: 0.9rem; }
    .slider-dots { bottom: 30px; }
    .info-section, .games-section, .faq-section { padding: 30px 0; }
    .info-text h2, .section-header h2 { font-size: 2rem; }
    .info-image { width: 100%; }
    .game-card:hover { transform: none; }
    .game-card:hover .game-card-image { transform: scale(1); }
    .game-card-overlay { opacity: 1; background: linear-gradient(to top, rgba(18, 18, 18, 0.98) 25%, rgba(18, 18, 18, 0) 100%); }
    .game-card-title, .play-button { transform: translateY(0); }
    .faq-question { font-size: 1.1rem; }
    .footer-top { flex-direction: column; text-align: center; }
    .footer-links ul { flex-direction: column; } /* Изменено для футера на мобильных */
    .footer-bottom { flex-direction: column-reverse; gap: 20px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.1rem; }
    .sub-heading { font-size: 1.1rem; }
    .section-header p { font-size: 1rem; }
    .games-grid { grid-template-columns: 1fr; }
}

/* --- Прочие стили --- */
.faq-answer a,
.info-section a,
.footer-about a { color: #FFFFFF; font-weight: bold; text-decoration: none; transition: all 0.2s ease-in-out; }
.faq-answer a:hover,
.info-section a:hover,
.footer-about a:hover { text-decoration: underline; opacity: 0.9; }
.info-section strong,
.info-section b { color: #FFFFFF; font-weight: bold; }

/* Стили для страницы Контакты */
.contact-page-main { padding-top: var(--header-height); }
.contact-section { padding: 100px 0; background-color: var(--color-dark-blue); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: flex-start; margin-top: 60px; }
.contact-card { background-color: var(--color-dark-blue-light); border-radius: 12px; padding: 40px; border: 1px solid var(--color-border); height: 100%; }
.contact-card h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; color: var(--color-text); }
.contact-card p { color: var(--color-text-secondary); margin-bottom: 30px; line-height: 1.7; }
.contact-methods-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 25px; }
.contact-methods-list li { display: flex; align-items: center; gap: 20px; }
.contact-methods-list .icon { flex-shrink: 0; font-size: 24px; color: var(--color-cyan); width: 30px; text-align: center; }
.contact-methods-list a { color: var(--color-text); text-decoration: none; font-weight: 700; font-size: 1.1rem; transition: color 0.3s ease; word-break: break-all; }
.contact-methods-list a:hover { color: var(--color-yellow); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { width: 100%; }
.form-label { display: block; font-weight: 700; color: var(--color-text-secondary); margin-bottom: 8px; font-size: 0.9rem; }
.form-input { width: 100%; padding: 14px 18px; background-color: var(--color-dark-blue); border: 1px solid var(--color-border); border-radius: 8px; color: var(--color-text); font-family: var(--font-family); font-size: 1rem; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.form-input::placeholder { color: #5a667c; }
.form-input:focus { outline: none; border-color: var(--color-yellow); box-shadow: 0 0 0 3px rgba(251, 192, 45, 0.25); }

textarea.form-input { resize: vertical; min-height: 120px; }
.contact-submit-btn { width: 100%; margin-top: 10px; font-family: var(--font-family); }

/* Адаптация страницы контактов для мобильных устройств */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .contact-section { padding: 60px 0; }
    .contact-card { padding: 30px; }
    .contact-card h2 { font-size: 2rem; }
}

/* Стили для таблиц */
.simple-table { width: 100%; border-collapse: collapse; margin: 40px 0; }
.simple-table th, .simple-table td { padding: 15px; text-align: left; }
.simple-table th { color: var(--color-yellow); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; border-bottom: 2px solid var(--color-border); }
.simple-table tbody tr { border-bottom: 1px solid var(--color-border); }
.simple-table tbody tr:last-child { border-bottom: none; }
.simple-table td { color: var(--color-text-secondary); }
.simple-table td strong { color: var(--color-text); font-weight: 700; }

/* Стили заголовка caption */
.simple-table caption { text-align: left; color: var(--color-text); font-size: 1.0rem; font-weight: 700; margin-bottom: 20px; }

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .simple-table thead { display: none; }
    .simple-table tr { display: block; border-bottom: 2px solid var(--color-border); padding-bottom: 15px; margin-bottom: 15px; }
    .simple-table tr:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
    .simple-table td:first-child { display: none; }
    .simple-table td { display: block; width: 100%; text-align: left; padding: 5px 0; border: none; }
    .simple-table td::before { content: attr(data-label); display: block; font-weight: 700; color: var(--color-text); font-size: 1.1rem; margin-bottom: 5px; }
}

/* Стили списков для Арабских страниц */
[dir="rtl"] .features-list li { padding-left: 0; padding-right: 25px; }
[dir="rtl"] .features-list li::before { left: auto; right: 0; }
[dir="rtl"] .custom-numbered-list li { padding-left: 0; padding-right: 35px; }
[dir="rtl"] .custom-numbered-list li::before { left: auto; right: 0; margin-right: 0; margin-left: 10px; text-align: left; }

/* --- Правила для таблиц на RTL --- */
[dir="rtl"] .simple-table th, 
[dir="rtl"] .simple-table td,
[dir="rtl"] .simple-table caption { text-align: right; }

/* Адаптация для мобильных таблиц */
@media (max-width: 768px) {
  [dir="rtl"] .simple-table td { text-align: right; }
  [dir="rtl"] .simple-table td::before { text-align: right; }
}

/* Стили FAQ для Арабских страниц */
[dir="rtl"] .faq-question { text-align: right; }
[dir="rtl"] .faq-icon { margin-left: 0; margin-right: 20px; }
[dir="rtl"] .faq-answer p { text-align: right; }

/* Стили 404 страницы */
.error-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - var(--header-height));
    padding-top: var(--header-height);
    padding-bottom: 100px;
    text-align: center;
    background: radial-gradient(circle, rgba(26, 32, 44, 0.8) 0%, rgba(26, 32, 44, 1) 70%);
}

.error-content {
    max-width: 800px;
    padding: 20px;
}

.error-code {
    font-size: 12rem;
    font-weight: 900;
    color: var(--color-yellow);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s 0.2s ease-out forwards;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s 0.4s ease-out forwards;
}

.error-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 40px auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s 0.6s ease-out forwards;
}

.error-description a {
    color: #FFFFFF;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
.error-description a:hover {
    color: var(--color-yellow); /* добавил для наглядности */
}

.error-section .cta-button {
    /* стили для кнопки, если они есть, остаются тут */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s 0.8s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .error-code {
        font-size: 8rem;
    }
    .error-title {
        font-size: 2rem;
    }
    .error-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .error-code {
        font-size: 6rem;
    }
    .error-title {
        font-size: 1.5rem;
    }
}
