:root {
  --primary: #00ddff;
  --bg: #000000;
  --navbar-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #000000;
  color: #fff;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: var(--navbar-height);
}

html,
body {
  height: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* Navbar Styles */
.navbar {
  height: var(--navbar-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4%;
  background-color: var(--bg);
  border-bottom: 1px solid #02daff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.navbar-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

.navbar-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.navbar-logo span {
  color: #02daff;
}

.navbar-nav a {
  display: inline-block;
  margin: 0 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  transition: color 0.3s;
}

.navbar-nav a:hover {
  color: #02daff;
}

.navbar-extra {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar .navbar-extra a:hover {
  color: var(--primary);
  text-shadow: 0 0 5px rgba(0, 221, 255, 0.7), 0 0 10px rgba(0, 221, 255, 0.5);
}

#hamburger-menu {
  display: none;
  align-items: center;
  gap: 0.5rem;
  width: 3.3rem;
  height: 3.3rem;
  padding: 0.6rem 0.6rem;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

/* Alternatif 1: Dengan background gradient */
.navbar-logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #fff, #02daff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

/* Alternatif 2: Dengan text shadow */
.navbar-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 10px rgba(2, 218, 255, 0.5);
  text-decoration: none;
}

.navbar-logo span {
  color: #02daff;
  text-shadow: 0 0 15px rgba(2, 218, 255, 0.8);
}

/* Language Selector */
.language-selector {
  position: relative;
  display: inline-block;
}

.language-button span {
  display: none;
}

.language-dropdown.active .language-option span {
  display: inline;
}

.language-dropdown .language-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.language-dropdown .language-option:hover {
  color: var(--primary);
  text-shadow: 0 0 5px rgba(0, 221, 255, 0.7), 0 0 10px rgba(0, 221, 255, 0.5);
}

.language-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg);
  color: #fff;
  margin: auto;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.1rem;
  font-weight: bold;
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: fit-content;
  backdrop-filter: blur(10px);
  border: 1px solid #02daff;
  border-radius: 4px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 20000;
}

.language-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.language-option img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

/* Download Modal */
#download-modal-button {
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
  flex-direction: column;
  justify-content: flex-start;
}

.download-modal {
  position: fixed;
  top: var(--navbar-height);
  right: -100%;
  width: 300px;
  height: calc(100vh - var(--navbar-height));
  backdrop-filter: blur(10px);
  border-left: 1px solid rgba(0, 195, 255, 0.8);
  transition: 0.4s ease;
  overflow-y: auto;
  z-index: 10000;
  padding: 1rem 1.5rem;
}

.download-modal.active {
  right: 0;
  visibility: visible;
}

.download-modal-header p {
  font-size: 1.1rem;
  color: #fff;
  font-size: 1.1rem;
}

.download-modal .download-item {
  display: flex;
  align-items: center;
  border-bottom: 0.1px solid #02daff;
  padding: 1rem 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.download-modal .download-item:hover {
  transform: translateY(-3px);
}

.download-modal .download-item img {
  width: 100px;
  height: 50px;
  object-fit: contain;
}

.download-modal .item-detail {
  flex: 1;
}

.download-modal .download-btn {
  display: inline-flex;
  align-items: center;
  background: #02daff;
  color: #000000;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid #02daff;
}

.download-modal .download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 195, 255, 0.8);
  background: #000000;
  color: #02daff;
}

.download-modal .download-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.65) 50%,
    transparent 100%
  );
  transform: skewX(-30deg);
  opacity: 0.8;
  animation: ctaShine 1s infinite ease-in-out;
  pointer-events: none;
  border-radius: inherit;
}

.download-modal-footer {
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  width: 100%;
  max-width: 500px;
}

.download-modal-footer p {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.download-modal-footer .support-btn {
  display: inline-flex;
  align-items: center;
  background: #02daff;
  color: #000000;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid #02daff;
}

.support-btn i {
  font-size: 2rem;
  margin-right: 0.5rem;
}

.download-modal-footer .support-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 195, 255, 0.8);
  background: #000000;
  color: #02daff;
}

.download-modal-footer .support-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.65) 50%,
    transparent 100%
  );
  transform: skewX(-30deg);
  opacity: 0.8;
  animation: ctaShine 1s infinite ease-in-out;
  pointer-events: none;
  border-radius: inherit;
}

