/*!
Theme Name: Casino Guide Theme
Theme URI: http://pryvus.com/
Author: Pryvus
Author URI: http://pryvus.com/
Description: Custom light theme
Version: 1.0.0
Tested up to: 6.7
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: cassite-theme
*/

/* =======================
   Reset & Base styles
======================= */
* {
  padding: 0;
  margin: 0;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* body {
  font-family: var(--coming-soon-font, "Poppins", sans-serif);
  margin: 0;
  color: #fff;
  background: #070920;
} */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  line-height: 1.7;
  color: #f8fafc;
  background: #0f172a;
  background-image: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

a, a:link, a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

.container__page {
  max-width: 900px !important;
  width: 100%;
  margin: 0 auto;
}

.content__wrap {
  padding-bottom: 64px;

  .wp-block-list {
    list-style: disc !important;
    padding: 10px;
  }

  p {
    padding: 12px 0;
  }
}

.wp-block-heading {
  font-size: 32px !important;
  font-weight: 900;
}

.menu_page_title {
  padding: 24px 0 !important;
  margin-bottom: 24px;
  border-bottom: 1px solid #44403f;
  font-size: 32px !important;
}

@media (max-width: 1024px) {
  .container__page {
    padding: 15px;
  }
}

aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}



img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

address {
  font-style: normal;
}

/* =======================
   Layout
======================= */
.site-main > .container {
  padding: 33px 0 0;
  color: var(--text-color);
  h1 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
  }
  a {
    color: var(--text-color);
    text-decoration: underline;
  }
  ul {
    padding-left: 20px;
    margin-bottom: 10px;
    li {
      list-style: disc;
      margin-bottom: 5px;
    }
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 1200px;
    max-width: 98vw;
  }

  .container-page {
    width: 1165px;
    max-width: 98vw;
    margin: 0 auto;
    padding: 20px 0;
  }
}

.header.casguide__wrapper {
  background: #d21f26;          
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
}


.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 0px;         
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.header-container .logo p {
  font-size: 16px;
}

.header-container .logo p  a {
  color: #fbbf24;
  text-decoration: underline;
  font-weight: 600;
}
/* 
.header__menu_list {
  display: flex;
  justify-content: center;
  background: white;
  border-bottom: 1px solid #e5e7eb;
}

.header__menu_list .header-nav .header-nav__menu {
  display: flex;
  gap: 20px;
  color: #070920;
} */

.header-nav__menu {
  border-bottom: 1px solid #e5e7eb;
}

