/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #ff3838;
  --secondary-color: #ffd700;
  --dark-bg: #1a1a2e;
  --card-bg: rgba(255, 255, 255, 0.1);
  --text-color: #ffffff;
  --text-secondary: #b8b8b8;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

@font-face {
  font-family: "Poppins ExtraBold";
  src: url("../fonts/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LuckiestGuy";
  src: url("../fonts/LuckiestGuy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Poppins ExtraBold", sans-serif;
  background: linear-gradient(180deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 12, 41, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.logo img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-menu a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.burger span {
  width: 25px;
  height: 3px;
  background: var(--text-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  padding: 60px 0 70px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%),
    url("../img/zeus_bg_1.png") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0.3) 70%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 30%,
    rgba(0, 0, 0, 0.6) 70%,
    rgba(0, 0, 0, 0.9) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  text-align: center;
  position: relative;
  height: 100%;
  z-index: 2;
}

.hero-btn {
  display: block !important;
  width: 50% !important;
  margin-left: auto;
  margin-right: auto;
  margin-top: -120px !important;
  position: relative;
  z-index: 4;
}

.hero-title {
  position: relative;
  font-family: "LuckiestGuy", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 36px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1rem;
  /* Градієнт для текста */
  background: linear-gradient(
    90deg,
    #bc7202 0%,
    #dcaa00 25%,
    #d5b300 54%,
    #fff383 74%,
    #bc7101 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.5px #000000;

  animation: gradient-shift 3s ease infinite;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #fff;
  margin-bottom: 2rem;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0px 4px 10px 0px #00000099;

  text-shadow: 0px 4px 10px 0px #00000099;

  text-shadow: 0px 4px 10px 0px #00000099;
}

.hero-image {
  margin: 2rem 0;
  max-width: 284px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 3;
}

.hero-image img {
  width: 100%;
  filter: drop-shadow(0 10px 40px rgba(255, 56, 56, 0.4));
  animation: float 3s ease-in-out infinite;
}

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

.decor-1 {
  position: absolute;
  width: 100%;
  height: 100px;
  max-width: 100px;
  object-fit: contain;
  top: 20%;
  left: -20%;
  z-index: 1;

  animation: floating 6s ease-in-out infinite;
}

.decor-2 {
  position: absolute;
  width: 100%;
  height: 100px;
  max-width: 100px;
  object-fit: contain;
  top: 34%;
  left: 68%;
  z-index: 1;

  animation: floating 8s ease-in-out infinite;
}

.decor-3 {
  position: absolute;
  width: 100%;
  height: 90px;
  max-width: 90px;
  object-fit: contain;
  top: 58%;
  left: -5%;
  z-index: 1;

  animation: floating 5s ease-in-out infinite;
}

.decor-4 {
  position: absolute;
  width: 100%;
  height: 110px;
  max-width: 110px;
  object-fit: contain;
  top: 76%;
  left: -8%;
  z-index: 1;

  animation: floating 7s ease-in-out infinite;
}

.decor-5 {
  position: absolute;
  width: 100%;
  height: 70px;
  max-width: 70px;
  object-fit: contain;
  top: 100%;
  left: 85%;
  z-index: 1;

  animation: floating 5s ease-in-out infinite;
}

.decor-6 {
  position: absolute;
  width: 100%;
  height: 80px;
  max-width: 80px;
  object-fit: contain;
  top: 102%;
  left: 0%;
  z-index: 1;

  animation: floating 7s ease-in-out infinite;
}

.decor-7 {
  position: absolute;
  width: 100%;
  height: 105px;
  max-width: 105px;
  object-fit: contain;
  top: 70%;
  right: -4%;
  z-index: 1;
  animation: floating 6s ease-in-out infinite;
}

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


@keyframes spin-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 95px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: "Poppins ExtraBold", sans-serif;
}

.btn-primary {
  color: white;
  box-shadow: 0px 4.77px 23.86px 0px #fee44fcc;

  border: 6px solid #fee44f;

  background: linear-gradient(180deg, #fe4f4f 0%, #c50000 100%);
  position: relative;
  overflow: hidden;
}

/* Image-based main download button */
.btn-image {
  position: relative;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  display: inline-block;
  width: 100%;
  animation: pulse 2s ease-in-out infinite;
}

@media (orientation: portrait) {
  .hero-btn {
    width: 100% !important;
  }
}

@media (orientation: landscape) {
  .hero {
    padding: 50px 0 250px;
    pointer-events: auto !important;
  }
  
  .hero-content {
    pointer-events: auto !important;
  }
  
  .hero-btn {
    z-index: 1000 !important;
    position: relative !important;
    pointer-events: auto !important;
  }
  
  .hero-image {
    z-index: 999 !important;
  }
  
  /* Hide or reposition decorative elements in landscape to prevent overlap */
  .decor-1,
  .decor-2,
  .decor-3,
  .decor-4,
  .decor-5,
  .decor-6,
  .decor-7 {
    display: none;
  }
}

/* Mobile phones in landscape - hide decorative elements */
@media (max-width: 896px) and (orientation: landscape) {
  .hero {
    padding: 30px 0 200px;
    pointer-events: auto !important;
  }
  
  .hero-content {
    pointer-events: auto !important;
  }
  
  .hero-image {
    max-width: 160px;
    z-index: 999 !important;
  }
  
  .hero-btn {
    z-index: 1000 !important;
    position: relative !important;
    pointer-events: auto !important;
  }
  
  .screenshots {
    padding-top: 450px !important;
    pointer-events: none !important;
  }
  
  .carousel-wrapper {
    pointer-events: auto !important;
  }
  
  .carousel {
    pointer-events: auto !important;
  }
  
  .decor-1,
  .decor-2,
  .decor-3,
  .decor-4,
  .decor-5,
  .decor-6,
  .decor-7 {
    display: none !important;
  }
}

/* For larger landscape screens, we can show some decorations but repositioned */
@media (min-width: 1024px) and (orientation: landscape) {
  .decor-1,
  .decor-2,
  .decor-7 {
    display: block;
  }
}

.btn-image img {
  display: block;
  width: 100%;
  height: auto;
}

.btn-image__text {
  position: absolute;
  left: -10%;
  right: -10%;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: clamp(18px, 8vw, 54px);
  font-family: "LuckiestGuy", sans-serif;
  text-transform: uppercase;
  pointer-events: none;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  transform: translateY(-8%);
  padding: 0 20px;
}
  outline: none;
  
  /* Белый цвет текста */
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 56, 56, 0.6);
}

/* Shine Effect for Main Button */
.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 100%;
  }
}

