/* LOADING SCREEN TONE XANH TRẮNG THANH LỊCH */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(49, 204, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(5, 102, 253, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
    overflow: hidden;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

/* CASINO BACKGROUND EFFECTS - TONE XANH TRẮNG */
.casino-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-coins {
    position: absolute;
    width: 100%;
    height: 100%;
}

.coin {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #31ccff, #0566fd, #31ccff);
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 
        0 0 20px rgba(49, 204, 255, 0.8),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    animation: coinFall linear infinite;
    opacity: 0.9;
}

.coin::before {
    content: '₫';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* SPARKLING PARTICLES - XANH TRẮNG */
.sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #31ccff;
    border-radius: 50%;
    animation: sparkleFloat linear infinite;
    box-shadow: 0 0 10px #31ccff;
}

/* LOGO ĐỠN GIẢN - XANH TRẮNG */
.casino-logo {
    font-size: 5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 
        0 0 10px #31ccff,
        0 0 20px #31ccff,
        2px 2px 0 #0566fd;
    margin-bottom: 2rem;
    animation: logoFloat 3s ease-in-out infinite;
    font-family: 'Arial Black', sans-serif;
    letter-spacing: 3px;
    position: relative;
}

/* SLOT MACHINE - TONE XANH */
.slot-machine {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
    padding: 20px;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border-radius: 15px;
    border: 3px solid #31ccff;
    box-shadow: 
        0 0 30px rgba(49, 204, 255, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

.slot-reel {
    width: 60px;
    height: 80px;
    background: linear-gradient(145deg, #1e1e1e, #0a0a0a);
    border: 2px solid #31ccff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.slot-symbols {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    animation: slotSpin linear infinite;
}

.slot-symbol {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
}

/* TEXT ĐƠN GIẢN - KHÔNG QUÁ MÀU MÈ */
.jackpot-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px #31ccff;
    margin-bottom: 1.5rem;
    animation: textSimple 2s ease-in-out infinite;
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
}

/* PROGRESS BAR XANH TRẮNG */
.casino-progress {
    width: 400px;
    height: 20px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 3px solid #31ccff;
    box-shadow: 
        0 0 20px rgba(49, 204, 255, 0.5),
        inset 0 0 20px rgba(0, 0, 0, 0.8);
    position: relative;
}

.casino-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

.casino-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, 
        #31ccff 0%, 
        #0566fd 25%, 
        #31ccff 50%, 
        #ffffff 75%, 
        #31ccff 100%);
    background-size: 200% 100%;
    border-radius: 25px;
    width: 0%;
    animation: gradientMove 3s linear infinite;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 20px rgba(49, 204, 255, 0.8),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

/* LOADING TEXT ĐƠN GIẢN */
.casino-loading-text {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 0 5px rgba(49, 204, 255, 0.5);
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
}

.loading-percentage {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px #31ccff;
    margin-top: 1rem;
}

/* ANIMATIONS ĐƠN GIẢN HƠN */
@keyframes coinFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes sparkleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 1;
    }
    50% {
        transform: translateY(50vh) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) scale(0);
        opacity: 0;
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes textSimple {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes slotSpin {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-400px);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* HIỆU ỨNG VIỀN XANH TRẮNG CHẠY TRÒN CHO NÚT */
.auth-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.auth-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(
        from 0deg,
        #31ccff 0deg,
        #ffffff 90deg,
        #0566fd 180deg,
        #31ccff 270deg,
        #ffffff 360deg
    );
    border-radius: inherit;
    animation: rotateBorder 2s linear infinite;
    z-index: -1;
}

.auth-button::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

/* Animation cho viền chạy tròn */
@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Hiệu ứng hover cho nút */
.auth-button:hover::before {
    animation-duration: 0.8s;
    background: conic-gradient(
        from 0deg,
        #31ccff 0deg,
        #ffffff 60deg,
        #0566fd 120deg,
        #31ccff 180deg,
        #ffffff 240deg,
        #0566fd 300deg,
        #31ccff 360deg
    );
}

/* Hiệu ứng pulse cho viền */
.auth-button:hover {
    box-shadow: 
        0 0 20px rgba(49, 204, 255, 0.6),
        0 0 40px rgba(49, 204, 255, 0.4),
        0 0 60px rgba(49, 204, 255, 0.2);
}

/* MOBILE RESPONSIVE - FIX LỖI */
@media (max-width: 768px) {
    .loading-screen {
        padding: 20px;
    }
    
    .casino-logo {
        font-size: 3rem;
        margin-bottom: 1rem;
        letter-spacing: 2px;
    }
    
    .jackpot-text {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }
    
    .slot-machine {
        gap: 6px;
        padding: 12px;
        margin-bottom: 1.5rem;
    }
    
    .slot-reel {
        width: 45px;
        height: 60px;
    }
    
    .slot-symbol {
        height: 60px;
        font-size: 1.3rem;
    }
    
    .casino-progress {
        width: 280px;
        height: 16px;
        margin-bottom: 1rem;
    }
    
    .casino-loading-text {
        font-size: 1rem;
        padding: 0 10px;
        text-align: center;
    }
    
    .loading-percentage {
        font-size: 1.4rem;
        margin-top: 0.5rem;
    }
    
    /* Fix coin size trên mobile */
    .coin {
        width: 20px;
        height: 20px;
        border: 2px solid #ffffff;
    }
    
    .coin::before {
        font-size: 12px;
    }
    
    /* Fix sparkle trên mobile */
    .sparkle {
        width: 3px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .loading-screen {
        padding: 15px;
    }
    
    .casino-logo {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
        letter-spacing: 1px;
    }
    
    .jackpot-text {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        letter-spacing: 0.5px;
    }
    
    .slot-machine {
        gap: 4px;
        padding: 10px;
        margin-bottom: 1rem;
    }
    
    .slot-reel {
        width: 35px;
        height: 50px;
        border: 1px solid #31ccff;
    }
    
    .slot-symbol {
        height: 50px;
        font-size: 1rem;
    }
    
    .casino-progress {
        width: 220px;
        height: 14px;
        margin-bottom: 0.8rem;
        border: 2px solid #31ccff;
    }
    
    .casino-loading-text {
        font-size: 0.9rem;
        padding: 0 15px;
        line-height: 1.3;
    }
    
    .loading-percentage {
        font-size: 1.2rem;
        margin-top: 0.3rem;
    }
    
    /* Giảm số lượng effects trên mobile nhỏ */
    .floating-coins {
        display: none; /* Tắt coins trên mobile nhỏ */
    }
    
    .sparkles .sparkle:nth-child(n+11) {
        display: none; /* Chỉ hiển thị 10 sparkles đầu */
    }
}

@media (max-width: 360px) {
    .casino-logo {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .jackpot-text {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .slot-machine {
        gap: 3px;
        padding: 8px;
    }
    
    .slot-reel {
        width: 30px;
        height: 40px;
    }
    
    .slot-symbol {
        height: 40px;
        font-size: 0.8rem;
    }
    
    .casino-progress {
        width: 180px;
        height: 12px;
    }
    
    .casino-loading-text {
        font-size: 0.8rem;
    }
    
    .loading-percentage {
        font-size: 1rem;
    }
}

/* Mobile responsive cho hiệu ứng */
@media (max-width: 768px) {
    .auth-button::before {
        animation-duration: 2.5s;
    }
    
    .auth-button:hover::before {
        animation-duration: 1.2s;
    }
}

/* Fix overflow trên mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .loading-screen {
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height */
    }
    
    .casino-bg-effects {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
    }
}
/* 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;
}

/* HIỆU ỨNG BÔNG TUYẾT RƠI TOÀN WEB */
.snowflakes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  top: -10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  animation: snowfall linear infinite;
  user-select: none;
}

.snowflake:nth-child(1) {
  left: 10%;
  animation-duration: 8s;
  animation-delay: 0s;
  font-size: 0.8rem;
}
.snowflake:nth-child(2) {
  left: 20%;
  animation-duration: 12s;
  animation-delay: 1s;
  font-size: 1.2rem;
}
.snowflake:nth-child(3) {
  left: 30%;
  animation-duration: 10s;
  animation-delay: 2s;
  font-size: 0.9rem;
}
.snowflake:nth-child(4) {
  left: 40%;
  animation-duration: 14s;
  animation-delay: 0.5s;
  font-size: 1.1rem;
}
.snowflake:nth-child(5) {
  left: 50%;
  animation-duration: 9s;
  animation-delay: 1.5s;
  font-size: 0.7rem;
}
.snowflake:nth-child(6) {
  left: 60%;
  animation-duration: 11s;
  animation-delay: 3s;
  font-size: 1.3rem;
}
.snowflake:nth-child(7) {
  left: 70%;
  animation-duration: 13s;
  animation-delay: 2.5s;
  font-size: 0.8rem;
}
.snowflake:nth-child(8) {
  left: 80%;
  animation-duration: 15s;
  animation-delay: 4s;
  font-size: 1rem;
}
.snowflake:nth-child(9) {
  left: 90%;
  animation-duration: 7s;
  animation-delay: 1.8s;
  font-size: 0.9rem;
}
.snowflake:nth-child(10) {
  left: 15%;
  animation-duration: 16s;
  animation-delay: 3.5s;
  font-size: 1.4rem;
}
.snowflake:nth-child(11) {
  left: 25%;
  animation-duration: 6s;
  animation-delay: 0.8s;
  font-size: 0.6rem;
}
.snowflake:nth-child(12) {
  left: 35%;
  animation-duration: 18s;
  animation-delay: 2.2s;
  font-size: 1.1rem;
}
.snowflake:nth-child(13) {
  left: 45%;
  animation-duration: 8.5s;
  animation-delay: 4.5s;
  font-size: 0.8rem;
}
.snowflake:nth-child(14) {
  left: 55%;
  animation-duration: 12.5s;
  animation-delay: 1.2s;
  font-size: 1.2rem;
}
.snowflake:nth-child(15) {
  left: 65%;
  animation-duration: 9.5s;
  animation-delay: 3.8s;
  font-size: 0.7rem;
}
.snowflake:nth-child(16) {
  left: 75%;
  animation-duration: 11.5s;
  animation-delay: 0.3s;
  font-size: 1.3rem;
}
.snowflake:nth-child(17) {
  left: 85%;
  animation-duration: 14.5s;
  animation-delay: 2.8s;
  font-size: 0.9rem;
}
.snowflake:nth-child(18) {
  left: 95%;
  animation-duration: 7.5s;
  animation-delay: 4.2s;
  font-size: 1rem;
}
.snowflake:nth-child(19) {
  left: 5%;
  animation-duration: 13.5s;
  animation-delay: 1.7s;
  font-size: 0.8rem;
}
.snowflake:nth-child(20) {
  left: 12%;
  animation-duration: 10.5s;
  animation-delay: 3.2s;
  font-size: 1.1rem;
}

@keyframes snowfall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

/* 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: 150px;
    top: 73%;
  }

  .character-right {
    right: 150px;
    top: 73%;
  }

  .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);
  }
}

/* BUTTON SIÊU XỊN XÒ - NÂNG CẤP TOÀN BỘ */
.liquid-glass-btn {
  position: relative;
  backdrop-filter: blur(20px);
  overflow: hidden;
  border-radius: 30px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);

  /* Thêm animation mặc định */
  animation: buttonFloat 4s ease-in-out infinite, buttonGlow 2s ease-in-out infinite alternate;

  /* Transition mượt mà */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Cursor pointer */
  cursor: pointer;

  /* Text styling */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Layer 1: Glass morphism background */
.liquid-glass-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  border-radius: inherit;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 1;
}

/* Layer 2: Ripple effect */
.liquid-glass-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  z-index: 2;
}

/* Hover Effects */
.liquid-glass-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(49, 204, 255, 0.4), 0 0 60px rgba(5, 102, 253, 0.3), inset 0
    1px 0 rgba(255, 255, 255, 0.4);

  border: 2px solid rgba(49, 204, 255, 0.6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.15));
}