.logo {
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.logo img {
  height: 32px;               
  width: 32px;
  object-fit: contain;
  display: block;
}

.header__disclaimer {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}

.header__disclaimer a {
  color: #ffd54a;
  text-decoration: underline;
  font-weight: 600;
}

.header__logos {
  display: flex;
  align-items: center;
  column-gap: 18px;
  flex-shrink: 0;
}

.casguide__header_logo img {
  height: 30px;                
  width: auto;
  display: block;
}


.main__logo_menu h1 {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.main__logo_menu {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.header-nav {
  display: flex;
  align-items: center;
}

.navigation ul {
  display: flex;
  gap: 8px;
}

.navigation ul li {
  list-style: none;
}

.navigation ul li a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 15px;
  color: #cbd5e1;
}

.navigation ul li a:hover, 
.navigation ul li a.active {
  color: #f8fafc;
  background: #334155;
}

.header__menu_list {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #475569;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px;
}



@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    row-gap: 10px;
    text-align: center;
  }

  .logo {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .casguide__header_logo img {
    height: 20px;
  }

  .header-container .logo p {
    font-size: 14px;
  }

  .header-container {
    padding: 10px 24px;
  }


  .header__logos {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 8px;
  }

  .header__disclaimer {
    max-width: 100%;
  }

  .main__logo_menu h1 {
    text-align: center;
  }
/* 
  .main__logo_menu {
    flex-direction: column;
  } */

  .navigation ul {
    padding-top: 20px;
    padding-bottom: 20px;
    flex-direction: column;
  }
  
}

/* brands */

.brands__main_title {
  padding: 60px 24px 48px;
  text-align: center;
  background: transparent;
  position: relative;
}

.brands__main_title h1 {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 16px;
}

.brands__main_title p {
  font-size: 20px;
  color: #cbd5e1;
  margin-bottom: 24px;
  line-height: 1.6;
}

.brands-list-block {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.casguide__brands-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  margin-top: 40px;
  margin-bottom: 80px;
}

.sitecas__brand-card {
  background: #334155;
  border-radius: 24px;
  padding: 32px 24px 24px;
  max-width: 430px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sitecas__brand-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: #915cff;
  box-shadow: 0 22px 60px rgba(145, 92, 255, 0.6);
}



.brand-col--logo {
  width: 96px;
  height: 96px;
  border-radius: 14px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.brand-col--logo img {
  max-width: 70%;
  height: auto;
}

.brand__title h1 {
  font-size: 22px;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  margin-bottom: 16px;
}

.rating__stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(251, 191, 36, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  
}

.rating__stars .star {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rating__stars .star img {
  width: 14px;
  height: auto;
}

.rating__stars p {
  font-weight: 600;
  font-size: 14px;
  color: #ffcc66;
}

.brand-col--offer {
  width: 100%;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 16px;
  padding: 20px 18px;
  margin-bottom: 20px;
  text-align: center;
  color: #1f1300;
}

.brand-col--offer .header__bonus_title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.brand-col--offer h2 {
  font-size: 28px;
  font-weight: 900;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 4px;
}

.brand-col--offer h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
}

.brand-col--rating {
  width: 100%;
  margin-bottom: 8px;
}

.header__disclaimer {
  font-size: 14px;
  color: #ffd166;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
}

.brand-col--btn {
  width: 100%;
  margin-bottom: 20px;
}

.save__btn {
  display: block;
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  text-align: center;
  font-weight: 700;
  font-size: 17px;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(88, 28, 135, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sitecas__brand-card:hover .save__btn {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(88, 28, 135, 0.8);
}

.brand__disclaimer {
  width: 100%;
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.15);
  font-size: 12px;
  line-height: 1.5;
  color: #c4cad8;
  text-align: left;
}

.brand__disclaimer p a {
  color: #8b5cf6;
}

@media (max-width: 1024px) {
  .casguide__brands-list {
    gap: 24px;
  }

  .sitecas__brand-card {
    max-width: 360px;
  }
}

@media (max-width: 768px) {

  .brands__main_title h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .brands__main_title p {
    font-size: 18px;
  }

  .brands__main_title {
    padding: 30px 0px 0px;
  }

  .casguide__brands-list {
    flex-direction: column;
    align-items: center;
  }

  .sitecas__brand-card {
    max-width: 100%;
  }
}


.whyus__block {
  padding: 80px 0 90px;
  color: #f5f7ff;
}

.whyus__title {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.whyus__title h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
}

.whyus__title p {
  font-size: 18px;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto;
}

.feature__title h1 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #f8fafc;
}

.feature__title p {
  color: #cbd5e1;
  line-height: 1.8;
}

.feature__list {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 28px;
}

.feature__item {
  background: #334155;
  padding: 32px;
  border-radius: 16px;
  border-left: 4px solid #8b5cf6;
}


.feature__item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.feature__icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(11, 20, 36, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature__icon {
  max-width: 22px;
  max-height: 22px;
}

.feature__item-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.feature__item-desc {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.7;
  color: #d3d9e6;
}

@media (max-width: 1200px) {
  .feature__list {
    max-width: 1000px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .whyus__block {
    padding: 60px 0 70px;
  }

  .whyus__title h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .whyus__title p {
    font-size: 18px;
  }

  .feature__list {
    max-width: 100%;
    padding: 0 20px;
    grid-template-columns: 1fr;
  }

  .feature__item {
    padding: 24px 20px;
  }
}


/* stats */

.stats__block {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  padding: 80px 0 80px;
  color: #ffffff;
  text-align: center;
}

.stats__title {
  max-width: 760px;
  margin: 0 auto 50px;
}

.stats__title h1 {
  font-size: 48px;
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.stats__title p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.stats__list {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.stat__item {
  min-width: 180px;
  position: relative;
  padding-top: 16px;
}

.stat__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 60px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  transform: translateX(-50%);
}

.stat__item h1 {
  font-size: 72px;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  display: block;
}

.stat__item p {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 900px) {
  .stats__title h1 {
    font-size: 34px;
  }

  .stats__list {
    justify-content: center;
    gap: 40px;
  }

  .stat__item h1 {
    font-size: 44px;
  }
}

@media (max-width: 600px) {
  .stats__block {
    padding: 50px 0 50px;
  }

  .stats__title {
    margin-bottom: 30px;
    padding: 0 16px;
  }

  .stats__list {
    flex-direction: column;
    align-items: center;
  }

  .stat__item {
    min-width: 0;
    width: 100%;
    max-width: 260px;
  }
}

/* content */

.content__block {
  padding: 80px 0 90px;
  color: #f5f7ff;
}

.main__title {
  max-width: 1000px;
  margin: 0 auto 40px;
}

.main__title h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  margin-top: 48px;
  line-height: 1.2;
  color: #ffffff;
}

.main__title p {
  font-size: 16px;
  line-height: 1.7;
  color: #c4cad8;
}

.content__main {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
  color: #d6dcee;
}

.content__main p {
  margin: 0 0 14px;
  font-size: 17px;
}

.content__main h2,
.content__main h3,
.content__main h4 {
  margin: 28px 0 12px;
  font-weight: 700;
  color: #ffffff;
}

.content__main h2 {
  font-size: 22px;
}

.content__main h3 {
  font-size: 28px;
}

.content__main h4 {
  font-size: 22px;
}

.content__main ul,
.content__main ol {
  margin: 0 0 18px 1.4em;
  padding: 0;
}

.content__main li {
  margin-bottom: 12px;
  padding-left: 8px;
  font-size: 18px;
}

.content__main strong {
  font-weight: 700;
  color: #ffffff;
}

.content__main em {
  font-style: italic;
}

.content__main blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 4px solid #915cff;
  border-radius: 12px;
  background: rgba(145, 92, 255, 0.08);
  font-size: 14px;
  line-height: 1.7;
  color: #e2e6f5;
}

.content__main blockquote p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .content__block {
    padding: 60px 0 70px;
  }

  .main__title,
  .content__main {
    max-width: 100%;
    padding: 0 20px;
  }

  .main__title h1 {
    font-size: 26px;
  }
}

/* faq */
.faq__block {
  padding: 80px 0 90px;
  color: #f5f7ff;
}

.faq__title {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.faq__title h1 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 16px;
  color: #ffffff;
}

.faq__title p {
  font-size: 16px;
  line-height: 1.6;
  color: #c4cad8;
}

.faq__list {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq__item {
  background: #263144;
  border-radius: 18px;
  padding: 0 26px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.faq__item.faq__item--active {
  background: #323d55;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
}

.faq__question p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.faq__toggle-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq__toggle-icon::before,
.faq__toggle-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transform-origin: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq__toggle-icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq__toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item.faq__item--active .faq__toggle-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
  background: #b088ff;
}

.faq__item.faq__item--active .faq__toggle-icon::after {
  transform: translate(-50%, -50%) rotate(135deg);
  background: #b088ff;
}

.faq__answer {
  font-size: 14px;
  line-height: 1.7;
  color: #d3d9e6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__answer p {
  margin: 0 0 20px;
}

.faq__item.faq__item--active .faq__answer {
  /* max-height задаётся JS через scrollHeight */
}

@media (max-width: 900px) {
  .faq__block {
    padding: 60px 0 70px;
  }

  .faq__title {
    padding: 0 20px;
  }

  .faq__title h1 {
    font-size: 32px;
  }

  .faq__list {
    padding: 0 20px;
  }

  .faq__item {
    padding: 0 20px;
  }
}

/* support */

.support__organization_block {
  max-width: 1400px;
  margin: 80px auto;
  padding: 40px 40px 50px;
  border-radius: 24px;
  background: #343f54;
  border: 2px solid #ef4444;
}

.support__title {
  text-align: center;
  margin-bottom: 40px;
}

.support__title h1 {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.support__title p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  color: #c4cad8;
}

.organization__list {
  width: 100%;
}

.altoaffi__organization_list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.altoaffi__organization_card {
  flex: 1 1 30%;
  min-width: 260px;
  max-width: 400px;
  background: #1f2635;
  border-radius: 22px;
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  color: #f5f7ff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  border: 1px solid #475569;
}

.organization-col--logo {
  margin-bottom: 22px;
}

.organization-col--logo h1 {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #a855ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
}

.organization-col--offer {
  margin-bottom: 20px;
}

.organization-col--offer .header__disclaimer:first-child {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.organization-col--offer .header__disclaimer:last-child {
  font-size: 14px;
  line-height: 1.7;
  color: #d3d9e6;
}

.organization__contnt {
  font-size: 13px;
  line-height: 1.6;
  color: #c4cad8;
  margin-bottom: 18px;
}

.organization__contnt p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0;
}

.organization__contnt svg {
  width: 16px;
  height: 16px;
  fill: #a9b3d2;
  flex-shrink: 0;
}

.organization__url .org_link {
  color: #7da6ff;
  text-decoration: none;
}

.organization__url .org_link:hover {
  text-decoration: underline;
}

.organization-col--btn {
  margin-top: auto;
}

.org__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, #a855ff, #6366f1);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(88, 28, 135, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.org__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(88, 28, 135, 0.9);
}

@media (max-width: 1024px) {
  .support__organization_block {
    margin: 60px 20px;
    padding: 32px 12px 40px;
  }

  .altoaffi__organization_list {
    justify-content: center;
  }

  .altoaffi__organization_card {
    flex: 1 1 45%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .altoaffi__organization_list {
    flex-direction: column;
    align-items: stretch;
  }

  .altoaffi__organization_card {
    flex: 1 1 100%;
  }
}


.reminder__block {
  margin-top: 48px;
  padding: 32px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 16px;
  border-left: 4px solid #ef4444;
}

.reminder__block h1 {
  color: #f8fafc;
  margin-bottom: 16px;
  font-size: 22px;
}

.reminder__block p {
  color: #cbd5e1;
  line-height: 1.8;
  margin: 0;
}


.site-footer {
  background: #0b1424;
  color: #f5f7ff;
  font-size: 14px;
  padding-top: 60px;
}

.footer__top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 70px;
  border-bottom: 1px solid #263042;
}

.footer__about_us,
.footer__quicklinks_menu,
.legal__menu,
.footer__disclaimer {
  color: #d3d9e6;
}

.footer__about_us {
  flex: 2 1 320px;
  max-width: 420px;
}

.footer__quicklinks_menu,
.legal__menu {
  flex: 1 1 160px;
  max-width: 220px;
}

.footer__disclaimer {
  flex: 2 1 260px;
  max-width: 360px;
}

.footer__about_us h1,
.footer__quicklinks_menu h1,
.legal__menu h1,
.footer__disclaimer h1 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 18px;
  color: #ffffff;
}

.footer__about_us p {
  margin: 0 0 6px;
  line-height: 1.8;
}

.footer__logos {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}

.footer__logos .landing__footer_img {
  max-height: 40px;
  width: auto;
  display: block;
}

.footer__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__menu li {
  margin-bottom: 10px;
}

.footer__menu a {
  color: #d8deed;
  text-decoration: none;
  font-size: 14px;
}

.footer__menu a:hover {
  color: #a855ff;
}

.footer__disclaimer p {
  margin: 0 0 6px;
  line-height: 1.8;
}

.sitecas__footer_copyright {
  max-width: 1200px;
  margin: 22px auto 0;
  padding: 18px 24px 26px;
  text-align: center;
  font-size: 13px;
  color: #b0b8cf;
}

.sitecas__footer_copyright h1 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
}