@keyframes ctaShine {
  0% {
    left: -130%;
  }
  100% {
    left: 130%;
  }
}

/* Overlay untuk modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.download-modal::-webkit-scrollbar {
  width: 1px;
}

.download-modal::-webkit-scrollbar-track {
  background: rgba(0, 195, 255, 0.8);
  border-radius: 10px;
}

.download-modal::-webkit-scrollbar-thumb {
  background: rgba(0, 195, 255, 0.8);
  border-radius: 10px;
}

.download-modal::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 195, 255, 0.8);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  background: url("../img/skycasino888-bg.webp") no-repeat center / cover;
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  position: relative;
}

.hero::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}

.hero .content {
  padding: 5%;
  max-width: 50rem;
  position: relative;
  z-index: 2;
}

.hero .content h1 {
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 195, 255, 0.8);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero .content h1 span {
  color: #02daff;
}

.hero .content p {
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: bold;
  margin-top: 1rem;
  text-shadow: 1px 1px 1px rgba(0, 195, 255, 0.8);
}

.hero .content .cta {
  display: inline-block;
  background: #02daff;
  color: #000000;
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid #02daff;
}

.hero .content .cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 195, 255, 0.8);
  background: #000000;
  color: #02daff;
}

.hero .content .cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.65) 50%,
    transparent 100%
  );
  transform: skewX(-30deg);
  opacity: 0.8;
  animation: ctaShine 1s infinite ease-in-out;
  pointer-events: none;
  border-radius: inherit;
}

@keyframes ctaShine {
  0% {
    left: -130%;
  }
  100% {
    left: 130%;
  }
}
/* --- Live Casino Section --- */
.live {
  color: #fff;
  text-align: center;
}

.live h2 span {
  color: var(--primary);
}

.live h3 {
  font-size: 1.2rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.8;
  margin-top: 1rem;
  text-shadow: 1px 1px 1px rgba(0, 195, 255, 0.8);
}

.live p {
  text-align: left;
  size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  margin-top: 1rem;
  text-shadow: 1px 1px 1px rgba(0, 195, 255, 0.8);
}

.live .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  padding: 5%;
}

.live-img {
  background-image: url("../img/live-casino.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex: 1 1;
  position: relative;
  overflow: visible;
  min-height: 400px;
  min-width: 300px;
  z-index: 1;
}

.live .content {
  flex: 1;
  text-align: left;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
}

.live .content h2 {
  font-size: 1.2rem;
  color: #02daff;
}

.live .content p:first-child {
  font-size: 1.3rem;
  color: #02daff;
  margin-bottom: 1rem;
  font-weight: bold;
}

/* --- Slot Games Section --- */
.slots {
  color: #fff;
  text-align: center;
}

.slots h2 span {
  color: var(--primary);
}

.slots h3 {
  font-size: 1.2rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.8;
  margin-top: 1rem;
  text-shadow: 1px 1px 1px rgba(0, 195, 255, 0.8);
}

.slots-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 5%;
}

.slot-text {
  flex: 1;
  text-align: left;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
}

.slots p {
  text-align: left;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  margin-top: 1rem;
  text-shadow: 1px 1px 1px rgba(0, 195, 255, 0.8);
}

.slot-img {
  background-image: url("../img/slot-games.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex: 1 1;
  position: relative;
  overflow: visible;
  border-radius: 8px;
  min-height: 400px;
  min-width: 300px;
  z-index: 1;
}

/* Customer Service Section */
.cs {
  color: #fff;
  text-align: center;
}

.cs h2 span {
  color: var(--primary);
}

.cs p {
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  margin-top: 1rem;
  text-shadow: 1px 1px 1px rgba(0, 195, 255, 0.8);
}

.cs-img {
  background-image: url("../img/customer-service.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex: 1 1;
  position: relative;
  overflow: visible;
  min-height: 400px;
  min-width: 300px;
  z-index: 1;
}

.cs .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 5%;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-top: 1rem;
}

.social-icons a {
  display: inline-flex;
  background: #02daff;
  color: var(--bg);
  gap: 0.5rem;
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  border: 2px solid #02daff;
}

.social-icons a i {
  font-size: 2rem;
}

.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 195, 255, 0.8);
  background: #000000;
  color: #02daff;
}