/* Sections */
section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-color);
}

/* About Section */
.about {
  background: rgba(255, 255, 255, 0.02);
}

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

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Screenshots Section - Modern Carousel */
.screenshots {
  background: none;
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 80px 0 120px;
}

/* Carousel Wrapper */
.carousel-wrapper {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

/* Carousel Container */
.carousel {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Carousel Viewport */
.carousel-viewport {
  position: relative;
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  border-radius: 40px;
  padding: 20px 0;
}

/* Carousel Track */
.carousel-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Carousel Slide */
.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.carousel-slide-inner {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  transform: scale(0.85);
  opacity: 0.4;
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: blur(2px);
}

.carousel-slide.active .carousel-slide-inner {
  transform: scale(1);
  opacity: 1;
  filter: blur(0);
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  transition: box-shadow 0.4s ease;
}

.carousel-slide.active img {
  box-shadow: none;
}

/* Navigation Buttons */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  color: #ffd700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-nav:hover {
  background: rgba(255, 215, 0, 0.95);
  border-color: #ffd700;
  color: #000;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

.carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-nav svg {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
  stroke-width: 2.5;
}

.carousel-nav:hover svg {
  transform: translateX(0);
}

.carousel-nav-prev {
  left: 15px;
}

.carousel-nav-prev:hover svg {
  transform: translateX(-3px);
}

.carousel-nav-next {
  right: 15px;
}

.carousel-nav-next:hover svg {
  transform: translateX(3px);
}

/* Indicators (Dots) */
.carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
  padding: 0;
}

.carousel-indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.carousel-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.carousel-indicator:hover::before {
  width: 200%;
  height: 200%;
}

.carousel-indicator:hover {
  background: rgba(255, 215, 0, 0.4);
  border-color: rgba(255, 215, 0, 0.7);
  transform: scale(1.3);
}

.carousel-indicator.active {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-color: #ffd700;
  width: 50px;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.7),
              0 0 15px rgba(255, 215, 0, 0.4);
  animation: indicator-pulse 2s ease-in-out infinite;
}

