* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fdfcf8;
    color: #2c3e2b;
    overflow-x: hidden;
  }

  h1,
  h2,
  h3 {
    font-weight: 600;
  }

  header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeInDown 1.5s ease-out;
  }

  .logo-container {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .logo-container img {
    max-width: 240px;
    height: auto;
  }

  nav {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 0;
    width: 80%;
    max-width: 600px;
  }

  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
  }

  nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
  }

  nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: #bc9c68;
    transition: width 0.3s ease;
  }

  nav ul li a:hover {
    color: #bc9c68;
  }

  nav ul li a:hover::after {
    width: 100%;
  }


  .audio-control-container {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .audio-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .audio-btn:hover {
    color: #bc9c68;
    transform: scale(1.1);
  }

  .audio-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
  }

  .hero-video-container {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
  }

  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(252, 251, 247, 1) 100%);
    z-index: 2;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fbffde;
    margin-top: 290px;
    animation: fadeInUp 2s ease-out;
  }

  .hero-content h2 {
    font-size: 2.4rem;
    font-style: italic;
    margin-bottom: 10px;
  }


  .section {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
  }

  .section.visible {
    opacity: 1;
    transform: translateY(0);
  }

.section-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    color: #2c3e2b;
    border-radius: 20px;
    padding: 10px;
    font-weight: 400;
    background:#e9ecdf;
    background-size: 100% 100%, 1200% 1200%;
    animation: liquidLuxury 18s ease-in-out infinite;
}


  @keyframes liquidLuxury {
    0% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 100% 50%;
    }

    50% {
        background-position: 100% 100%;
    }

    75% {
        background-position: 0% 100%;
    }

    100% {
        background-position: 0% 50%;
    }
}


  .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .section-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
  }


  .section-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  }

  footer {
    background-color: #8A9A5B;
    color: #fcfbf7;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 768px) {
    .grid-2 {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    nav ul {
      gap: 20px;
    }

    .logo-container img {
      max-width: 200px;
    }

    .section {
      padding: 0px 20px;
    }

    .hero-content {
      margin-top: 286px;
    }

    .max {
      max-width: 360px;
    }

    .section-title {
    font-size: 1.3rem;
}
  }

  .premium-shape {
    width: 36px;
    height: 36px;
    fill: #2c3e2b;
    transition: all 0.3s ease;
  }


  .premium-shape:hover {
    fill: #bc9c68;
    transform: scale(1.1);
  }


  .slider-container {
    width: 100%;
    max-width: 1194px;
    margin: 80px auto;
    padding: 0 0;
  }

  .accordion-slider {
    display: flex;
    width: 100%;
    height: 500px;
    gap: 5px;
  }

  .accordion-item {
    flex: 0 0 50px;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(44, 62, 43, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .accordion-item.active {
    flex: 1;
  }

  .accordion-item.active::before {
    opacity: 1;
  }

  .slider-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: #fcfbf7;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
    z-index: 2;
  }

  .slider-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
  }

  .slider-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 300;
  }


  .accordion-item.active .slider-content {
    opacity: 1;
    transform: translateY(0);
  }


  @media (max-width: 768px) {
    .slider-container {
      max-width: 360px;
    }

    .accordion-slider {
      flex-direction: column;
      height: 600px;
      gap: 5px;
    }

    .accordion-item {
      flex: 0 0 50px;
      width: 100%;
    }

    .accordion-item.active {
      flex: 1;
    }

    .slider-content {
      bottom: 20px;
      left: 20px;
      right: 20px;
    }

    .slider-content h3 {
      font-size: 1.6rem;
    }
  }


  .lang-selector-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px; 
    padding: 20px 10px; 
    width: 100%;
    box-sizing: border-box;
    flex-wrap: nowrap; 
    margin-bottom: 50px;
  }

  .lang-selector-btn {
    display: inline-block;
    width: 50px;
    height: 50px;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .lang-selector-btn:hover {
    transform: scale(1.08);
    opacity: 0.9;
  }

  .lang-selector-img {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    border: 2px solid #ffffff; 
    display: block;
  }

  @media (max-width: 360px) {
    .lang-selector-wrapper {
      gap: 15px; 
    }
    .lang-selector-btn, .lang-selector-img {
      width: 40px; 
      height: 40px;
    }
  }


.olv-feature-section {
  background-color: #8A9A5B;
  padding: 60px 20px;
  width: 100%;
  box-sizing: border-box;
}

.olv-feature-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; 
  justify-content: center;
  gap: 40px;
}

.olv-feature-card {
  flex: 1 1 calc(25% - 40px); 
  min-width: 200px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.olv-circle-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15); 
  border: 2px solid rgba(255, 255, 255, 0.4); 
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.olv-feature-card:hover .olv-circle-wrapper {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.25);
}

