/* Mobile-First Responsive Design */

/* Base Styling */
.hero-section {
  background: linear-gradient(135deg, #0566fd 0%, #31ccff 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  z-index: 1;
}

/* Video Background - Mobile Optimized */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
  outline: none;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 20;
}

/* Ticker - Full Width */
.ticker-container {
  background: linear-gradient(45deg, #ef4444, #06b6d4, #3b82f6, #ef4444);
  background-size: 400% 400%;
  animation: tickerPulse 8s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  z-index: 30;
}

.ticker-container::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: tickerShine 4s ease-in-out infinite;
}

.ticker-enhanced {
  animation: tickerScroll 20s linear infinite, tickerGlow 3s ease-in-out infinite;
  display: inline-block;
  white-space: nowrap;
}

/* Characters - Mobile Responsive - Fixed Animation */
.character-left,
.character-right {
  position: absolute;
  z-index: 40;
  pointer-events: none;
  transform: translateY(-50%);
  /* Thêm will-change để optimize performance */
  will-change: transform;
  /* Thêm transform-origin để animation mượt hơn */
  transform-origin: center bottom;
}

.character-left {
  left: 5px;
  top: 55%; /* Đẩy cao hơn từ 65% */
  /* Delay animation để tránh giựt */
  animation-delay: 0.2s;
}

.character-right {
  right: 5px;
  top: 55%; /* Đẩy cao hơn từ 65% */
  /* Delay animation để tránh giựt */
  animation-delay: 0.5s;
}

.character-img {
  max-width: 140px; /* Tăng từ 120px */
  height: auto;
  animation: characterFloatSmooth 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  /* Thêm transition để mượt hơn */
  transition: all 0.3s ease;
}

/* Mobile Character Optimization - Updated */
@media (max-width: 479px) {
  .character-left {
    left: 0px;
    top: 70%; /* Cao hơn từ 75% */
  }

  .character-right {
    right: 0px;
    top: 70%; /* Cao hơn từ 75% */
  }

  .character-img {
    max-width: 120px; /* Tăng size */
  }

  /* Hero content cao hơn trên mobile */
  .hero-content {
    transform: translateY(-150px); /* Tăng từ -200px lên -250px */
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 25px 20px;
    margin: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}

@media (min-width: 480px) and (max-width: 639px) {
  .character-left {
    left: 0px;
    top: 70%; /* Cao hơn từ 75% */
  }

  .character-right {
    right: 0px;
    top: 70%; /* Cao hơn từ 75% */
  }

  .character-img {
    max-width: 130px;
  }

  .hero-content {
    transform: translateY(-150px); /* Tăng từ -140px lên -180px */
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 20px 15px;
    margin: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  }
}

/* Tablet Optimization - New */
@media (min-width: 640px) and (max-width: 1023px) {
  .character-left {
    left: 0px;
    top: 60%; /* Cao hơn content */
    z-index: 20; /* Thấp hơn content */
  }

  .character-right {
    right: 0px;
    top: 60%; /* Cao hơn content */
    z-index: 20; /* Thấp hơn content */
  }

  .character-img {
    max-width: 300px;
  }

  .hero-content {
    transform: translateY(-120px);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 30px 25px;
    margin: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 50; /* Cao hơn characters */
    position: relative;
  }

  /* Tablet liquid glass effect */
  .hero-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
    border-radius: inherit;
    pointer-events: none;
    z-index: -1;
  }

  .hero-content::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(49, 204, 255, 0.4), rgba(5, 102, 253, 0.3), rgba(255, 215, 0, 0.3));
    border-radius: inherit;
    z-index: -2;
    animation: liquidBorderTablet 4s ease-in-out infinite;
  }
}

@keyframes liquidBorderTablet {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.01);
  }
}

/* Hero Content - Mobile Optimized */
.hero-content {
  transform: translateY(-120px); /* Tăng từ -40px lên -120px */
  z-index: 60;
  position: relative;
}

@media (min-width: 1024px) {
  .character-left {
    left: 100px;
    top: 70%;
    z-index: 40;
  }

  .character-right {
    right: 100px;
    top: 70%;
    z-index: 40;
  }

  .character-img {
    max-width: 220px;
  }

  .hero-content {
    transform: translateY(-80px);
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    z-index: 60;
  }

  .hero-content::before,
  .hero-content::after {
    display: none;
  }
}

@media (min-width: 1200px) {
  .character-left {
    left: 200px;
    top: 65%;
  }

  .character-right {
    right: 200px;
    top: 65%;
  }

  .character-img {
    max-width: 300px;
  }
}