@keyframes indicator-pulse {
  0%, 100% {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.7),
                0 0 15px rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.9),
                0 0 20px rgba(255, 215, 0, 0.6);
  }
}

/* Tablet Landscape (1024px - 1279px) */
@media (max-width: 1279px) {
  .carousel-viewport {
    max-width: 500px;
  }
  
  .carousel-slide-inner {
    max-width: 400px;
  }
  
  .carousel-nav {
    width: 52px;
    height: 52px;
  }
  
  .carousel-nav svg {
    width: 22px;
    height: 22px;
  }
}

/* Tablet Portrait & Small Laptops (768px - 1023px) */
@media (max-width: 1023px) {
  .screenshots {
    padding: 70px 0 100px;
  }
  
  .carousel-viewport {
    max-width: 450px;
  }
  
  .carousel-slide-inner {
    max-width: 370px;
  }
  
  .carousel-nav {
    width: 50px;
    height: 50px;
  }
  
  .carousel-nav svg {
    width: 22px;
    height: 22px;
  }
  
  .carousel-indicator {
    width: 12px;
    height: 12px;
  }
  
  .carousel-indicator.active {
    width: 45px;
  }
}

/* Mobile Landscape & Tablet Portrait (641px - 767px) */
@media (max-width: 767px) {
  .screenshots {
    padding: 60px 0 90px;
  }
  
  .carousel-wrapper {
    padding: 0 15px;
  }
  
  .carousel {
    gap: 15px;
  }
  
  .carousel-viewport {
    max-width: 400px;
    border-radius: 35px;
    padding: 15px 0;
  }
  
  .carousel-slide {
    padding: 0 10px;
  }
  
  .carousel-slide-inner {
    max-width: 340px;
    transform: scale(0.88);
  }
  
  .carousel-slide.active .carousel-slide-inner {
    transform: scale(1);
  }
  
  .carousel-slide img {
    border-radius: 0;
    box-shadow: none;
  }
  
  .carousel-nav {
    width: 48px;
    height: 48px;
  }
  
  .carousel-nav svg {
    width: 20px;
    height: 20px;
  }
  
  .carousel-indicators {
    gap: 12px;
    margin-top: 35px;
  }
  
  .carousel-indicator {
    width: 11px;
    height: 11px;
  }
  
  .carousel-indicator.active {
    width: 40px;
  }
}

/* Mobile Portrait (481px - 640px) */
@media (max-width: 640px) {
  .screenshots {
    padding: 50px 0 80px;
  }
  
  .carousel-wrapper {
    padding: 0 10px;
  }
  
  .carousel {
    gap: 10px;
  }
  
  .carousel-viewport {
    max-width: 350px;
    border-radius: 30px;
    padding: 10px 0;
  }
  
  .carousel-slide-inner {
    max-width: 300px;
    transform: scale(0.9);
  }
  
  .carousel-slide img {
    border-radius: 0;
  }
  
  .carousel-nav {
    width: 45px;
    height: 45px;
  }
  
  .carousel-nav svg {
    width: 18px;
    height: 18px;
  }
  
  .carousel-indicators {
    margin-top: 30px;
  }
  
  .carousel-indicator {
    width: 10px;
    height: 10px;
  }
  
  .carousel-indicator.active {
    width: 36px;
  }
}