.social-icons a.whatsapp:hover {
  background: #000000;
  color: #02daff;
}

.social-icons a.telegram:hover {
  background: #000000;
  color: #02daff;
}

.social-icons a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.65) 50%,
    transparent 100%
  );
  transform: skewX(-30deg);
  opacity: 0.8;
  animation: ctaShine 1s infinite ease-in-out;
  pointer-events: none;
  border-radius: inherit;
}
/* Footer */
footer {
  background: linear-gradient(135deg, #02daff, #000000);
  text-align: center;
  padding: 2rem 0rem;
  margin-top: auto;
}

footer .socials {
  padding: 2rem 0;
  margin-bottom: 1rem;
}

footer .socials a {
  color: #fff;
  margin: 0 1rem;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

footer .socials a:hover {
  color: #02daff;
}

footer .links {
  margin-bottom: 2rem;
}

footer .links a {
  color: #fff;
  margin: 0 1rem;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

footer .credit {
  font-size: 1rem;
  color: #fff;
}

footer .credit a:hover {
  color: var(--primary);
}

/* About | Terms & Conditions | FAQ */
header {
  background: #000000;
  padding: 1rem 2rem;
  border-bottom: 1px solid #02daff;
  text-align: center;
}

.logo {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

.logo span {
  color: #02daff;
}

/* Content Section */
.content-page {
  max-width: 800px;
  margin: 1.5rem auto;
  padding: 0 1.5rem;
  color: #fff;
}

.content-page h1 {
  color: #02daff;
  margin-bottom: 2.5rem;
  text-align: center;
  font-size: 1.4rem;
}

.content-page h3 {
  color: #fff;
  margin-top: 1rem;
}

.content-page p,
.content-page li {
  line-height: 1.5;
  color: #fff;
  line-height: 1.8;
  font-weight: 300;
  margin-top: 1rem;
  text-shadow: 1px 1px 1px rgba(0, 195, 255, 0.8);
}

/* Footer */
.footer {
  background: #000000;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid #02daff;
  margin-top: 4rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.footer-links a {
  color: #fff;
  font-size: 1rem;
  transition: 0.3s;
  text-decoration: none;
}

.footer-links a:hover {
  color: #02daff;
}

.footer-text {
  font-size: 0.9rem;
  color: #fff;
}

/* Time Mobile */
.time-desktop {
  display: inline-block;
  font-weight: bold;
  font-size: 1rem;
  color: #fff;
  margin-right: 0.5rem;
}

.time-mobile {
  display: none;
}

.navbar-nav .time-mobile {
  display: none;
}

/* Slider */
.slider-box {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  margin: auto;
  overflow: hidden;
  position: relative;
  background: #000;
}

.slider-track {
  display: flex;
  transition: transform 0.35s ease;
  cursor: grab;
  height: 100%;
}

.slider-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  user-select: none;
  pointer-events: none;
}
/* Slide */
.slide-item {
  position: relative;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-text {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  max-width: 80%;
}

.slide-text h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #02daff;
  text-shadow: 0 0 10px rgba(2, 218, 255, 0.5);
}

.slide-text p {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Register Now */
.register-btn {
  display: inline-block;
  background: #02daff;
  color: #000000;
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid #02daff;
}

.register-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 195, 255, 0.8);
  background: #000000;
  color: #02daff;
}

.register-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.65) 50%,
    transparent 100%
  );
  transform: skewX(-30deg);
  opacity: 0.8;
  animation: ctaShine 1s infinite ease-in-out;
  pointer-events: none;
  border-radius: inherit;
}