.sitecas__footer_copyright a {
  color: #a855ff;
  text-decoration: none;
}

.sitecas__footer_copyright a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer__top {
    gap: 32px;
  }

  .footer__about_us,
  .footer__quicklinks_menu,
  .legal__menu,
  .footer__disclaimer {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .site-footer {
    padding-top: 40px;
  }
}


/* container page */

.main.menu-page {
  background: #050b16;
  min-height: 100vh;
  padding: 80px 0 100px;
  color: #f5f7ff;
}

.container__page {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.menu_page_title {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 30px;
}

.menu_page_content .content__wrap {
  background: #252f40;
  border-radius: 22px;
  padding: 40px 40px 50px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.6);
  font-size: 15px;
  line-height: 1.8;
  color: #d6dcee;
}

.menu_page_content .content__wrap p {
  margin: 0 0 16px;
  font-size: 16px;
}

.menu_page_content .content__wrap a {
  color: #7da6ff;
  text-decoration: none;
}

.menu_page_content .content__wrap a:hover {
  text-decoration: underline;
}

.menu_page_content .content__wrap h2,
.menu_page_content .content__wrap h3 {
  margin: 40px 0 16px;
  font-weight: 700;
  color: #ffffff;
}

.menu_page_content .content__wrap h2 {
  font-size: 22px;
}