.olv-icon {
  width: 50px;
  height: 50px;
  color: #ffffff;
}

.olv-title {
  color: #ffffff;
  font-family: sans-serif; 
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 10px 0;
  letter-spacing: 0.5px;
  font-variant-numeric: lining-nums;
}

.olv-description {
  color: rgba(255, 255, 255, 0.85); 
  font-family: sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 992px) {
  .olv-feature-card {
    flex: 1 1 calc(50% - 40px); 
    max-width: 280px; 
  }
}

@media (max-width: 480px) {
  .olv-feature-container {
    gap: 30px; 
  }
  .olv-circle-wrapper {
    width: 120px;
    height: 120px;
  }
  .olv-icon {
    width: 42px;
    height: 42px;
  }
}

    .lang-selector-wrapper {
      position: relative !important;
      transform: translateY(-50px) !important;
      z-index: 999 !important; 
    }

    @media (max-width: 768px) {
      .lang-selector-wrapper {
        transform: translateY(-50px) !important;
      }

      .hero-content h2 {
    font-size: 1.8rem;
}
    }

    .olive-trail {
      position: fixed;
      top: 0;
      left: 0;
      width: 14px;
      height: 18px;
      background-color: #4A5D23;
      border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; 
      pointer-events: none; 
      z-index: 10000;
      transform: translate(-50%, -50%);
      opacity: 0.8;
      transition: transform 0.1s ease-out, opacity 0.6s ease-out;
    }
    
    .olive-trail::after {
      content: '';
      position: absolute;
      top: 3px;
      left: 3px;
      width: 3px;
      height: 5px;
      background: rgba(255, 255, 255, 0.6);
      border-radius: 50%;
      transform: rotate(-15deg);
    }

    .footer-instagram{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:25px 0;
}

.footer-instagram a{
    width:64px;
    height:64px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:rgba(255,255,255,0.4);
    backdrop-filter:blur(8px);
    box-shadow:
        0 8px 25px rgba(0,0,0,0.18),
        inset 0 0 0 1px rgba(255,255,255,0.08);
    transition:all .35s ease;
    text-decoration:none;
}

.footer-instagram a:hover{
    transform:translateY(-4px) scale(1.08);
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.35),
        0 0 25px rgba(0, 0, 0, 0.25);
}

.footer-instagram svg{
    width:34px;
    height:34px;
}

.item1 { background-image: url('../img/slider1.jpg'); }
.item2 { background-image: url('../img/slider2.jpg'); }
.item3 { background-image: url('../img/slider3.jpg'); }
.item4 { background-image: url('../img/slider4.jpg'); }


.zey
{
  width: 570px;
}

@media (max-width: 768px) {
  .item1 { background-image: url('../img/slider1m.jpg'); }
  .item2 { background-image: url('../img/slider2m.jpg'); }
  .item3 { background-image: url('../img/slider3m.jpg'); }
  .item4 { background-image: url('../img/slider4m.jpg'); }

  .zey
{
  width: 350px;
}
}

.olive-game-area {
  text-align: center;
  margin: 40px 0;
  position: relative;
}

#start-game-btn {
  padding: 12px 20px;
  font-size: 18px;
  border: none;
  background: #bc9c68;
  color: white;
  border-radius: 10px;
  cursor: pointer;
}

#game-zone {
  position: fixed;
  bottom: 185px; 
  left: 0;
  width: 100%;
  height: 300px;
  overflow: hidden;
  pointer-events: none;
}

#basket {
  position: absolute;
  bottom: 0;
  left: 50%;
  font-size: 50px;
  transform: translateX(-50%);
  pointer-events: none;
}

.olive {
  position: absolute;
  top: -40px;
  font-size: 24px;
  animation: fall linear forwards;
}

@keyframes fall {
  from { transform: translateY(0); }
  to { transform: translateY(350px); }
}

.hidden {
  display: none;
}

#discount-code {
  font-size: 18px;
  min-height: 24px;
      margin-top: -20px;
    margin-bottom: 20px;
}

.olive-game-area {
  text-align: center;
}


.game-timer {
  font-size: 28px;
  font-weight: bold;
  color: #bc9c68;
  letter-spacing: 2px;

  display: block;             
  width: fit-content;          
  margin: 0 auto 10px auto;   

  padding: 8px 16px;
  border-radius: 12px;

  background: rgba(0,0,0,0.05);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);

  transition: all 0.3s ease;
}

.hidden {
  display: none !important;
}

body.game-lock {
  overflow: hidden;
  touch-action: none;
}


.price{
    font-size:64px;
    color:#bc9c68;
    font-weight:300;
}