.liquid-glass-btn:hover::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
}

.liquid-glass-btn:hover::after {
  width: 300px;
  height: 300px;
  opacity: 0.8;
}

/* Active/Click Effects */
.liquid-glass-btn:active {
  transform: translateY(-2px) scale(1.02);
  transition: all 0.1s ease;
}

/* Specific Button Styles */
.reward-button {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(247, 147, 30, 0.8));
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: buttonFloat 4s ease-in-out infinite, rewardPulse 2s ease-in-out infinite, rewardGlow 3s ease-in-out
    infinite alternate;
}

.reward-button:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 1), rgba(247, 147, 30, 0.9));
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4), 0 0 30px rgba(255, 107, 53, 0.6), 0 0 60px rgba(247, 147, 30, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.play-now-button {
  background: linear-gradient(135deg, rgba(49, 204, 255, 0.9), rgba(5, 102, 253, 0.8));
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: buttonFloat 4s ease-in-out infinite 0.5s, playPulse 2.5s ease-in-out infinite, playGlow 3s ease-in-out
    infinite alternate;
}

.play-now-button:hover {
  background: linear-gradient(135deg, rgba(49, 204, 255, 1), rgba(5, 102, 253, 0.9));
  box-shadow: 0 15px 40px rgba(49, 204, 255, 0.4), 0 0 30px rgba(49, 204, 255, 0.6), 0 0 60px rgba(5, 102, 253, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Play Button trong Game Slots */
.play-btn {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.95), rgba(247, 147, 30, 0.9));
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  width: 100%;

  /* Siêu hiệu ứng */
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4), 0 0 20px rgba(255, 107, 53, 0.3), inset 0 1px 0
    rgba(255, 255, 255, 0.3);

  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: playBtnFloat 3s ease-in-out infinite, playBtnGlow 2s ease-in-out infinite alternate;
}

