﻿@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap'); */
html, body {
	height: 100%;
}
:root {
    --primary-color: #2ecc71;
    --primary-dark: #27ae60;
    --dark-bg: #121212;
    --dark-surface: #1e1e1e;
    --dark-text: #e0e0e0;
    --dark-text-secondary: #a0a0a0;
    --dark-divider: #333;
}

::selection {
  background-color: var(--primary-color);
  color: var(--dark-text);
}

::-moz-selection {
  background-color: var(--primary-color);
  color: var(--dark-text);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu';
}

body {
    background-color: var(--dark-bg);
    color: var(--dark-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

.dark-header {
    background-color: var(--dark-surface);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container img {
	width: 108px;
	height: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    transition: all 0.3s ease;
    border-radius: 4px;
    overflow: hidden;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    background-color: rgba(46, 204, 113, 0.1);
}

.nav-menu li a:hover::before {
    left: 0;
}

.nav-menu li.active a {
    background-color: rgba(46, 204, 113, 0.2);
    color: var(--primary-color);
    cursor: default;
    pointer-events: none;
}

.nav-menu li.active a::before {
    left: 0;
    background-color: var(--primary-color);
}

.nav-menu li a i {
    transition: transform 0.3s ease;
}

.nav-menu li a:hover i {
    transform: translateY(-2px);
}

.dark-main {
    flex: 1;
    padding: 2rem 5%;
    
}

.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    text-align: center;
    margin-bottom: 2rem;
}

.hero-content {
    max-width: 800px;
}

.hero-logo {
    width: 120px;
    height: auto;
    margin-bottom: 2rem;
    animation: pulse 3s infinite;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-section h1 span {
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--dark-text-secondary);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: rgba(46, 204, 113, 0.1);
    transform: translateY(-3px);
}

.latest-news {
    margin-bottom: 3.5rem;
}

.latest-news h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.news-card {
    background-color: var(--dark-surface);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-date {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.news-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.news-date .month {
    font-size: 1rem;
    text-transform: uppercase;
}

.news-content {
    padding: 1.5rem;
    flex: 1;
}

.news-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.news-content p {
    color: var(--dark-text-secondary);
    margin-bottom: 1rem;
}

.quick-links {
    margin-bottom: 3rem;
}

.quick-links h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.link-card {
    background-color: var(--dark-surface);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--dark-text);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-height: 150px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(46, 204, 113, 0.1);
}

.link-card i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    z-index: 2;
}

.link-card span {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
    border-color: rgba(46, 204, 113, 0.3);
}

.link-card:hover::before {
    transform: translateY(0);
}

.link-card:hover i {
    transform: scale(1.2) translateY(-5px);
    text-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

.link-card:hover span {
    color: var(--primary-color);
    text-shadow: 0 2px 5px rgba(46, 204, 113, 0.2);
}

.dark-footer {
    background-color: var(--dark-surface);
    padding: 1.5rem 5%;
    text-align: center;
    border-top: 1px solid var(--dark-divider);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: var(--dark-text-secondary);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* =============================================
   ШИРОКИЕ ПЛАНШЕТЫ / НОУТБУКИ с маленьким экраном
   навигация начинает вылезать ~1108px
   (исходя из devtools'ов огнелиса)
   ============================================= */
@media (max-width: 1108px) {

    .dark-header {
        padding: 0.8rem 2%;
    }

    .logo-container img {
        width: 90px;
    }

    .nav-menu {
        gap: 0.1rem;
    }

    .nav-menu li a {
        padding: 0.65rem 0.7rem;
        font-size: 0.85rem;
        gap: 0.3rem;
    }
}

/* при совсем тесном пространстве — скрываем текст, оставляем иконки */
@media (max-width: 960px) {

    .nav-menu li a span {
        display: none;
    }

    .nav-menu li a {
        padding: 0.65rem 0.75rem;
        font-size: 1rem;
    }

    .nav-menu li a i {
        font-size: 1.15rem;
    }
}

/* =============================================
   ПЛАНШЕТЫ — книжная и альбомная ориентация
   (481px – 1024px)
   ============================================= */
@media (max-width: 1024px) and (min-width: 481px) {

    .dark-header {
        padding: 0.8rem 3%;
    }

    .logo-container img {
        width: 90px;
    }

    /* немного компактнее, но текст остаётся */
    .nav-menu {
        gap: 0.25rem;
    }

    .nav-menu li a {
        padding: 0.65rem 0.9rem;
        font-size: 0.9rem;
        gap: 0.35rem;
    }

    .dark-main {
        padding: 1.5rem 4%;
    }

    .hero-section {
        min-height: 40vh;
    }

    .hero-logo {
        width: 90px;
        margin-bottom: 1.5rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-outline {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    /* 3 колонки на альбомном планшете,
       2 — на книжном */
    .links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .link-card {
        min-height: 130px;
        padding: 1.2rem 1rem;
    }

    .link-card i {
        font-size: 1.7rem;
    }

    .news-date {
        min-width: 70px;
    }

    .news-date .day {
        font-size: 1.6rem;
    }

    .news-content {
        padding: 1.2rem;
    }

    #snow-settings-panel {
        min-width: 360px;
    }

    .cookie-content {
        gap: 1.2rem;
    }

    .cookie-icon {
        font-size: 2.5rem;
    }
}

/* Книжный планшет (481px – 768px): 2 колонки в сетке */
@media (max-width: 768px) and (min-width: 481px) {

    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* скрываем текст пунктов меню, оставляем иконки */
    .nav-menu li a span {
        display: none;
    }

    .nav-menu li a {
        padding: 0.65rem 0.75rem;
    }

    .nav-menu li a i {
        font-size: 1.15rem;
    }

    .hero-section h1 {
        font-size: 1.75rem;
    }

    .hero-actions {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {

    .dark-header {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0.8rem;
    }

    .nav-menu {
        gap: 0.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-menu li a {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }

    .nav-menu li a span {
        display: none;
    }

    .nav-menu li a i {
        font-size: 1.2rem;
    }

    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-actions {
        flex-direction: column;
    }

    .news-card {
        flex-direction: column;
    }

    .news-date {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.5rem 1rem;
    }

    .news-date .day {
        font-size: 1.5rem;
    }

    .links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .link-card {
        min-height: 110px;
        padding: 1rem 0.75rem;
    }

    #snow-controls {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }

    .snow-control-btn {
        padding: 6px 14px;
        font-size: 13px;
    }

    #snow-settings-btn {
        width: 36px;
        height: 36px;
    }

    #snow-settings-panel {
        min-width: unset;
        width: 90vw;
        padding: 1.5rem;
        max-height: 90vh;
    }

    .settings-buttons {
        flex-direction: column;
    }

    #cookie-notice {
        padding: 1.2rem 4%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-icon {
        font-size: 2.5rem;
    }

    .cookie-text h3 {
        font-size: 1rem;
    }

    .cookie-text p {
        font-size: 0.85rem;
    }

    .cookie-button {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) { /* потому что чатгпт так сказал */
    * {
        animation: none !important;
        transition: none !important;
    }
}

#snow-settings-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10001;
    background: var(--dark-surface);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: none;
    min-width: 400px;
    max-width: 90vw;
    max-height: 85vh;
    overflow-y: auto;
}

#snow-settings-panel::-webkit-scrollbar {
    width: 8px;
}

#snow-settings-panel::-webkit-scrollbar-track {
    background: var(--dark-bg);
    border-radius: 4px;
}

#snow-settings-panel::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

#snow-settings-panel::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--dark-divider);
}

.settings-header h3 {
    color: var(--primary-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
}

#close-settings {
    background: transparent;
    border: none;
    color: var(--dark-text);
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border-radius: 50%;
}

#close-settings:hover {
    color: var(--primary-color);
    background: rgba(46, 204, 113, 0.1);
    transform: rotate(90deg);
}

.settings-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.settings-section {
    background: rgba(46, 204, 113, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.settings-section h4 {
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.setting-item {
    margin-bottom: 1rem;
}

.setting-item:last-child {
    margin-bottom: 0;
}

.setting-label {
    color: var(--dark-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.setting-label-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.setting-label-text i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.setting-value {
    color: var(--primary-color);
    font-weight: 600;
    min-width: 45px;
    text-align: right;
}

#snow-settings-panel input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: var(--dark-divider);
    border-radius: 3px;
    outline: none;
    transition: background 0.3s;
}

#snow-settings-panel input[type="range"]:hover {
    background: #444;
}

#snow-settings-panel input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

#snow-settings-panel input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

#snow-settings-panel input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
}

#snow-settings-panel input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
}

.setting-checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.setting-checkbox:hover {
    background: rgba(46, 204, 113, 0.1);
}

.setting-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.setting-checkbox label {
    cursor: pointer;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.setting-checkbox label i {
    color: var(--primary-color);
}

.setting-select {
    width: 100%;
    padding: 0.6rem;
    background: var(--dark-bg);
    color: var(--dark-text);
    border: 2px solid var(--dark-divider);
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Ubuntu', sans-serif;
}

.setting-select:hover {
    border-color: var(--primary-color);
}

.setting-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.settings-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--dark-divider);
}

.settings-btn {
    flex: 1;
    padding: 0.8rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.95rem;
}

#reset-settings {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

#reset-settings:hover {
    background: rgba(46, 204, 113, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.2);
}

#apply-settings {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

#apply-settings:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

#settings-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    backdrop-filter: blur(3px);
}

#snow-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    gap: 10px;
}

