/* Template 8 - Nature Organic Theme */
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&family=Lato:wght@300;400;700&display=swap");

:root {
  --nature-black: #0a0a0a;
  --nature-dark: #1a2f1a;
  --nature-forest: #2d4a2d;
  --nature-moss: #4a6b4a;
  --nature-sage: #6b8e6b;
  --nature-mint: #8fbc8f;
  --nature-cream: #f5f5dc;
  --nature-white: #ffffff;
  --nature-brown: #8b4513;
  --nature-gold: #daa520;
  --nature-amber: #ffbf00;

  --organic-shadow: 0 8px 32px rgba(45, 74, 45, 0.3);
  --soft-glow: 0 0 20px rgba(139, 188, 139, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  background: linear-gradient(135deg, #1a2f1a 0%, #0d1f0d 50%, #2d4a2d 100%);
  color: #a8d8a8;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 80%, rgba(139, 195, 74, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(104, 159, 56, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  animation: organicPulse 8s ease-in-out infinite;
}

@keyframes organicPulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

/* Header */
.site-header {
  background: rgba(45, 74, 45, 0.8);
  border: 2px solid #4caf50;
  border-radius: 25px;
  padding: 30px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(76, 175, 80, 0.2);
  position: relative;
  overflow: hidden;
}

.site-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 195, 74, 0.1) 0%, transparent 70%);
  animation: organicRotate 20s linear infinite;
}

.site-logo {
  display: flex;             /* Иконка и текст в одну линию */
  align-items: center;       /* Выравнивание по центру вертикально */
  gap: 8px;                  /* Отступ между иконкой и текстом */
  text-decoration: none;     /* Без подчеркивания */
}

.site-logo a {
  display: flex;             /* Ссылка тоже флекс для наследования */
  align-items: center;
  color: #BEDEAF;               /* Цвет текста */
  text-decoration: none;
}

.site-logo img {
  width: 32px;               /* Размер иконки */
  height: 32px;
  border-radius: 4px;        /* Легкое скругление */
}

.site-logo .site-name {
  font-family: "Merriweather", serif;
  font-size: 2rem;           /* Размер шрифта */
  font-weight: 500;          /* Полужирный */
}


@keyframes organicRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

h1 {
  font-family: "Merriweather", serif;
  font-size: 2.8rem;
  text-align: center;
  color: #81c784;
  text-shadow: 0 2px 10px rgba(129, 199, 132, 0.3);
  position: relative;
  z-index: 1;
  animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

/* Navigation */
.site-nav {
  margin-top: 25px;
  position: relative;
  z-index: 1;
}

.site-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.site-nav a {
  color: #a5d6a7;
  text-decoration: none;
  font-weight: 400;
  padding: 12px 25px;
  border: 2px solid #66bb6a;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: rgba(102, 187, 106, 0.1);
}



.site-nav a:hover::before {
  transform: translateX(0);
}

.site-nav a:hover {
  color: #2e7d32;
  border-color: #81c784;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(129, 199, 132, 0.3);
}

/* Casino Cards Container */
.casino-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  justify-content: center;
  margin: 50px 0;
}

.casino-card {
  flex: 0 1 calc(33.333% - 25px);
  min-width: 320px;
  padding: 30px;
  border: 2px solid #4caf50;
  border-radius: 30px;
  background: rgba(45, 74, 45, 0.6);
  backdrop-filter: blur(15px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(139, 195, 74, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.casino-card:hover::before {
  opacity: 1;
}

.casino-card:hover {
  transform: translateY(-12px) rotate(1deg);
  border-color: #81c784;
  box-shadow: 0 20px 40px rgba(76, 175, 80, 0.25);
  background: rgba(45, 74, 45, 0.8);
}

.casino-logo {
  width: 360px;
  height: 120px;
  border-radius: 5px;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.casino-logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.casino-card:hover .casino-logo::after {
  left: 100%;
}

.casino-card:hover .casino-logo {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.casino-title {
  font-family: "Merriweather", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #c8e6c9;
  margin-bottom: 18px;
  text-shadow: 0 2px 5px rgba(200, 230, 201, 0.3);
}

.casino-description {
  color: #a5d6a7;
  line-height: 1.7;
  margin-bottom: 25px;
  font-weight: 300;
}

.casino-button {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(135deg, #66bb6a, #4caf50);
  color: #1b5e20;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.casino-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #81c784, #66bb6a);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.casino-button:hover::before {
  opacity: 1;
}

.casino-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.casino-button span {
  position: relative;
  z-index: 1;
}

/* Footer */
footer {
  background: rgba(45, 74, 45, 0.8);
  border: 2px solid #4caf50;
  border-radius: 25px;
  padding: 35px;
  margin-top: 60px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(76, 175, 80, 0.2);
}

footer p {
  color: #a5d6a7;
  font-size: 1.1rem;
  font-weight: 300;
}

/* Organic shapes */
.organic-shape {
  position: absolute;
  border-radius: 50% 40% 60% 30%;
  background: rgba(139, 195, 74, 0.05);
  animation: organicFloat 15s ease-in-out infinite;
}

@keyframes organicFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    border-radius: 50% 40% 60% 30%;
  }
  25% {
    transform: translate(20px, -20px) rotate(90deg);
    border-radius: 40% 60% 30% 50%;
  }
  50% {
    transform: translate(-10px, -40px) rotate(180deg);
    border-radius: 60% 30% 50% 40%;
  }
  75% {
    transform: translate(-30px, -10px) rotate(270deg);
    border-radius: 30% 50% 40% 60%;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: #1a2f1a;
  border-radius: 7px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #66bb6a, #4caf50);
  border-radius: 7px;
  border: 2px solid #1a2f1a;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #81c784, #66bb6a);
}

a {
  color: var(--nature-mint);
  text-decoration: none;
  transition: all 0.4s ease;
}

a:hover {
  color: var(--nature-gold);
}

.main {
  flex: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, var(--nature-forest), var(--nature-moss));
  overflow: hidden;
}

.section.head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238fbc8f' fill-opacity='0.1'%3E%3Cpath d='M30 30c0-16.569-13.431-30-30-30v30h30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  animation: leafPattern 20s linear infinite;
}

@keyframes leafPattern {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(60px) translateY(60px);
  }
}

.section.head h1 {
  font-family: "Merriweather", serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--nature-cream);
  margin-bottom: 2rem;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section.head .content p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.3rem;
  color: var(--nature-cream);
  font-weight: 300;
  position: relative;
  z-index: 1;
  line-height: 1.8;
  opacity: 0.9;
}

/* Section Styling */
.section {
  padding: 6rem 0;
  position: relative;
}

.section:nth-child(even) {
  background: rgba(26, 47, 26, 0.3);
}

.section header h2 {
  font-family: "Merriweather", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--nature-mint);
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: -1px;
  position: relative;
}