/* Small Mobile (376px - 480px) */
@media (max-width: 480px) {
  .screenshots {
    padding: 45px 0 70px;
  }
  
  .carousel-viewport {
    max-width: 320px;
    border-radius: 28px;
  }
  
  .carousel-slide-inner {
    max-width: 280px;
  }
  
  .carousel-slide img {
    border-radius: 0;
    box-shadow: none;
  }
  
  .carousel-nav {
    width: 42px;
    height: 42px;
  }
  
  .carousel-nav svg {
    width: 17px;
    height: 17px;
  }
  
  .carousel-indicators {
    gap: 10px;
    margin-top: 28px;
  }
  
  .carousel-indicator {
    width: 9px;
    height: 9px;
    border-width: 1.5px;
  }
  
  .carousel-indicator.active {
    width: 32px;
    border-radius: 6px;
  }
}

/* Extra Small Mobile (320px - 375px) */
@media (max-width: 375px) {
  .screenshots {
    padding: 40px 0 65px;
  }
  
  .carousel-wrapper {
    padding: 0 8px;
  }
  
  .carousel {
    gap: 8px;
  }
  
  .carousel-viewport {
    max-width: 290px;
    border-radius: 25px;
  }
  
  .carousel-slide-inner {
    max-width: 250px;
  }
  
  .carousel-slide img {
    border-radius: 0;
  }
  
  .carousel-nav {
    width: 40px;
    height: 40px;
  }
  
  .carousel-nav svg {
    width: 16px;
    height: 16px;
  }
  
  .carousel-indicators {
    gap: 8px;
    margin-top: 25px;
  }
  
  .carousel-indicator {
    width: 8px;
    height: 8px;
  }
  
  .carousel-indicator.active {
    width: 28px;
  }
}

/* Tiny Screens (< 320px) */
@media (max-width: 319px) {
  .screenshots {
    padding: 35px 0 60px;
  }
  
  .carousel-viewport {
    max-width: 260px;
    border-radius: 22px;
  }
  
  .carousel-slide-inner {
    max-width: 230px;
  }
  
  .carousel-slide img {
    border-radius: 0;
  }
  
  .carousel-nav {
    width: 38px;
    height: 38px;
  }
  
  .carousel-nav svg {
    width: 15px;
    height: 15px;
  }
}

/* Landscape Orientation - Show All 3 Slides */
@media (orientation: landscape) {
  .screenshots {
    padding: 450px 0 70px;
    pointer-events: none !important;
  }
  
  .carousel-wrapper {
    max-width: 100%;
    padding: 0 20px;
    pointer-events: none !important;
  }
  
  .carousel {
    gap: 0;
    pointer-events: none !important;
  }
  
  .carousel-viewport {
    max-width: 100%;
    border-radius: 0;
    padding: 20px 0;
    overflow: visible;
  }
  
  .carousel-track {
    justify-content: center;
    gap: 15px;
    transform: none !important;
    transition: none !important;
  }
  
  .carousel-slide {
    flex: 0 0 auto;
    width: auto;
    max-width: 240px;
    padding: 0;
    cursor: default !important;
    pointer-events: none !important;
  }
  
  .carousel-slide-inner {
    transform: scale(1) !important;
    opacity: 1 !important;
    filter: none !important;
    max-width: 100%;
    transition: none !important;
  }
  
  .carousel-slide.active .carousel-slide-inner {
    transform: scale(1) !important;
    opacity: 1 !important;
    filter: none !important;
  }
  
  /* Remove all hover effects in landscape */
  .carousel-slide:hover .carousel-slide-inner {
    transform: scale(1) !important;
    opacity: 1 !important;
    filter: none !important;
  }
  
  .carousel-slide img {
    border-radius: 0;
    transition: none !important;
  }
  
  .carousel-slide:hover img {
    box-shadow: none;
  }
  
  /* Hide navigation buttons in landscape */
  .carousel-nav {
    display: none !important;
  }
  
  /* Hide indicators in landscape */
  .carousel-indicators {
    display: none !important;
  }
}

