/* === RESET === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  font-family: 'Manrope', sans-serif;
  background: #fdfdfd;
  color: #202020;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* === GLOBAL HEADINGS === */
h1, h2, h3, h4 {
  font-family: 'Changa', sans-serif;
  font-weight: 700;
  color: #111;
}

/* Body tweaks */
body.cls-body {
  line-height: 1.6;
}

.material-symbols-rounded {
  font-variation-settings: 
    'FILL' 1, 
    'wght' 400, 
    'GRAD' 0, 
    'opsz' 24;
  font-size: 1.25rem;
  vertical-align: middle;
  color: #cc005e; /* или любой акцентный */
}

.capshell {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.capshell__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.capshell__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 auto;
}
.capshell__brand img {
  width: 36px;
  height: 36px;
}
.capshell__brandName {
  font-family: 'Changa', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #cc005e;
}

.capshell__burger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #222;
}

.capshell__menu {
  background: #f9f9f9;
  border-top: 1px solid #ddd;
  transition: all 0.3s ease;
}
.capshell__navlist {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}
.capshell__navlist li a {
  font-weight: 600;
  position: relative;
  color: #333;
  transition: color 0.3s ease;
}
.capshell__navlist li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #cc005e;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.capshell__navlist li a:hover::after {
  transform: scaleX(1);
}

/* Hide top when scrolled */
body.scrolled .capshell__top {
  transform: translateY(-100%);
  opacity: 0;
  height: 0;
  padding: 0;
}
body.scrolled .capshell__menu {
  border-top: none;
}

/* Mobile styles */
@media (max-width: 768px) {
  .capshell__burger {
    display: block;
  }
  .capshell__navlist {
    flex-direction: column;
    padding: 0;
    display: none;
  }
  .capshell__menu.open .capshell__navlist {
    display: flex;
    padding: 1rem;
  }
}

.firelaunch {
  background: radial-gradient(circle at top left, #ffe3ec, #fff0f6, #f5faff);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.firelaunch__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.firelaunch__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 2rem;
}

.firelaunch__content h1 {
  font-family: 'Changa', sans-serif;
  font-size: 2.6rem;
  color: #cc005e;
  margin-bottom: 1rem;
}
.firelaunch__sub {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.75rem;
}
.firelaunch__btn {
  display: inline-block;
  text-align: center;
  background: #cc005e;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.3s ease;
}
.firelaunch__btn:hover {
  background: #a70048;
}
.firelaunch__note {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: #666;
}

.firelaunch__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.firelaunch__boxPulse {
  width: 280px;
  height: 280px;
  animation: pulseSpin 6s ease-in-out infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}
.firelaunch__boxPulse img {
  width: 80%;
  height: auto;
  object-fit: contain;
  animation: slotWiggle 4s infinite;
}

@keyframes pulseSpin {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(2deg); }
}
@keyframes slotWiggle {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05) rotate(1deg); }
}

/* Responsive */
@media (max-width: 992px) {
  .firelaunch__grid {
    display: block;
  }
  .firelaunch__visual {
    margin-top: 2rem;
  }
}

