/*
Theme Name: Cat Casino
Theme URI: https://gamestyle.ru
Author: Cat Casino Team
Author URI: https://gamestyle.ru
Description: Современная премиум тема для онлайн казино Cat Casino с адаптивным дизайном и красивыми анимациями
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: catcasino
Tags: casino, gambling, entertainment, dark-theme, responsive
*/

/* ====================================
   DESIGN SYSTEM & BASE STYLES
   ==================================== */

:root {
  /* Casino Premium Dark Theme - HSL Colors */
  --color-background: 257 50% 7%;
  --color-foreground: 280 20% 98%;
  --color-card: 257 40% 12%;
  --color-primary: 280 81% 65%;
  --color-secondary: 328 85% 60%;
  --color-accent: 43 96% 56%;
  --color-muted: 257 30% 20%;
  --color-muted-foreground: 280 10% 60%;
  --color-border: 257 30% 25%;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(280 81% 65%) 0%, hsl(328 85% 60%) 50%, hsl(231 91% 65%) 100%);
  --gradient-secondary: linear-gradient(180deg, hsl(257 50% 7%) 0%, hsl(257 45% 10%) 100%);
  --gradient-accent: linear-gradient(90deg, hsl(43 96% 56%) 0%, hsl(38 90% 50%) 100%);
  
  /* Shadows & Glows */
  --glow-primary: 0 0 20px hsl(280 81% 65% / 0.5);
  --glow-secondary: 0 0 20px hsl(328 85% 60% / 0.5);
  --glow-accent: 0 0 30px hsl(43 96% 56% / 0.6);
  
  --border-radius: 1rem;
}

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

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background-color: hsl(var(--color-background));
  color: hsl(var(--color-foreground));
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: hsl(var(--color-primary));
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: hsl(var(--color-secondary));
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ====================================
   UTILITY CLASSES
   ==================================== */

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

.gradient-primary {
  background: var(--gradient-primary);
}

.gradient-accent {
  background: var(--gradient-accent);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glow-primary {
  box-shadow: var(--glow-primary);
}

.glow-secondary {
  box-shadow: var(--glow-secondary);
}

.glow-accent {
  box-shadow: var(--glow-accent);
}

/* ====================================
   ANIMATIONS
   ==================================== */

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

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.8);
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

.animate-shimmer {
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
}

.animate-scale-in {
    animation: scaleIn 0.5s ease-out;
}

.animate-rotate-glow {
    animation: rotateGlow 3s linear infinite;
}

.animate-gradient-shift {
  animation: gradientShift 3s ease infinite;
  background-size: 200% 200%;
}

/* ====================================
   BUTTONS
   ==================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cta {
  background: var(--gradient-accent);
  color: hsl(var(--color-background));
  box-shadow: var(--glow-accent);
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px hsl(43 96% 56% / 0.8);
}

.btn-hero {
  background: hsl(var(--color-secondary));
  color: hsl(var(--color-foreground));
  border: 2px solid hsl(var(--color-secondary) / 0.5);
  box-shadow: var(--glow-secondary);
}

.btn-hero:hover {
  transform: scale(1.05);
  border-color: hsl(var(--color-secondary));
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-xl {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
}

/* ====================================
   HEADER
   ==================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(var(--color-border) / 0.5);
  transition: transform 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  gap: 0.5rem;
}

.site-logo {
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  background: var(--gradient-primary);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 8px 32px rgba(155, 135, 245, 0.4);
  z-index: 998;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.scroll-to-top:hover {
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 12px 48px rgba(155, 135, 245, 0.6);
}

.scroll-to-top svg {
  color: white;
}

/* ====================================
   HERO SECTION
   ==================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0.2;
  animation: gradientShift 3s ease infinite;
  background-size: 200% 200%;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 4rem 1rem;
}

.hero-banner {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid hsl(var(--color-primary) / 0.3);
  margin-bottom: 2rem;
}

.hero-banner img {
  width: 100%;
  height: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--color-background) / 0.9) 0%, transparent 100%);
}

.hero-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-description {
  color: hsl(var(--color-muted-foreground));
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  max-width: 42rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.trust-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.trust-item:hover {
  transform: scale(1.05);
}

.trust-value {
  font-size: 2rem;
  font-weight: bold;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.trust-label {
  color: hsl(var(--color-muted-foreground));
  font-size: 0.875rem;
}

/* ====================================
   FEATURES SECTION
   ==================================== */