/* Landscape on tablets and larger */
@media (min-width: 768px) and (orientation: landscape) {
  .carousel-wrapper {
    padding: 0 30px;
    pointer-events: none !important;
  }
  
  .carousel-track {
    gap: 18px;
  }
  
  .carousel-slide {
    max-width: 260px;
    pointer-events: none !important;
  }
  
  .carousel-slide-inner {
    transform: scale(1) !important;
    opacity: 1 !important;
    filter: none !important;
    transition: none !important;
  }
  
  .carousel-slide.active .carousel-slide-inner {
    transform: scale(1) !important;
    opacity: 1 !important;
    filter: none !important;
  }
  
  .carousel-slide:hover .carousel-slide-inner {
    transform: scale(1) !important;
    opacity: 1 !important;
    filter: none !important;
  }
  
  .carousel-slide img {
    border-radius: 0;
    transition: none !important;
  }
}

/* Landscape on desktop */
@media (min-width: 1024px) and (orientation: landscape) {
  .screenshots {
    padding: 60px 0 90px;
  }
  
  .carousel-wrapper {
    padding: 0 40px;
    pointer-events: none !important;
  }
  
  .carousel-track {
    gap: 20px;
  }
  
  .carousel-slide {
    max-width: 280px;
    pointer-events: none !important;
  }
  
  .carousel-slide-inner {
    transform: scale(1) !important;
    opacity: 1 !important;
    filter: none !important;
    transition: none !important;
  }
  
  .carousel-slide.active .carousel-slide-inner {
    transform: scale(1) !important;
    opacity: 1 !important;
    filter: none !important;
  }
  
  .carousel-slide:hover .carousel-slide-inner {
    transform: scale(1) !important;
    opacity: 1 !important;
    filter: none !important;
  }
  
  .carousel-slide img {
    border-radius: 0;
    transition: none !important;
  }
}

/* Large Desktop Landscape */
@media (min-width: 1440px) and (orientation: landscape) {
  .screenshots {
    padding: 70px 0 100px;
  }
  
  .carousel-wrapper {
    padding: 0 50px;
    pointer-events: none !important;
  }
  
  .carousel-track {
    gap: 22px;
  }
  
  .carousel-slide {
    max-width: 300px;
    pointer-events: none !important;
  }
  
  .carousel-slide-inner {
    transform: scale(1) !important;
    opacity: 1 !important;
    filter: none !important;
    transition: none !important;
  }
  
  .carousel-slide.active .carousel-slide-inner {
    transform: scale(1) !important;
    opacity: 1 !important;
    filter: none !important;
  }
  
  .carousel-slide:hover .carousel-slide-inner {
    transform: scale(1) !important;
    opacity: 1 !important;
    filter: none !important;
  }
}

/* Ultra Wide Landscape */
@media (min-width: 1920px) and (orientation: landscape) {
  .screenshots {
    padding: 80px 0 120px;
  }
  
  .carousel-wrapper {
    padding: 0 60px;
    pointer-events: none !important;
  }
  
  .carousel-track {
    gap: 25px;
  }
  
  .carousel-slide {
    max-width: 330px;
    pointer-events: none !important;
  }
  
  .carousel-slide-inner {
    transform: scale(1) !important;
    opacity: 1 !important;
    filter: none !important;
    transition: none !important;
  }
  
  .carousel-slide.active .carousel-slide-inner {
    transform: scale(1) !important;
    opacity: 1 !important;
    filter: none !important;
  }
  
  .carousel-slide:hover .carousel-slide-inner {
    transform: scale(1) !important;
    opacity: 1 !important;
    filter: none !important;
  }
  
  .carousel-indicators {
    display: none !important;
  }
}