/* === PROMO BLOCK === */
.parastar {
  background-image: url("../media/images/promo-banner.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parastar__overlay {
  background: rgba(0,0,0,0.5);
  width: 100%;
  padding: 4rem 1rem;
  text-align: center;
}
.parastar__title {
  font-family: 'Changa', sans-serif;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

/* === ABOUT SECTION === */
.aboutflare {
  padding: 4rem 2rem;
  background: #fefefe;
}
.aboutflare__wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.aboutflare__headline {
  font-size: 2.2rem;
  text-align: center;
  color: #cc005e;
  margin-bottom: 1.5rem;
}
.aboutflare__text {
  text-align: center;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #444;
}

/* Benefits */
.aboutflare__benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.aboutflare__card {
  background: #fff4fa;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  text-align: center;
}
.aboutflare__card span {
  font-size: 2rem;
  color: #cc005e;
  margin-bottom: 0.5rem;
}
.aboutflare__card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.aboutflare__card p {
  font-size: 0.95rem;
  color: #555;
}

.zenboost {
  background: repeating-linear-gradient(45deg, #f9f9ff, #f9f9ff 10px, #ffffff 10px, #ffffff 20px);
  padding: 5rem 1.5rem;
  display: flex;
  justify-content: center;
}
.zenboost__container {
  max-width: 800px;
  width: 100%;
  text-align: center;
}
.zenboost__heading {
  font-family: 'Changa', sans-serif;
  font-size: 2.2rem;
  color: #c3004e;
  margin-bottom: 2rem;
}
.zenboost__card {
  background: #fff;
  border: 3px solid #ffd4ec;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s ease;
}
.zenboost__card:hover {
  transform: translateY(-4px);
}
.zenboost__image {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, #ffffff, #e9f0ff);
  border-radius: 16px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  animation: zenFloat 6s ease-in-out infinite;
}
.zenboost__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: zenScale 5s ease-in-out infinite;
}
.zenboost__text {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.5rem;
  max-width: 500px;
}
.zenboost__playBtn {
  background: #c3004e;
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}
.zenboost__playBtn:hover {
  background: #a0003f;
}

@keyframes zenFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes zenScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* Responsive */
@media (max-width: 600px) {
  .zenboost__image {
    width: 180px;
    height: 180px;
  }
}

.glowtalks {
  background: #fffdfc;
  padding: 4rem 2rem;
}
.glowtalks__wrap {
  max-width: 1240px;
  margin: 0 auto;
}
.glowtalks__title {
  text-align: center;
  font-size: 2.2rem;
  font-family: 'Changa', sans-serif;
  color: #c3004e;
  margin-bottom: 3rem;
}
.glowtalks__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.glowtalks__card {
  background: #fff4f9;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.glowtalks__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.glowtalks__info {
  margin-bottom: 0.5rem;
}
.glowtalks__name {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}
.glowtalks__date {
  font-size: 0.85rem;
  color: #888;
}
.glowtalks__stars {
  color: #ffba00;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.glowtalks__text {
  font-size: 0.95rem;
  color: #444;
}

/* Subscription Block */
.puresubscribe {
  background: linear-gradient(145deg, #ffe0f0, #f4f4ff);
  padding: 4rem 2rem;
  text-align: center;
}
.puresubscribe__wrap {
  max-width: 720px;
  margin: 0 auto;
}
.puresubscribe__title {
  font-size: 2rem;
  color: #c3004e;
  font-family: 'Changa', sans-serif;
  margin-bottom: 1rem;
}
.puresubscribe__desc {
  font-size: 1rem;
  color: #444;
  margin-bottom: 2rem;
}
.puresubscribe__form {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.puresubscribe__form input {
  padding: 0.75rem 1rem;
  border: 2px solid #ccc;
  border-radius: 10px;
  flex: 1 1 280px;
  max-width: 360px;
}
.puresubscribe__form button {
  background: #c3004e;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.puresubscribe__form button:hover {
  background: #a1003d;
}

/* Modal Thanks */
.modalnote {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.modalnote__inner {
  background: #ffffff;
  border-radius: 14px;
  padding: 2rem;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
}
.modalnote__inner p {
  font-size: 1rem;
  color: #333;
}
.modalnote__close {
  margin-top: 1.2rem;
  padding: 0.5rem 1rem;
  background: #c3004e;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.cfaqgrid {
  background: linear-gradient(135deg, #f9f6ff, #ffeef7);
  padding: 4rem 2rem;
}
.cfaqgrid__wrap {
  max-width: 1160px;
  margin: 0 auto;
}
.cfaqgrid__title {
  text-align: center;
  font-size: 2rem;
  font-family: 'Changa', sans-serif;
  color: #c3004e;
  margin-bottom: 3rem;
}
.cfaqgrid__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
@media (max-width: 694px) {
  .cfaqgrid__grid {
    grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
  }
}
.cfaqgrid__card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.cfaqgrid__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.07);
}
.cfaqgrid__q {
  font-size: 1.2rem;
  font-weight: 600;
  color: #cc005e;
  margin-bottom: 1rem;
  position: relative;
}
.cfaqgrid__a {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.commlink {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #fff3f7, #f7faff);
}
.commlink__wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.commlink__title {
  text-align: center;
  font-size: 2rem;
  font-family: 'Changa', sans-serif;
  color: #c3004e;
  margin-bottom: 2rem;
}
.commlink__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.commlink__info {
  flex: 1 1 280px;
}
.commlink__info ul {
  list-style: none;
  padding: 0;
}
.commlink__info li {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #444;
}
.commlink__form {
  flex: 1 1 480px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.commlink__form input,
.commlink__form textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
}
.commlink__form button {
  padding: 0.75rem;
  border: none;
  background: #c3004e;
  color: white;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.commlink__form button:hover {
  background: #a3003c;
}

/* Modal */
.commlink-modal {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.commlink-modal__inner {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.commlink-modal__inner p {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.commlink-modal__inner button {
  background: #c3004e;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
}

.caldisclaimer {
  background: #fafafa;
  padding: 4rem 2rem;
}
.caldisclaimer__wrap {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.caldisclaimer__title {
  font-family: 'Changa', sans-serif;
  font-size: 2rem;
  color: #cc0055;
  margin-bottom: 2rem;
}
.caldisclaimer__text {
  font-size: 1rem;
  color: #444;
  text-align: left;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.caldisclaimer__text p {
  margin-bottom: 1.2rem;
}
.caldisclaimer__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.caldisclaimer__logos img {
  background: #c3004e;
  padding: 9px;
  border-radius: 3px;
  max-width: 220px;
  transition: transform 0.3s ease;
}
.caldisclaimer__logos img:hover {
  transform: scale(1.05);
}

.caltail {
  background: #1c1b23;
  color: #eee;
  padding: 3rem 2rem 2rem;
  text-align: center;
  font-size: 0.9rem;
}
.caltail__top {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.caltail__top a {
  color: #f78ba7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.caltail__top a:hover {
  color: #ffadc2;
}
.caltail__age {
  display: inline-block;
  margin-bottom: 1rem;
  background: #f78ba7;
  color: #1c1b23;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Changa', sans-serif;
}
.caltail__bottom {
  max-width: 600px;
  margin: 0 auto;
  color: #bbb;
  font-size: 0.85rem;
}

/* Cookie Banner */
.calcookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1b1b2f;
  color: #fff;
  padding: 1.2rem 1rem;
  z-index: 2000;
  display: none;
}
.calcookie-banner__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.calcookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}
.calcookie-banner__accept {
  background: #ff4081;
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}
.calcookie-banner__accept:hover {
  background: #e91e63;
}

/* Age Gate */
.calage-gate {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
}
.calage-gate__box {
  background: #fff;
  padding: 2rem;
  border-radius: 14px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.calage-gate__title {
  font-size: 1.5rem;
  color: #c3004e;
  margin-bottom: 1rem;
  font-family: 'Changa', sans-serif;
}
.calage-gate__text {
  font-size: 1rem;
  color: #444;
  margin-bottom: 2rem;
}
.calage-gate__buttons button {
  background: #c3004e;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  margin: 0 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
.calage-gate__buttons button:hover {
  background: #a8003d;
}
