/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lexend', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Headings */
h1, h2, h3 {
  font-family: 'Titan One', cursive;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.cookie-popup.hidden {
  display: none;
}

.cookie-content {
  background: #4CAF50;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  border: 3px solid #000;
}

.cookie-content h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 20px;
}

.cookie-content p {
  color: white;
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 20px;
}

.btn-accept {
  background: #FFA726;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
}

.btn-settings {
  background: transparent;
  color: white;
  border: none;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
}

/* Header */
.header {
  background: #45ABFF;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo-oval {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.frog {
  font-size: 1.5rem;
}

.logo-text {
  color: white;
  font-family: 'Titan One', cursive;
  font-size: 1.8rem;
}

.nav {
  display: flex;
  gap: 40px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.2rem;
  transition: opacity 0.3s;
}

.nav a:hover {
  opacity: 0.8;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #42A5F5;
  z-index: 9999;
  transition: right 0.3s ease;
  border-radius: 30px 0 0 30px;
  max-height: 600px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-content {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;

}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 500;
}

/* Hero Section */
.hero {
  background: #45ABFF;

  padding: 60px 0 100px 0;
  position: relative;
  overflow: hidden;
  padding-bottom: 0px;

  
}

.hero::before {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  height: 300px;


  background: url(/wp-content/themes/xarnovia/assets/images/bg1.png);
  background-size: cover;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}

.hero-text {
 
  margin-bottom: 120px;
}
.hero-text-glass{
  background: rgba(0, 191, 255, 0.3);
  padding: 40px;
  border-radius: 30px;
  backdrop-filter: blur(10px);

  border-radius: 40px;
background: rgba(0, 218, 243, 0.50);
}