.section header h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--nature-gold), transparent);
  border-radius: 2px;
}

/* Casino List */
.casino_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

.casino-item {
  width: calc(33.333% - 1.7rem);
  min-width: 320px;
  border: 2px solid var(--nature-moss);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s ease;
  position: relative;
  background: transparent;
  box-shadow: var(--organic-shadow);
}

.casino-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 188, 139, 0.1), rgba(74, 107, 74, 0.1));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  border-radius: 18px;
}

.casino-item:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--nature-gold);
  box-shadow: 0 25px 50px rgba(139, 188, 139, 0.3);
}

.casino-item:hover::before {
  opacity: 1;
}

.casino-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--nature-amber), var(--nature-gold));
  color: var(--nature-black);
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--organic-shadow);
  animation: organicGlow 4s ease-in-out infinite;
}

@keyframes organicGlow {
  0%,
  100% {
    box-shadow: var(--organic-shadow);
  }
  50% {
    box-shadow: 0 8px 32px rgba(218, 165, 32, 0.5);
  }
}

.casino-header {
  padding: 2.5rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--nature-moss);
  position: relative;
  z-index: 1;
  background: rgba(26, 47, 26, 0.3);
}

.casino-logo {
  width: 360px;
  height: 120px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 5px;
  border: 2px solid var(--nature-moss);
  transition: all 0.4s ease;
  position: relative;
}

.casino-logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 188, 139, 0.3), transparent);
  transition: left 0.8s ease;
}

.casino-logo:hover {
  border-color: var(--nature-gold);
  transform: scale(1.05);
  box-shadow: var(--soft-glow);
}

.casino-logo:hover::after {
  left: 100%;
}

.casino-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.casino-name {
  font-family: "Merriweather", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--nature-mint);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.rating .stars {
  width: 120px;
  height: 20px;
  background: var(--nature-forest);
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--nature-moss);
}

.rating .stars .fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--nature-gold), var(--nature-amber));
  transition: all 0.4s ease;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(218, 165, 32, 0.4);
}

.rating .text {
  color: var(--nature-cream);
  font-size: 1rem;
  font-weight: 500;
}

.casino-body {
  padding: 2.5rem 2rem;
  position: relative;
  z-index: 1;
  background: rgba(26, 47, 26, 0.2);
}

.casino-bonus {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(74, 107, 74, 0.3), rgba(45, 74, 45, 0.3));
  border-radius: 20px;
  border: 2px solid var(--nature-moss);
  position: relative;
  overflow: hidden;
}

.casino-bonus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(139, 188, 139, 0.1), transparent);
  animation: organicShimmer 6s ease-in-out infinite;
}

@keyframes organicShimmer {
  0%,
  100% {
    transform: translateX(-100%) rotate(0deg);
  }
  50% {
    transform: translateX(100%) rotate(180deg);
  }
}

.bonus-amount {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--nature-gold);
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Merriweather", serif;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.free-spins {
  font-size: 1.1rem;
  color: var(--nature-mint);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.casino-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.feature-tag {
  background: rgba(139, 188, 139, 0.2);
  color: var(--nature-cream);
  padding: 0.7rem 1.4rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.4s ease;
  border: 1px solid var(--nature-moss);
  cursor: pointer;
}