.play-btn::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.6s ease;
}

.play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

.play-btn:hover {
  transform: translateY(-4px) scale(1.05);
  background: linear-gradient(135deg, rgba(247, 147, 30, 0.95), rgba(255, 107, 53, 0.9));
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6), 0 0 40px rgba(255, 107, 53, 0.5), 0 0 80px rgba(247, 147, 30, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.play-btn:hover::before {
  left: 100%;
}

.play-btn:hover::after {
  width: 200px;
  height: 200px;
}

.play-btn:active {
  transform: translateY(-2px) scale(1.02);
}

/* Button Animations */
@keyframes buttonFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes buttonGlow {
  0%,
  100% {
    filter: brightness(1) saturate(1);
  }
  50% {
    filter: brightness(1.2) saturate(1.3);
  }
}

@keyframes rewardPulse {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3), 0 0 20px rgba(255, 107, 53, 0.2);
  }
  50% {
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5), 0 0 40px rgba(255, 107, 53, 0.4), 0 0 80px rgba(247, 147, 30, 0.3);
  }
}

@keyframes rewardGlow {
  0%,
  100% {
    filter: brightness(1) saturate(1) hue-rotate(0deg);
  }
  50% {
    filter: brightness(1.3) saturate(1.5) hue-rotate(10deg);
  }
}