/* Small landscape screens */
@media (max-width: 767px) and (orientation: landscape) and (max-height: 500px) {
  .hero {
    padding: 20px 0 200px;
    pointer-events: auto !important;
  }
  
  .hero-content {
    pointer-events: auto !important;
  }
  
  .hero-btn {
    z-index: 1000 !important;
    position: relative !important;
    pointer-events: auto !important;
  }
  
  .hero-image {
    z-index: 999 !important;
  }
  
  .screenshots {
    padding: 500px 0 40px;
    pointer-events: none !important;
  }
  
  .carousel-wrapper {
    padding: 0 15px;
    pointer-events: none !important;
  }
  
  .carousel {
    pointer-events: none !important;
  }
  
  .carousel-track {
    gap: 12px;
  }
  
  .carousel-slide {
    max-width: 220px;
    pointer-events: none !important;
  }
  
  .carousel-slide-inner {
    transform: scale(1) !important;
    opacity: 1 !important;
    filter: none !important;
    transition: none !important;
  }
  
  .carousel-slide.active .carousel-slide-inner {
    transform: scale(1) !important;
    opacity: 1 !important;
    filter: none !important;
  }
  
  .carousel-slide:hover .carousel-slide-inner {
    transform: scale(1) !important;
    opacity: 1 !important;
    filter: none !important;
  }
  
  .carousel-slide img {
    border-radius: 0;
    transition: none !important;
  }
  
  .carousel-indicators {
    display: none !important;
  }
  
  /* Ensure decorative elements don't overlap */
  .decor-1,
  .decor-2,
  .decor-3,
  .decor-4,
  .decor-5,
  .decor-6,
  .decor-7 {
    display: none !important;
  }
}

/* High Resolution Displays */
@media (min-width: 1440px) {
  .carousel-viewport {
    max-width: 700px;
  }
  
  .carousel-slide-inner {
    max-width: 500px;
  }
  
  .carousel-nav {
    width: 75px;
    height: 75px;
  }
  
  .carousel-nav svg {
    width: 34px;
    height: 34px;
  }
  
  .carousel-indicator {
    width: 15px;
    height: 15px;
  }
  
  .carousel-indicator.active {
    width: 55px;
    border-radius: 9px;
  }
}

/* Ultra Wide Screens */
@media (min-width: 1920px) {
  .carousel-viewport {
    max-width: 800px;
  }
  
  .carousel-slide-inner {
    max-width: 550px;
  }
  
  .carousel-indicators {
    margin-top: 50px;
  }
}

/* Reviews Section */
.reviews {
  padding-bottom: 140px;
  background: none;
  position: relative;
  z-index: 2;
}

.double-bg {
  background: url("../img/zeus_bg_2.png") center / cover no-repeat;
  position: relative;
  overflow: visible;
}

.double-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0.3) 70%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.review-card {
  background: #050505;
  border: 2px solid #8a8a8a;
  border-radius: 26px;
  padding: 1.8rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.review-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.review-stars {
  font-size: 1rem;
}

.review-text {
  line-height: 1.7;
  color: #fff;
}

/* Footer */
.footer {
  position: absolute;
  background: transparent;
  padding: 1.5rem 0 1.5rem;
  margin-top: -120px;
  width: 100%;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 60px;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-align: center;
}

/* Cookie Popup */
.cookie-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.cookie-popup.active {
  display: flex;
}

.cookie-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(2px);
}

.cookie-content {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(48, 43, 99, 0.98),
    rgba(36, 36, 62, 0.98)
  );
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 30px;
  max-width: 500px;
  margin: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.cookie-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.cookie-content p {
  margin-bottom: 2rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cookie-buttons .btn {
  flex: 1;
  padding: 12px 24px;
  font-size: 1rem;
}

.btn-accept {
  background: var(--primary-color);
  color: white;
}

.btn-decline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-color);
}