.snow-control-btn {
    background: var(--dark-surface);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 8px 18px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.snow-control-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.3);
}

#snow-settings-btn {
    padding: 8px 12px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
}

#cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--dark-surface);
    border-top: 2px solid var(--primary-color);
    padding: 1.5rem 5%;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    z-index: 10002;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

#cookie-notice.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.cookie-icon {
    flex-shrink: 0;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.cookie-icon:hover {
    transform: rotate(15deg);
}

.cookie-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cookie-text h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-text p {
    color: var(--dark-text-secondary);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-text a:hover {
    color: var(--primary-dark);
}

.cookie-button {
    flex-shrink: 0;
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.cookie-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.cookie-button i {
    font-size: 1rem;
}

@keyframes slideDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(100%);
    }
}

.cookie-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glink {
	color: var(--dark-text);
}

.gt-current-lang {
	color: var(--primary-color);
	font-weight: normal !important;
}

.glink:hover {
	transition: color 0.3s;
	color: var(--primary-color);
}

.stitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* .main-text p, 
.main-text h2, 
.main-text ul, 
.main-text li {
    text-align: center;
    padding: 0.6rem 1rem;
    line-height: 1.6;
    margin: 0.5rem 0;
    list-style-position: inside;
} */

.main-text h1,
.main-text h2,
.main-text h3,
.main-text p,
.main-text ul {
    text-align: center;
    margin: 0.8rem 0; /* Умеренный отступ сверху/снизу */
}

.main-text p {
    line-height: 1.5; /* Межстрочный интервал для лучшей читаемости */
}

/* Настройки для элементов списка */
.main-text ul {
    padding: 0;
    list-style-position: inside; /* Чтобы маркеры (точки) центрировались вместе с текстом */
}

.main-text li {
    text-align: center;
    list-style-type: disc; /* Возвращаем стандартные маркеры-точки */
    margin: 0.3rem 0;      /* Делаем минимальный отступ между строками списка */
    line-height: 1.5;
}

.section-description {
    color: var(--dark-text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
	text-align: center;
}

.img-desc p {
	color: var(--dark-text-secondary);
	font-style: italic;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

#snow-settings-panel[style*="display: block"] {
    animation: slideIn 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    #cookie-notice,
    .cookie-icon,
    .cookie-button {
        animation: none !important;
        transition: none !important;
    }
}

@media (max-width: 768px) {
    .stitle {
        font-size: 1.2rem;
        padding: 0 15px;
        gap: 0.5rem;
        flex-wrap: wrap;
        text-align: center;
    }

    .stitle h1 {
        font-size: 1.5rem;
        word-wrap: break-word;
        word-break: break-word;
        line-height: 1.3;
    }    
}