/* Mobile Liquid Glass Hero Content */
@media (max-width: 639px) {
  .hero-content {
    position: relative;
    overflow: hidden;
  }

  .hero-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: inherit;
    pointer-events: none;
    z-index: -1;
  }

  .hero-content::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(49, 204, 255, 0.3), rgba(5, 102, 253, 0.2), rgba(255, 215, 0, 0.2));
    border-radius: inherit;
    z-index: -2;
    animation: liquidBorder 3s ease-in-out infinite;
  }
}

@keyframes liquidBorder {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.02);
  }
}

/* Mobile Hero Background */
@media (max-width: 767px) {
  .hero-content {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px 15px;
    margin: 0 15px;
  }
}

/* Floating Promo - Mobile Optimized */
.floating-promo {
  animation: floatBounce 3s ease-in-out infinite, floatGlow 2s ease-in-out infinite alternate;
}

.floating-promo:hover {
  animation: floatBounce 3s ease-in-out infinite, floatGlow 2s ease-in-out infinite alternate, floatShake 0.5s
    ease-in-out infinite;
}

/* Keyframes */
@keyframes tickerScroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes tickerGlow {
  0%,
  100% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 215, 0, 0.6);
  }
}

@keyframes tickerPulse {
  0%,
  100% {
    background-size: 400% 400%;
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes tickerShine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

@keyframes characterFloatSmooth {
  0% {
    transform: translateY(-50%) translateX(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-55%) translateX(-3px) rotate(-0.5deg) scale(1.01);
  }
  50% {
    transform: translateY(-45%) translateX(2px) rotate(0.5deg) scale(0.99);
  }
  75% {
    transform: translateY(-52%) translateX(-1px) rotate(-0.3deg) scale(1.005);
  }
  100% {
    transform: translateY(-50%) translateX(0px) rotate(0deg) scale(1);
  }
}

@keyframes characterFloat {
  0%,
  100% {
    transform: translateY(-50%) translateX(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-60%) translateX(-5px) rotate(-1deg) scale(1.02);
  }
  50% {
    transform: translateY(-40%) translateX(3px) rotate(1deg) scale(0.98);
  }
  75% {
    transform: translateY(-55%) translateX(-2px) rotate(-0.5deg) scale(1.01);
  }
}

@keyframes floatBounce {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-5px) rotate(1deg) scale(1.02);
  }
  50% {
    transform: translateY(-10px) rotate(0deg) scale(1.05);
  }
  75% {
    transform: translateY(-5px) rotate(-1deg) scale(1.02);
  }
}

@keyframes floatGlow {
  0%,
  100% {
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4), 0 0 20px rgba(255, 149, 0, 0.3);
  }
  50% {
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.8), 0 0 40px rgba(255, 149, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.4);
  }
}

@keyframes floatShake {
  0%,
  100% {
    transform: translateX(0px);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-2px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(2px);
  }
}

/* Liquid Glass Effects */
.liquid-glass-effect {
  position: relative;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.liquid-glass-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.liquid-glass-effect:hover::before {
  left: 100%;
}

.liquid-glass-btn {
  position: relative;
  backdrop-filter: blur(15px);
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.liquid-glass-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  border-radius: inherit;
  pointer-events: none;
  transition: all 0.3s ease;
}

.liquid-glass-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0);
  transition: all 0.6s ease;
  pointer-events: none;
  border-radius: 50%;
}

.liquid-glass-btn:hover::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
}

.liquid-glass-btn:hover::after {
  opacity: 1;
  transform: scale(1);
}

.liquid-glass-btn:active {
  transform: scale(0.98) translateY(-1px);
}

/* Enhanced button animations */
.reward-button {
  animation: rewardPulse 2s ease-in-out infinite, rewardGlow 1.5s ease-in-out infinite alternate, liquidFloat 4s
    ease-in-out infinite;
}

.play-now-button {
  animation: liquidFloat 4s ease-in-out infinite 0.5s, playGlow 2s ease-in-out infinite alternate;
}

@keyframes liquidFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  25% {
    transform: translateY(-3px) scale(1.02);
  }
  50% {
    transform: translateY(-5px) scale(1.01);
  }
  75% {
    transform: translateY(-2px) scale(1.01);
  }
}