.menu_page_content .content__wrap h3 {
  font-size: 18px;
}

.menu_page_content .content__wrap h2::after,
.menu_page_content .content__wrap h3::after {
  content: "";
  display: block;
  margin-top: 8px;
  width: 100%;
  height: 2px;
  background: #9146ff;
}

.menu_page_content .content__wrap ul,
.menu_page_content .content__wrap ol {
  margin: 0 0 18px 1.4em;
  padding: 0;
  font-size: 16px;
}

.menu_page_content .content__wrap li {
  margin: 4px 0;
}

.menu_page_content .content__wrap ul {
  list-style: none;
}

.menu_page_content .content__wrap ul li {
  position: relative;
  padding-left: 14px;
}

.menu_page_content .content__wrap ul li::before {
  content: "•";
  position: absolute;
  left: -7px;
  top: -16px;
  color: #a855ff;
  font-size: 30px;
}

.menu_page_content .content__wrap blockquote {
  margin: 30px 0;
  padding: 18px 22px;
  border-radius: 14px;
  border-left: 4px solid #a855ff;
  background: rgba(148, 86, 255, 0.08);
  color: #e2e6f5;
}

.menu_page_content .content__wrap blockquote p:last-child {
  margin-bottom: 0;
}

.menu_page_content .content__wrap .custom-consent-box {
  margin-top: 26px;
  padding: 18px 22px;
  border-radius: 14px;
  border: 2px solid #22c55e;
  background: rgba(5, 46, 22, 0.4);
  color: #e2fbe5;
}