@keyframes playPulse {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(49, 204, 255, 0.3), 0 0 20px rgba(49, 204, 255, 0.2);
  }
  50% {
    box-shadow: 0 12px 40px rgba(49, 204, 255, 0.5), 0 0 40px rgba(49, 204, 255, 0.4), 0 0 80px rgba(5, 102, 253, 0.3);
  }
}

@keyframes playGlow {
  0%,
  100% {
    filter: brightness(1) saturate(1) hue-rotate(0deg);
  }
  50% {
    filter: brightness(1.3) saturate(1.5) hue-rotate(-10deg);
  }
}

@keyframes playBtnFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  33% {
    transform: translateY(-2px) scale(1.01);
  }
  66% {
    transform: translateY(-1px) scale(1.005);
  }
}

@keyframes playBtnGlow {
  0%,
  100% {
    filter: brightness(1) saturate(1);
  }
  50% {
    filter: brightness(1.2) saturate(1.2);
  }
}

/* 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%;
}

@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);
  }
}

/* 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 - KHOẢNG CÁCH GỌN GÀNG */
.game-hot-frame {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px auto; /* Tăng margin bottom */
  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; /* Giảm từ 30px xuống 25px */
  position: relative;
  z-index: 2;
}

.frame-decoration {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  position: relative;
  border-radius: 2px;
}