.feature-tag:hover {
  background: rgba(139, 188, 139, 0.4);
  transform: translateY(-3px);
  box-shadow: var(--soft-glow);
  border-color: var(--nature-gold);
}

.casino-details {
  margin-bottom: 2.5rem;
  border: 2px solid var(--nature-moss);
  border-radius: 15px;
  overflow: hidden;
  background: rgba(26, 47, 26, 0.3);
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 1.8rem;
  border-bottom: 1px solid var(--nature-moss);
  transition: all 0.4s ease;
}

.detail-item:hover {
  background: rgba(139, 188, 139, 0.1);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  color: var(--nature-cream);
  font-weight: 500;
  opacity: 0.8;
}

.detail-value {
  color: var(--nature-mint);
  font-weight: 700;
}

.casino-action {
  text-align: center;
}

/* FAQ Section */
.faq_list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(26, 47, 26, 0.3);
  border: 2px solid var(--nature-moss);
  border-radius: 15px;
  margin-bottom: 2rem;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: var(--organic-shadow);
}

.faq-item:hover {
  border-color: var(--nature-gold);
  box-shadow: 0 15px 35px rgba(139, 188, 139, 0.2);
}

.accordion-question {
  background: transparent;
  border: none;
  font-family: "Merriweather", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--nature-cream);
  padding: 2rem 2.5rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}

.accordion-question:hover {
  color: var(--nature-gold);
}

.accordion-icon {
  width: 30px;
  height: 30px;
  border: 2px solid var(--nature-moss);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  background: rgba(139, 188, 139, 0.1);
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--nature-moss);
  transition: all 0.4s ease;
}

.accordion-icon::before {
  width: 14px;
  height: 2px;
}

.accordion-icon::after {
  width: 2px;
  height: 14px;
}

.faq-item.active .accordion-icon {
  transform: rotate(45deg);
  border-color: var(--nature-gold);
  box-shadow: var(--soft-glow);
}

.faq-item.active .accordion-icon::before,
.faq-item.active .accordion-icon::after {
  background: var(--nature-gold);
}

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0 2.5rem;
  color: var(--nature-cream);
  line-height: 1.8;
  font-weight: 400;
}

.faq-item.active .accordion-answer {
  max-height: 500px;
  padding: 0 2.5rem 2.5rem;
}

/* Animations */
@keyframes fadeInOrganic {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInOrganic 1s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

/* Responsive */
@media (max-width: 1024px) {
  .casino-item {
    width: calc(50% - 1.25rem);
  }
}

@media (max-width: 768px) {
  .casino-item {
    width: 100%;
    max-width: 400px;
  }

  .section.head h1 {
    font-size: 3rem;
  }

  .section header h2 {
    font-size: 2.5rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .casino-logo {
    width: 100%;
    height: 100px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links ul {
    justify-content: center;
  }
}


 /* Усиленный стиль h3 за пределами FAQ */
body:not(.faq) h3,
:not(section.faq) h3 {
font-size: 2rem;
color: #BEDEAF; /* неоново-розовый */
margin-top: 10px;
margin-bottom: 10px;
 text-align: center;
}

.section .tx-block {
  font-size: 1.4rem; /* или любой другой размер */
}

/* === Footer fix & layout === */
.footer {
  /* наследует твою тему; можно оставить селектор footer, но
     так приоритет выше и не конфликтует с остальными */
  background: rgba(45, 74, 45, 0.8);
  border: 2px solid #4caf50;
  border-radius: 25px;
  padding: 32px 28px;
  box-shadow: 0 8px 32px rgba(76, 175, 80, 0.2);
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px 40px;            /* вертикальный и горизонтальный зазоры */
  text-align: left;
}

.footer-about {
  flex: 1 1 260px;           /* тянется, но не меньше 260px */
}

.footer-tagline {
  color: var(--nature-cream);
  opacity: 0.9;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Ссылки: убираем маркеры и выкладываем сеткой */
.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  list-style: none;          /* убираем точки-маркеры */
  margin: 0;                 /* убираем дефолтные отступы UL */
  padding: 0;
}

.footer-links li {
  margin: 0;                 /* никакой дополнительной геометрии */
}

.footer-links a {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid var(--nature-moss);
  border-radius: 999px;
  color: #a5d6a7;
  text-decoration: none;
  transition: all .25s ease;
  background: rgba(139, 188, 139, 0.08);
}

.footer-links a:hover,
.footer-links a:focus {
  color: #2e7d32;
  border-color: var(--nature-gold);
  background: rgba(139, 188, 139, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(129, 199, 132, 0.25);
}

/* Нижняя плашка копирайта */
.footer-bottom {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--nature-moss);
  text-align: center;
}

.footer-bottom .copyright {
  color: #a5d6a7;
  font-size: .95rem;
  margin: 0;
}

/* Адаптив */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .footer-links ul {
    justify-content: center;
  }

  .footer-links a {
    padding: 8px 12px;
  }
}