.menu_page_content .content__wrap .custom-consent-box p {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .main.menu-page {
    padding: 60px 0 80px;
  }

  .menu_page_title {
    font-size: 26px;
    text-align: left;
  }

  .menu_page_content .content__wrap {
    padding: 28px 20px 32px;
    border-radius: 18px;
  }
}

.menu_page_content .content__wrap ul {
  list-style: none !important;
  margin-left: 0;
  padding-left: 0;
}



/* ====== MOBILE MENU ====== */
@media (max-width: 768px) {
  /* базовое состояние хедера с бургером */
  .header__menu_list {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 20px;
  }

  .main__logo_menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header-nav {
    display: none;
  }

  /* открытое состояние: fullscreen overlay */
  .header__menu_list.header__menu_list--open {
    position: fixed;
    inset: 0;
    background: #020617;
    background: linear-gradient(180deg, #020617 0%, #020617 30%, #020617 100%);
    padding: 18px 20px 32px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .header__menu_list.header__menu_list--open .main__logo_menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .header__menu_list.header__menu_list--open .header-nav {
    display: block;
    width: 100%;
  }

  .header__menu_list.header__menu_list--open .navigation ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 40px;
  }

  .header__menu_list.header__menu_list--open .navigation ul li {
    list-style: none;
  }

  .header__menu_list.header__menu_list--open .navigation ul li a {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 18px;
    font-size: 20px;
    font-weight: 500;
    color: #e2e8f0;
  }

  .header__menu_list.header__menu_list--open .navigation ul li a:hover,
  .header__menu_list.header__menu_list--open .navigation ul li a.active {
    background: #1f2937;
    color: #f9fafb;
  }

  /* бургер / крестик */
  .header__burger {
    position: relative;
    width: 30px;
    height: 24px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    background: none;
  }

  .header__burger-line {
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: #f9fafb;
    transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
  }

  .header__burger.header__burger--active .header__burger-line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .header__burger.header__burger--active .header__burger-line:nth-child(2) {
    opacity: 0;
  }
  .header__burger.header__burger--active .header__burger-line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

  .header__menu_list.header__menu_list--open .header__burger {
    align-self: flex-end;
  }

  /* убираем вертикальный список под логотипом в закрытом состоянии */
  .navigation ul {
    padding-top: 0;
    padding-bottom: 0;
  }
}