@keyframes playGlow {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(49, 204, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(49, 204, 255, 0.6), 0 0 60px rgba(5, 102, 253, 0.4), inset
      0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

/* Responsive Typography */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem !important;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1rem !important;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .hero-content h1 {
    font-size: 2.5rem !important;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1.2rem !important;
  }
}

/* Prevent horizontal scroll */
body {
  overflow-x: hidden;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Touch optimization for mobile */
@media (hover: none) and (pointer: coarse) {
  .game-card-mobile:hover {
    transform: none;
  }

  .category-card:hover {
    transform: none;
  }

  .game-card-mobile:active {
    transform: translateY(-4px) scale(1.01);
  }

  .category-card:active {
    transform: translateY(-2px) scale(1.02);
  }
}

/* Game Hot Frame Styles */
.game-hot-frame {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 30px auto;
  position: relative;
  z-index: 2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 25px;
  padding: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

/* Overlay để làm nổi bật nội dung */
.game-hot-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 25px;
  z-index: 1;
}

.frame-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.frame-decoration {
  width: 150px;
  height: 35px;
  background: linear-gradient(45deg, #4a90e2, #7bb3f0);
  border-radius: 20px;
  position: relative;
  border: 2px solid #2e5984;
}

.frame-decoration::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 60%;
  background: repeating-linear-gradient(45deg, #5ba0f2, #5ba0f2 8px, #4a90e2 8px, #4a90e2 16px);
  border-radius: 15px;
}

.frame-decoration.left {
  margin-right: 15px;
}

.frame-decoration.right {
  margin-left: 15px;
}

.frame-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffd700;
  text-shadow: 3px 3px 0 #ff6b35, 6px 6px 0 #e55100, 9px 9px 15px rgba(0, 0, 0, 0.8);
  letter-spacing: 3px;
  background: linear-gradient(45deg, #ffd700, #ffa500, #ffd700);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: titleGlow 2s ease-in-out infinite alternate;
  position: relative;
  z-index: 2;
}

@keyframes titleGlow {
  0% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 10px #ffd700);
  }
  100% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 20px #ffa500);
  }
}

.frame-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.game-slot {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(5px);
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 215, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.game-slot::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ffd700, #ffa500, #ffd700);
  border-radius: 15px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-slot:hover::before {
  opacity: 1;
}

.game-slot:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  background: rgba(255, 255, 255, 0.25);
}

.game-image {
  width: 100%;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-slot:hover .game-image img {
  transform: scale(1.1);
}

.play-btn {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  text-decoration: none;
}

.play-btn:hover {
  background: linear-gradient(45deg, #f7931e, #ff6b35);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.play-btn i {
  font-size: 1rem;
}

/* Game Categories Title - Same style as Game Hot */
.categories-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffd700;
  text-shadow: 3px 3px 0 #ff6b35, 6px 6px 0 #e55100, 9px 9px 15px rgba(0, 0, 0, 0.8);
  letter-spacing: 3px;
  background: linear-gradient(45deg, #ffd700, #ffa500, #ffd700);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: titleGlow 2s ease-in-out infinite alternate;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .categories-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .categories-title {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .frame-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .game-hot-frame {
    margin-bottom: 20px;
    padding: 20px;
  }

  .frame-content {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
  }

  .frame-title {
    font-size: 2rem;
  }

  .frame-decoration {
    width: 80px;
    height: 25px;
  }

  .frame-decoration.left {
    margin-right: 10px;
  }

  .frame-decoration.right {
    margin-left: 10px;
  }

  .game-image {
    height: 100px;
  }

  .play-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .frame-title {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .frame-decoration {
    width: 60px;
    height: 20px;
  }
}

/* Responsive adjustments for buttons */
@media (max-width: 640px) {
  .liquid-glass-btn {
    min-width: 180px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .liquid-glass-btn i {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .liquid-glass-btn {
    min-width: 160px;
    padding: 10px 16px;
    font-size: 0.8rem;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .liquid-glass-btn {
    min-width: 200px;
    padding: 14px 24px;
    font-size: 1rem;
  }

  .liquid-glass-btn i {
    font-size: 1.1rem;
  }
}
/* Zeus Slideshow - Responsive Without Fixed Aspect Ratio */
.zeus-slideshow-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.zeus-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.zeus-slide.active {
  opacity: 1;
  position: relative;
}

.zeus-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

/* Navigation buttons - Transparent style */
.zeus-prev,
.zeus-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.zeus-prev {
  left: 10px;
}

.zeus-next {
  right: 10px;
}

.zeus-prev:hover,
.zeus-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.zeus-next {
  right: 20px;
}

/* Dots indicator */
.zeus-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.zeus-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.zeus-dot.active {
  background: #31ccff;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(49, 204, 255, 0.6);
}

.zeus-dot:hover {
  background: rgba(49, 204, 255, 0.8);
  transform: scale(1.1);
}