.frame-decoration::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.frame-decoration.left {
  margin-right: 25px; /* Giảm từ 30px xuống 25px */
}

.frame-decoration.right {
  margin-left: 25px; /* Giảm từ 30px xuống 25px */
}

/* TIÊU ĐỀ GAME HOT - KHOẢNG CÁCH GỌN GÀNG */
.frame-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: "Arial", sans-serif;

  /* Gradient đẹp */
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Shadow đẹp */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));

  /* Animation mượt */
  animation: colorShift 3s ease-in-out infinite;

  /* Padding cho đẹp - GIẢM KHOẢNG CÁCH */
  padding: 10px 0; /* Giảm từ 15px xuống 10px */
  text-align: center;
  margin: 0; /* Thêm margin 0 */
}

@keyframes colorShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Hover effect */
.frame-title:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.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);
}

/* DANH MỤC GAME - KHOẢNG CÁCH GỌN GÀNG */
.categories-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: "Arial", sans-serif;

  /* Gradient đẹp giống GAME HOT */
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Shadow đẹp */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));

  /* Animation mượt - delay khác để tạo sự khác biệt */
  animation: colorShift 3s ease-in-out infinite 1.5s, titlePulse 4s ease-in-out infinite;

  /* Padding cho đẹp - GIẢM KHOẢNG CÁCH */
  padding: 10px 0; /* Giảm từ 15px xuống 10px */
  text-align: center;

  /* Thêm border decoration */
  position: relative;
  margin: 25px 0; /* Giảm từ 30px xuống 25px */
}

/* Thêm decoration cho DANH MỤC GAME */
.categories-title::before {
  content: "";
  position: absolute;
  top: -8px; /* Giảm từ -10px xuống -8px */
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  border-radius: 2px;
}

.categories-title::after {
  content: "";
  position: absolute;
  bottom: -8px; /* Giảm từ -10px xuống -8px */
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  border-radius: 2px;
}

/* Hover effect giống GAME HOT */
.categories-title:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Thêm hiệu ứng pulse nhẹ */
@keyframes titlePulse {
  0%,
  100% {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  }
  50% {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .frame-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .game-hot-frame {
    margin-bottom: 30px; /* Giảm từ 40px xuống 30px */
    padding: 20px;
  }

  .frame-content {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
  }

  .frame-title {
    font-size: 2.2rem;
    letter-spacing: 3px;
    padding: 8px 0; /* Giảm từ 12px xuống 8px */
  }

  .frame-decoration {
    width: 80px;
  }

  .frame-decoration.left {
    margin-right: 15px; /* Giảm từ 20px xuống 15px */
  }

  .frame-decoration.right {
    margin-left: 15px; /* Giảm từ 20px xuống 15px */
  }

  .game-image {
    height: 100px;
  }

  .categories-title {
    font-size: 2.2rem;
    letter-spacing: 3px;
    padding: 8px 0; /* Giảm từ 12px xuống 8px */
    margin: 20px 0; /* Giảm từ 25px xuống 20px */
  }

  .categories-title::before,
  .categories-title::after {
    width: 150px;
    top: -6px;
    bottom: -6px;
  }
}

@media (max-width: 480px) {
  .frame-title {
    font-size: 1.8rem;
    letter-spacing: 2px;
    padding: 6px 0; /* Giảm từ 10px xuống 6px */
  }

  .frame-decoration {
    width: 60px;
  }

  .frame-decoration.left {
    margin-right: 12px; /* Giảm từ 15px xuống 12px */
  }

  .frame-decoration.right {
    margin-left: 12px; /* Giảm từ 15px xuống 12px */
  }

  .categories-title {
    font-size: 1.8rem;
    letter-spacing: 2px;
    padding: 6px 0; /* Giảm từ 8px xuống 6px */
    margin: 15px 0; /* Giảm từ 20px xuống 15px */
  }

  .categories-title::before,
  .categories-title::after {
    width: 120px;
    top: -5px;
    bottom: -5px;
  }
}

/* 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);
}
 