.hero-text h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-text p {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-play {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background: #10F;
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
  transition: background 0.3s;
  margin-top: 20px;
  background: url(/wp-content/themes/xarnovia/assets/images/btn.svg) !important;
  background-size: cover !important;
  width: 226px !important;
height: 44px !important;

color: #FFF;
font-family: Lexend;
font-size: 15px !important;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.btn-play:hover {
  background: #303F9F;
}

/* Mushroom Character */
.hero-character {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 300px;
  position: relative;
}

.mushroom {
  position: relative;
  z-index: 3;
}

.mushroom-cap {
  width: 150px;
  height: 80px;
  background: #E91E63;
  border-radius: 50% 50% 50% 50% / 100% 100% 40% 40%;
  border: 3px solid #000;
  position: relative;
  z-index: 2;
}

.mushroom-stem {
  width: 80px;
  height: 120px;
  background: #9C27B0;
  border-radius: 40px 40px 20px 20px;
  border: 3px solid #000;
  margin: -10px auto 0;
  position: relative;
  z-index: 1;
}

.mushroom-face {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.eye {
  width: 12px;
  height: 12px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 0;
}

.eye.left {
  left: -15px;
}

.eye.right {
  right: -15px;
}

.mouth {
  width: 20px;
  height: 10px;
  border: 2px solid #000;
  border-top: none;
  border-radius: 0 0 20px 20px;
  position: absolute;
  top: 20px;
  left: -10px;
}

/* Flowers decoration */
.flowers-decoration {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 2;
}

.flower {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #000;
}

.flower.blue {
  background: #2196F3;
}

.flower.pink {
  background: #E91E63;
}

.flower::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #FFA726;
  border-radius: 50%;
  border: 1px solid #000;
}

/* About Section */
.about-section {
  background: #F9D04C;
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.cow-illustration {
  position: relative;
  width: 100%;
  height: 100%;

}
.cow-illustration img{
 
  width: 100%;
  height: 100%;

}

.cow-container {
  position: relative;
  height: 100%;
}

.cow-standing,
.cow-lying {
  position: absolute;
  width: 100%;
  height: 100%;
}

.cow-standing {
  top: 20px;
  left: 20px;
}

.cow-lying {
  bottom: 20px;
  right: 20px;
}

.cow-body,
.cow-body-lying {
  width: 80px;
  height: 50px;
  background: white;
  border: 2px solid #000;
  border-radius: 10px;
  position: relative;
}

.cow-body-lying {
  width: 60px;
  height: 40px;
}

.cow-spots,
.cow-spots-lying {
  position: absolute;
  top: 5px;
  left: 10px;
  width: 15px;
  height: 15px;
  background: #000;
  border-radius: 50%;
}

.cow-spots::after,
.cow-spots-lying::after {
  content: '';
  position: absolute;
  top: 10px;
  right: -20px;
  width: 12px;
  height: 12px;
  background: #000;
  border-radius: 50%;
}

.cow-head,
.cow-head-lying {
  width: 40px;
  height: 35px;
  background: white;
  border: 2px solid #000;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: -10px;
}

.cow-head-lying {
  width: 30px;
  height: 25px;
  top: -5px;
  left: -5px;
}

.about-text {
  background: #E91E63;
  padding: 20px;
  border-radius: 20px;
  border: 3px solid #000;

  border-radius: 40px;
  border: 3px solid #000;
  background: rgba(243, 0, 210, 0.50);
}

.about-text h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text p {
  color: white;
  font-size: 1rem;
  line-height: 1.6;
}

/* Features Section */
.features-section {
  background: #F9D04C;
  padding: 40px 0 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.feature-new {
  background: #E91E63;
  padding: 40px;
  border-radius: 20px;
  border: 3px solid #000;

  border-radius: 40px;
border: 3px solid #000;
background: rgba(243, 0, 210, 0.50);
}

.feature-new h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.feature-new p {
  color: white;
  font-size: 1rem;
  line-height: 1.6;
}

.disco-ball {

  

  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;

}
.disco-ball img{
  width: 100%;
}

.disco-sphere {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: relative;
  border: 2px solid #000;
}



.disco-sparkles {

  width: 100%;
  height: 100%;
}

.sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #FFC107;
  transform: rotate(45deg);
}
/* Game Categories */
.game-categories {
  background: url(/wp-content/themes/xarnovia/assets/images/bg2.png) no-repeat center center;
  background-size: cover;
  padding: 80px 0;
  position: relative;
  min-height: 500px;
}


/* Fallback colorful background if image doesn't load */
.game-categories::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
      #E91E63 0%, #E91E63 20%,
      #9C27B0 20%, #9C27B0 40%,
      #2196F3 40%, #2196F3 60%,
      #4CAF50 60%, #4CAF50 80%,
      #FFA726 80%, #FFA726 100%
  );
  z-index: -1;
}

.categories-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
  position: relative;
  align-items: center;
  z-index: 2;
}

.category-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.category-card {
  background: #4CAF50;
  border-radius: 30px;
  border: 3px solid #000;

  position: relative;
  min-height: 97px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
.category-card:nth-child(1) {
 margin-top: 0;
}

.category-card h3 {
  background: white;
  color: #000;
  font-size: 1.8rem;
  white-space: nowrap;
  padding: 0px 20px;
  border-radius: 25px;
  text-align: center;
  border: 3px solid #000;
  display: inline-block;
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
}

.category-card p {
  color: white;
  font-size: 1rem;
  margin: 0;
  padding: 0 25px 20px 25px;
  line-height: 1.4;
  padding-bottom: 0;
}

.practical-tags {
  background: #2196F3;
  padding: 30px;
  border-radius: 20px;
  border: 3px solid #000;

  border-radius: 40px;
border: 3px solid #000;
background: #0080FF;
}

.practical-tags h3 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 15px;
  line-height: 1.2;
}