.features-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-description {
  color: hsl(var(--color-muted-foreground));
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid hsl(var(--color-primary) / 0.2);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: scale(1.05);
  border-color: hsl(var(--color-primary) / 0.5);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--border-radius);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--color-foreground));
}

.feature-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: hsl(var(--color-muted-foreground));
}

/* ====================================
   GAMES SECTION
   ==================================== */

.games-section {
  padding: 5rem 0;
  position: relative;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.game-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid hsl(var(--color-primary) / 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.5s ease;
  overflow: hidden;
  cursor: pointer;
}

.game-card:hover {
  transform: scale(1.05);
  border-color: hsl(var(--color-secondary) / 0.5);
}

.game-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.game-card:hover::before {
  opacity: 0.1;
}

.game-icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1.5rem;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.5));
}

.game-card:hover .game-icon {
  transform: scale(1.1);
}

.game-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.game-info {
  text-align: center;
  position: relative;
  z-index: 10;
}

.game-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.game-card:hover .game-title {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.game-count {
  color: hsl(var(--color-accent));
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.game-description {
  color: hsl(var(--color-muted-foreground));
  font-size: 0.875rem;
}

/* ====================================
   CONTENT SECTION
   ==================================== */

.content-section {
  padding: 5rem 0;
  position: relative;
}

.promo-banner {
  margin-bottom: 4rem;
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid hsl(var(--color-secondary) / 0.3);
  position: relative;
  transition: transform 0.5s ease;
}

.promo-banner:hover {
  transform: scale(1.02);
}

.promo-banner img {
  width: 100%;
  height: auto;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, 
    hsl(var(--color-background) / 0.8) 0%, 
    transparent 50%, 
    hsl(var(--color-background) / 0.8) 100%);
}

.content-article {
  max-width: 56rem;
  margin: 0 auto;
}

.content-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid hsl(var(--color-primary) / 0.2);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.content-box h2,
.content-box h3 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.content-box p {
  color: hsl(var(--color-foreground));
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-list {
  list-style: none;
  padding: 0;
}

.content-list li {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: hsl(var(--color-muted-foreground));
}

.content-list li::before {
  content: '✦';
  color: hsl(var(--color-accent));
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ====================================
   TABLES
   ==================================== */

.content-table {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid hsl(var(--color-primary) / 0.2);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin: 2rem 0;
}

.content-table thead {
  background: hsl(var(--color-primary) / 0.2);
}

.content-table th {
  padding: 1rem;
  text-align: left;
  color: hsl(var(--color-foreground));
  font-weight: 600;
}

.content-table td {
  padding: 1rem;
  border-top: 1px solid hsl(var(--color-primary) / 0.1);
}

.content-table tr:hover {
  background: hsl(var(--color-primary) / 0.05);
}

/* ====================================
   FAQ SECTION
   ==================================== */

.faq-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.faq-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  margin-bottom: 1.5rem;
}

.faq-icon-wrapper svg {
  width: 2.5rem;
  height: 2.5rem;
  color: hsl(var(--color-foreground));
}

.faq-list {
  max-width: 56rem;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid hsl(var(--color-primary) / 0.2);
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: hsl(var(--color-primary) / 0.4);
}

.faq-question {
  padding: 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  margin: 0;
}

.faq-question:hover {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: hsl(var(--color-muted-foreground));
  line-height: 1.8;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ====================================
   FOOTER
   ==================================== */

.site-footer {
  position: relative;
  border-top: 1px solid hsl(var(--color-border) / 0.5);
  margin-top: 5rem;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-description {
  color: hsl(var(--color-muted-foreground));
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: hsl(var(--color-primary) / 0.2);
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--color-muted-foreground));
}

.social-link:hover svg {
  color: hsl(var(--color-primary));
}

.footer-section h3,
.footer-section-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: hsl(var(--color-muted-foreground));
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: hsl(var(--color-primary));
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--color-border) / 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: hsl(var(--color-muted-foreground));
  font-size: 0.875rem;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

@media (max-width: 768px) {
  .header-inner {
    padding: 0 0.5rem;
    height: 70px;
    gap: 0.5rem;
  }
  
  .logo img {
    max-height: 35px !important;
  }
  
  .header-buttons {
    gap: 0.5rem;
  }
  
  .header-buttons .btn {
    padding: 10px 16px;
    font-size: 13px;
    white-space: nowrap;
    min-width: auto;
  }
  
  /* Скрываем блоки на мобилках */
  .trust-indicators,
  .features-section,
  .games-section {
    display: none !important;
  }
  
  /* Скрываем промо-баннер на мобилках */
  .promo-banner {
    display: none !important;
  }
  
  /* Оптимизация hero-баннера для мобилок */
  .hero-section {
    min-height: 100vh;
    padding-top: 70px;
  }
  
  .hero-content {
    padding: 1rem 0.5rem;
  }
  
  .hero-banner {
    border-radius: 1rem;
    margin-bottom: 1rem;
    min-height: 600px;
    display: flex;
    align-items: center;
  }
  
  .hero-banner img {
    width: 100%;
    height: 600px;
    object-fit: cover;
  }
  
  .hero-overlay {
    background: linear-gradient(to top, 
      hsl(var(--color-background)) 0%, 
      hsl(var(--color-background) / 0.95) 20%,
      hsl(var(--color-background) / 0.7) 50%,
      transparent 100%);
  }
  
  .hero-text {
    padding: 2rem 1.25rem;
    position: absolute;
    bottom: 0;
  }
  
  .hero-text > div:first-child {
    margin-bottom: 0.75rem;
  }
  
  .hero-text > div:first-child span {
    font-size: 0.875rem;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
    padding: 1.125rem 1.5rem;
    font-size: 1rem;
    justify-content: center;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .trust-indicators {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid,
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0 0.5rem;
    height: 65px;
    gap: 0.5rem;
  }
  
  .logo img {
    max-height: 32px !important;
  }
  
  .header-buttons .btn {
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: 0;
  }
  
  .hero-banner {
    min-height: 500px;
  }
  
  .hero-banner img {
    height: 500px;
  }
  
  .hero-text {
    padding: 1.5rem 1rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  .hero-buttons .btn {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .btn-xl {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .content-section {
    padding: 2rem 0;
  }
  
  .content-article {
    padding: 0 1rem;
  }
  
  .faq-section {
    padding: 2rem 0;
  }
}

/* ====================================
   CUSTOM SCROLLBAR
   ==================================== */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: hsl(var(--color-background));
}

::-webkit-scrollbar-thumb {
  background: hsl(var(--color-primary));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--color-secondary));
}

/* ====================================
   WORDPRESS SPECIFIC STYLES
   ==================================== */

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  color: hsl(var(--color-muted-foreground));
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ====================================
   СТИЛИ ДЛЯ КОНТЕНТА ИЗ АДМИНКИ
   ==================================== */

.content-article h1,
.content-article h2,
.content-article h3,
.content-article h4,
.content-article h5,
.content-article h6 {
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  font-weight: 600;
  line-height: 1.3;
}

.content-article h2 {
  font-size: 1.8em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-article h3 {
  font-size: 1.4em;
  color: hsl(var(--color-foreground));
}

.content-article p {
  margin-bottom: 1em;
  line-height: 1.6;
  color: hsl(var(--color-foreground));
}

.content-article ul,
.content-article ol {
  margin: 1em 0;
  padding-left: 2em;
}

.content-article ul li,
.content-article ol li {
  margin-bottom: 0.5em;
  line-height: 1.6;