.btn-decline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cookie-link {
  display: block;
  text-align: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.cookie-link:hover {
  color: var(--primary-color);
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    background: rgba(15, 12, 41, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    transition: left 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.active {
    left: 0;
  }

  .burger {
    display: flex;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    order: -1;
  }
}

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

  .hero-image {
    max-width: 240px;
  }

  section {
    padding: 60px 0;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    padding: 2rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

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

  .hero-image {
    max-width: 200px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.popup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
      max-width: 400px;
  width: 90%;
}

.popup-content {
  background: #000000b2;
  border-radius: 37px;
  padding: 24px 22px;
  max-width: 400px;
  width: 90%;
  position: relative;
  border: 1.36px solid #ffdc03;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: popupSlide 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 10;
}

@keyframes popupSlide {
  from {
    transform: scale(0.7) translateY(-50px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}


.popup-header {
  position: absolute;
  text-align: center;
  margin-bottom: 30px;
  top: -90%;
  z-index: 0 !important;
}

.popup-img {
  transform: scale(1.5);
  animation: float 3s ease-in-out infinite;
}

.chicken-container {
  width: 180px;
  height: 180px;
  margin: 0 auto 25px;
  position: relative;
  animation: float 3s ease-in-out infinite;
}

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

.popup-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  animation: bounce 1s ease infinite;
}

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

.popup-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.4;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.popup-text {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 30px;
}

.popup-btn {
  width: 100%;
  display: block;
  margin-bottom: -80px !important;
  transform: scale(1.15);
}

.popup-btn.btn-image {
  animation: none;
}

.popup-btn.btn-image .btn-image__text {
  font-size: clamp(9px, 4vw, 27px);
  font-weight: 400;
  font-family: "LuckiestGuy", sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  transform: translateY(-8%);
  outline: none;
}

.popup-btn.success {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
}

.popup-btn.success:hover {
  background: linear-gradient(135deg, #5cb85f 0%, #77cc7a 100%);
  box-shadow: 0 15px 35px rgba(76, 175, 80, 0.6);
}

.popup-decor-1 {
  position: absolute;
  width: 100%;
  max-width: 320px;
  height: 100%;
  left: -40%;
  top: 20%;
  object-fit: contain;
  animation: floating 6s ease-in-out infinite;
}

.popup-decor-2 {
  position: absolute;
  width: 100%;
  max-width: 320px;
  height: 100%;
  left: 55%;
  top: 64%;
  object-fit: contain;
  animation: floating 9s ease-in-out infinite;
}

@media (max-width: 768px) {
  .popup-decor-1 {
    left: -50%;
  }

  .popup-decor-2 {
    left: 50%;
  }
}

.loader-container {
  width: 100%;
  margin: 30px 0;
}

.loader-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, #ff4444 0%, #ff6b6b 50%, #ff8e53 100%);
  background-size: 200% 100%;
  border-radius: 10px;
  width: 0%;
  animation: loadProgress 5s ease-in-out forwards, shimmer 1s infinite;
  box-shadow: 0 0 10px rgba(255, 68, 68, 0.8);
}

@keyframes loadProgress {
  to {
    width: 100%;
  }
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.loader-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  position: relative;
  animation: spin 2s linear infinite;
}

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

.loader-icon::before,
.loader-icon::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.loader-icon::after {
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 8px solid #fffa6e3d;
  border-bottom-color: #fffa6e;
}

.warning-icon {
  font-size: 70px;
  animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.success-icon {
  font-size: 80px;
  color: #4caf50;
  animation: checkmark 0.6s ease;
}

@keyframes checkmark {
  0% {
    transform: scale(0) rotate(-45deg);
  }
  50% {
    transform: scale(1.2) rotate(5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

@media (max-width: 480px) {
  .chicken-container {
    width: 150px;
    height: 150px;
  }

  .chicken-body {
    width: 110px;
    height: 110px;
    top: 35px;
  }

  .chicken-head {
    width: 80px;
    height: 75px;
    top: 10px;
  }

  .comb {
    width: 40px;
    height: 28px;
  }

  .wing {
    width: 40px;
    height: 50px;
    top: 50px;
  }

  .popup-title {
    font-size: 18px;
  }

  .popup-text {
    font-size: 12px;
  }

  .popup-btn {
    padding: 15px;
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .chicken-container {
    width: 130px;
    height: 130px;
  }

  .hero-image {
    max-width: 180px;
  }

  .popup-title {
    font-size: 16px;
  }
}

/* Lightning Effect */
.lightning-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.lightning-svg {
  animation: lightning-strike 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9)) 
          drop-shadow(0 0 16px rgba(135, 206, 250, 0.8))
          drop-shadow(0 0 24px rgba(100, 149, 237, 0.6))
          drop-shadow(0 0 32px rgba(138, 43, 226, 0.4));
}

.lightning {
  position: absolute;
  width: 4px;
  background: linear-gradient(to bottom, 
    rgba(255, 255, 255, 1) 0%,
    rgba(200, 220, 255, 0.95) 15%,
    rgba(135, 206, 250, 0.9) 35%,
    rgba(100, 149, 237, 0.85) 55%,
    rgba(138, 43, 226, 0.7) 75%,
    rgba(75, 0, 130, 0.5) 90%,
    transparent 100%
  );
  box-shadow: 
    0 0 15px rgba(255, 255, 255, 1),
    0 0 30px rgba(200, 220, 255, 0.9),
    0 0 45px rgba(135, 206, 250, 0.7),
    0 0 60px rgba(100, 149, 237, 0.5),
    0 0 75px rgba(138, 43, 226, 0.3);
  opacity: 0;
  animation: lightning-strike 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightning::before {
  content: '';
  position: absolute;
  top: 0;
  left: -2px;
  width: 8px;
  height: 100%;
  background: linear-gradient(to bottom,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(200, 220, 255, 0.7) 50%,
    transparent 100%
  );
  box-shadow: 
    0 0 20px rgba(255, 255, 255, 1),
    0 0 40px rgba(200, 220, 255, 0.8);
  border-radius: 2px;
}

.lightning::after {
  content: '';
  position: absolute;
  top: 0;
  left: 2px;
  width: 8px;
  height: 100%;
  background: linear-gradient(to bottom,
    rgba(135, 206, 250, 0.8) 0%,
    rgba(100, 149, 237, 0.6) 50%,
    transparent 100%
  );
  box-shadow: 
    0 0 15px rgba(135, 206, 250, 0.9),
    0 0 30px rgba(100, 149, 237, 0.6);
  border-radius: 2px;
}

@keyframes lightning-strike {
  0% {
    opacity: 0;
    filter: brightness(0.5);
  }
  5% {
    opacity: 1;
    filter: brightness(2);
  }
  15% {
    opacity: 1;
    filter: brightness(1.5);
  }
  30% {
    opacity: 0.95;
    filter: brightness(1.2);
  }
  50% {
    opacity: 0.85;
    filter: brightness(1);
  }
  70% {
    opacity: 0.6;
    filter: brightness(0.8);
  }
  100% {
    opacity: 0;
    filter: brightness(0.3);
  }
}

.lightning-branch {
  position: absolute;
  width: 2.5px;
  background: linear-gradient(to bottom,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(200, 220, 255, 0.8) 20%,
    rgba(135, 206, 250, 0.7) 50%,
    rgba(100, 149, 237, 0.5) 80%,
    transparent 100%
  );
  box-shadow: 
    0 0 12px rgba(255, 255, 255, 0.8),
    0 0 24px rgba(135, 206, 250, 0.6),
    0 0 36px rgba(100, 149, 237, 0.4);
  opacity: 0;
  animation: lightning-branch 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

@keyframes lightning-branch {
  0% {
    opacity: 0;
    filter: brightness(0.5);
  }
  15% {
    opacity: 1;
    filter: brightness(1.8);
  }
  30% {
    opacity: 1;
    filter: brightness(1.5);
  }
  50% {
    opacity: 0.9;
    filter: brightness(1.2);
  }
  100% {
    opacity: 0;
    filter: brightness(0.3);
  }
}

/* Lightning flash effect for background */
.lightning-flash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(200, 220, 255, 0.15) 30%,
    rgba(135, 206, 250, 0.08) 60%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: flash 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes flash {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  20% {
    opacity: 0.4;
    transform: scale(1);
  }
  40% {
    opacity: 0.25;
    transform: scale(1.05);
  }
  60% {
    opacity: 0.15;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}