.practical-tags p {
  color: white;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.decorative-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.flower-decoration {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid #000;
}

.flower-decoration.green {
  background: #4CAF50;
}

.flower-decoration.orange {
  background: #FF9800;
}

.flower-decoration.pink {
  background: #E91E63;
}

.star-decoration {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #FFC107;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* Feedback Section */
.feedback-section {
  background: #F9D04C;
  padding: 80px 0;
}

.feedback-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.rainbow-illustration {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rainbow-illustration img{
  width: 100%;
}
.rainbow {
  width: 200px;
  height: 100px;
  position: relative;
  border-radius: 200px 200px 0 0;
  overflow: hidden;
  border: 3px solid #000;
  border-bottom: none;
}

.rainbow-stripe {
  position: absolute;
  width: 100%;
  height: 20px;
  border-bottom: 2px solid #000;
}

.rainbow-stripe.green {
  background: #4CAF50;
  top: 0;
}

.rainbow-stripe.blue {
  background: #2196F3;
  top: 20px;
}

.rainbow-stripe.purple {
  background: #9C27B0;
  top: 40px;
}

.rainbow-stripe.pink {
  background: #E91E63;
  top: 60px;
}

.rainbow-stripe.cyan {
  background: #00BCD4;
  top: 80px;
}

.rainbow-flowers {
  position: absolute;
  width: 100%;
  height: 100%;
}

.rainbow-flower {
  position: absolute;
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 50%;
  border: 2px solid #000;
}

.rainbow-flower::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background: #FFA726;
  border-radius: 50%;
}

.feedback-text {
  background: #E91E63;
  padding: 40px;
  border-radius: 20px;
  border: 3px solid #000;

  border-radius: 40px;
border: 3px solid #000;
background: rgba(243, 0, 210, 0.50);
}

.feedback-text h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.feedback-text p {
  color: white;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
.contact-info{
  display: flex;
  gap: 50px;
}

.contact-info p {
  font-weight: 600;
  margin-bottom: 5px;

}

/* Footer */
.footer {
  background: #2196F3;
  color: white;
  padding: 60px 0 40px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-info {
  display: flex;
  gap: 60px;
  justify-content: space-between;
}

.company-info p,
.contact-info p {
  margin-bottom: 5px;
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
}

.social-icon.twitter {
  background: #1DA1F2;
}

.social-icon.facebook {
  background: #4267B2;
}

.social-icon.twitter::before {
  content: 'T';
}

.social-icon.facebook::before {
  content: 'f';
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.footer-links a:hover {
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .desktop-nav {
      display: none;
  }
  
  .mobile-menu-btn {
      display: flex;
  }
  
  .hero-content {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
      display: flex;
      flex-direction: column;
  }
  
  .hero-text h1 {
      font-size: 2.5rem;
  }
  
  .about-content,
  .features-grid,
  .feedback-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .categories-layout {
      grid-template-columns: 1fr;
  }
  
  .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 40px;
  }
  
  .footer-info {
      flex-direction: column;
      gap: 30px;
      text-align: center;
  }
  
  .footer-bottom {
      flex-direction: column;
      gap: 20px;
      text-align: center;
  }
  
  .cookie-content {
      padding: 30px 20px;
  }
  
  .cookie-content h3 {
      font-size: 1.5rem;
  }
  
  .cookie-buttons {
      flex-direction: column;
      gap: 15px;
  }
  
  .btn-play.mobile {
      margin-top: 30px;
      width: 80%;
      padding: 20px;
      font-size: 1.2rem;
      background: #3F51B5;
      border-radius: 25px;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 0 15px;
  }
  
  .hero-text,
  .about-text,
  .feature-new,
  .feedback-text {
      padding: 25px;
  }
  
  .hero-text h1 {
      font-size: 2rem;
  }
  
  .about-text h2,
  .feature-new h2,
  .feedback-text h2 {
      font-size: 2rem;
  }
  
  .category-card,
  .practical-tags {
      padding: 20px;
  }
  
  .logo-text {
      font-size: 1.5rem;
  }
  
  .mobile-nav a {
      font-size: 1.5rem;
  }
  .footer-links,.contact-info{
    display: flex;
    flex-direction: column;
  }
  .logo-oval{
    display: flex;
    justify-content: center;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Additional animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

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

.disco-sphere {
  animation: spin 4s linear infinite;
}

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




/* Game Catalog Section */
.game-catalog {
  background: #F9D04C;
  padding: 80px 0;
}

.catalog-header {
  margin-bottom: 60px;
}

.catalog-intro {

  padding: 20px 10px;
  border-radius: 20px;
  border: 3px solid #000;

  border-radius: 40px;
background: rgba(0, 218, 243, 0.50);
}

.catalog-intro h2 {
  color: white;
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.catalog-intro p {
  color: white;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.catalog-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 60px;
  align-items: center;
}

.about-illustration {

  border-radius: 20px;



  display: flex;
  align-items: center;
  justify-content: center;
}

.about-illustration img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.about-xarnovia {
  background: #E91E63;
  padding: 20px 10px;
  border-radius: 20px;
  border: 3px solid #000;

  border-radius: 40px;
border: 3px solid #000;
background: rgba(243, 0, 210, 0.50);
}

.about-xarnovia h3 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-xarnovia p {
  color: white;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-xarnovia p:last-child {
  margin-bottom: 0;
}

/* Games Grid - 6 игр: слева 1 большая, справа 3 сверху + 2 снизу */
.games-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 5px;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid #000;
}

.game-tile {
  display: block;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.game-tile:hover {
  transform: scale(1.02);
}

.game-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Первая игра (кот) - большая слева на всю высоту */
.game-tile:nth-child(1) {
  grid-row: 1 / 3;
  grid-column: 1;
}

/* Вторая игра - верх первая справа */
.game-tile:nth-child(2) {
  grid-row: 1;
  grid-column: 2;
}

/* Третья игра - верх вторая справа */
.game-tile:nth-child(3) {
  grid-row: 1;
  grid-column: 3;
}

/* Четвертая игра - верх третья справа */
.game-tile:nth-child(4) {
  grid-row: 1;
  grid-column: 4;
}

/* Пятая игра - низ первая справа */
.game-tile:nth-child(5) {
  grid-row: 2;
  grid-column: 2 / 4;
}

/* Шестая игра - низ вторая справа */
.game-tile:nth-child(6) {
  grid-row: 2;
  grid-column: 4;
}

/* Responsive Design */
@media (max-width: 768px) {
  .catalog-content {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  
  .catalog-intro {
      padding: 30px;
  }
  
  .catalog-intro h2 {
      font-size: 2.5rem;
  }
  
  .about-xarnovia {
      padding: 30px;
  }
  
  .about-xarnovia h3 {
      font-size: 2rem;
  }
  
  .games-grid {
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      height: 400px;
  }
  
  .game-tile:nth-child(1) {
      grid-row: 1 / 3;
      grid-column: 1;
  }
  
  .game-tile:nth-child(2) {
      grid-row: 1;
      grid-column: 2;
  }
  
  .game-tile:nth-child(3) {
      grid-row: 1;
      grid-column: 3;
  }
  
  .game-tile:nth-child(4) {
      grid-row: 2;
      grid-column: 2;
  }
  
  .game-tile:nth-child(5) {
      grid-row: 2;
      grid-column: 3;
  }
  
  .game-tile:nth-child(6) {
      display: none;
  }
}

@media (max-width: 480px) {
  .catalog-intro,
  .about-xarnovia {
      padding: 20px;
  }
  
  .catalog-intro h2 {
      font-size: 2rem;
  }
  
  .about-xarnovia h3 {
      font-size: 1.8rem;
  }
  
  .games-grid {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(6, 1fr);
      height: 1200px;
      gap: 5px;
  }
  
  .game-tile:nth-child(1),
  .game-tile:nth-child(2),
  .game-tile:nth-child(3),
  .game-tile:nth-child(4),
  .game-tile:nth-child(5),
  .game-tile:nth-child(6) {
      grid-row: auto;
      grid-column: 1;
  }
}