@keyframes ctaShine {
  0% {
    left: -130%;
  }
  100% {
    left: 130%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .slide-text {
    bottom: 15%;
    left: 5%;
    max-width: 90%;
  }

  .slide-text h3 {
    font-size: 1.5rem;
  }

  .slide-text p {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .register-btn {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .slide-text {
    bottom: 15%;
    text-align: left;
    left: 8%;
    transform: none;
    width: 85%;
    max-width: 85%;
  }

  .slide-text h3 {
    font-size: 1.4rem;
    text-align: left;
    margin-bottom: 0.4rem;
  }

  .slide-text p {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    text-align: left;
    line-height: 1.4;
  }

  .register-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    text-align: center;
    margin-top: 0.3rem;
  }
}
/* Media Queries */
@media (min-width: 1440px) {
  .hero .content h1 {
    font-size: 3rem;
  }

  .hero .content p,
  .content p,
  .slots p,
  .cs p {
    font-size: 1rem;
  }
}

@media (max-width: 1366px) {
  html {
    font-size: 90%;
  }
}

/* Time */
@media (max-width: 768px) {
  html {
    font-size: 75%;
  }

  .time-desktop {
    display: none;
  }
  .time-mobile {
    display: block;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
  }

  .navbar-nav.active .time-mobile {
    display: block;
  }

  #time-display {
    display: none;
  }
}

/* Responsif Navbar*/
@media (max-width: 768px) {
  #hamburger-menu {
    display: inline-block;
  }

  :root {
    --navbar-height: 70px;
  }

  body {
    padding-top: var(--navbar-height);
  }

  .navbar-logo img {
    height: 50px;
  }

  .navbar .navbar-nav {
    position: fixed;
    top: var(--navbar-height);
    right: 0;
    width: 52%;
    height: calc(100vh - var(--navbar-height));
    padding: 2rem;
    border-left: 1px solid #02daff;
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    visibility: hidden;
    z-index: 9999;
  }

  .navbar .navbar-nav.active {
    transform: translateX(0);
    visibility: visible;
  }

  .navbar .navbar-nav a {
    display: block;
    margin: 2rem 0;
    font-size: 1.4rem;
    text-align: center;
  }

  .navbar-nav {
    position: fixed;
    top: var(--navbar-height);
    right: 0;
    width: 300px;
    height: calc(100vh - var(--navbar-height));
    padding: 2rem;
    border-left: 1px solid #02daff;
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    visibility: hidden;
    z-index: 9999;
  }

  .navbar-nav.active {
    transform: translateX(0);
    visibility: visible;
  }
}

/* Responsif Download*/
@media (max-width: 768px) {
  .download-modal .download-item img {
    width: 80px;
    height: 40px;
    object-fit: contain;
  }

  .download-modal .download-item {
    padding: 1rem 0rem;
  }
}

/* Responsif Live Casino */
@media (max-width: 768px) {
  .live .row {
    flex-direction: column;
    text-align: center;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .live-img {
    width: 100%;
    min-height: 250px;
  }

  .live .content {
    text-align: center;
  }

  .live .content p:first-child {
    font-size: 1.2rem;
  }
}

/* Responsif Slots Game */
@media (max-width: 768px) {
  .slots .row {
    flex-direction: column;
    text-align: center;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .slots-container {
    flex-direction: column;
  }

  .slot-img {
    order: -1;
    width: 100%;
    min-height: 250px;
  }

  .slot-text {
    text-align: center;
  }
  .cs p {
    padding: 0;
  }
}

/* Responsif Customer Service */
@media (max-width: 768px) {
  .cs-img {
    width: 100%;
    min-height: 250px;
  }

  .cs .content {
    text-align: center;
  }

  .cs .content p:first-child {
    font-size: 1.2rem;
  }
}

/* Responsif Time */
@media (max-width: 480px) {
  #time-display {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    right: 0.5rem;
  }
}
/* Responsif Navbar */
@media (max-width: 480px) {
  :root {
    --navbar-height: 60px;
  }

  .navbar .navbar-nav a {
    font-size: 1.1rem;
  }

  .navbar-logo img {
    height: 40px;
  }
}

/* Responsif Hero */
@media (max-width: 480px) {
  .hero .content h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .hero .content .cta {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
  }

  .hero .content p,
  .content p,
  .slots p,
  .cs p {
    font-size: 1rem;
  }

  .live h3,
  .slots h3 {
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
  }

  .download-modal {
    width: 52%;
    padding: 0.8rem;
  }

  .download-modal .download-item img {
    width: 70px;
    height: 35px;
    object-fit: contain;
  }

  .download-modal .download-item {
    padding: 0.5rem 0rem;
  }

  .download-modal .download-btn {
    font-size: 0.8rem;
  }

  footer .credit {
    font-size: 0.9rem;
  }

  footer .links a {
    font-size: 1rem;
  }
}
