* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #111;
  color: #eee;
  line-height: 1.6;
  scroll-behavior: smooth;
}
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #0c0c0c;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}
.lang-selector {
  display: inline-block;
  margin-left: 10px;
}
.lang-selector select {
  background: #111;
  color: #ffcc00;
  border: 1px solid #ffcc00;
  border-radius: 6px;
  padding: 3px 6px;
  font-size: 1.1rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 50px;
  height: 30px;
  line-height: 1;
  text-align: center;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.lang-selector select:hover {
  background: #ffcc00;
  color: #111;
}
.lang-selector select option {
  background: #111;
  color: #ffcc00;
}
.promo-popup {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  animation: fadeIn 0.5s ease-in-out;
}
.promo-popup.hidden {
  display: none;
}
.promo-content {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  color: #fff;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.6s ease-out;
}
.promo-logo {
  width: 80px;
  margin-bottom: 20px;
  border-radius: 12px;
}
.promo-content h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
}
.promo-content p {
  font-size: 1em;
  line-height: 1.5;
  color: #ccc;
  margin-bottom: 25px;
}
.promo-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #00bfff;
  border: none;
  border-radius: 8px;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.promo-btn:hover {
  background-color: #00a0e0;
  transform: scale(1.05);
  box-shadow: 0 2px 7px rgba(0, 191, 255, 0.5);
}
.promo-btn2 {
  display: inline-block;
  padding: 12px 30px;
  background-color: #00bfff;
  border: none;
  border-radius: 8px;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: 5px;
}
.promo-btn2:hover {
  background-color: #00a0e0;
  transform: scale(1.05);
  box-shadow: 0 2px 7px rgba(0, 191, 255, 0.5);
}
.promo-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4em;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.promo-close:hover {
  opacity: 0.7;
}
.promo-note {
  margin-top: 18px;
  font-size: 0.8rem;
  color: #ccc;
  line-height: 1.4;
  opacity: 0.8;
  text-align: center;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.promo-note strong {
  color: #ffcc00;
  font-weight: 600;
}
.announcement-content.expanded {
  max-height: 500px;
}
.expand-toggle {
  text-align: center;
  margin-top: 6px;
  cursor: pointer;
  color: #00b4ff;
  font-weight: bold;
  user-select: none;
}
.expand-toggle:hover { opacity: 0.8; }
#toggleArrow {
  display: inline-block;
  transition: transform 0.4s ease;
}
.expanded + .expand-toggle #toggleArrow {
  transform: rotate(180deg);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.loader {
  display: flex;
  gap: 8px;
}
.loader div {
  width: 12px;
  height: 12px;
  background: #00b3ff;
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}
.loader div:nth-child(2) { animation-delay: 0.2s; }
.loader div:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce {
  from { transform: translateY(0); opacity: 0.6; }
  to { transform: translateY(-12px); opacity: 1; }
}
.footer-logo {
  width: 160px;
  height: auto;
  margin-bottom: 10px;
  margin-top: -20px;
  filter: brightness(1.2);
}
.lang-card {
  background: linear-gradient(145deg, #202020, #151515);
  border: 1px solid #00bfff;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
@keyframes modernShakeSlow {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
  20%, 40%, 60%, 80% { transform: translateX(4px); }
}
.lang-card p em {
  display: inline-block;
  color: #00bfff;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.5px;
  animation: modernShakeSlow 1.2s ease-in-out infinite;
  animation-delay: 3s;
}
.lang-card::after {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 1.3rem;
  opacity: 0.6;
}
.lang-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0,191,255,0.4);
  background: rgba(0,191,255,0.1);
}
.lang-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}
.lang-popup-content {
  background: #1e1e1e;
  border-radius: 16px;
  padding: 30px 25px 40px;
  text-align: center;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 0 40px rgba(0, 191, 255, 0.3);
  position: relative;
  animation: scaleIn 0.25s ease;
}
.lang-popup-content h2 {
  color: #00bfff;
  margin-bottom: 20px;
}
.lang-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}
.lang-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.25s ease;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeLang 0.4s ease forwards;
}
.lang-item img {
  width: 32px;
  height: 22px;
  border-radius: 3px;
  margin-bottom: 8px;
  object-fit: cover;
}
.lang-item span {
  font-size: 0.9rem;
  color: #fff;
}
.lang-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  transition: transform 0.2s;
}
.lang-close:hover {
  transform: scale(1.2);
  color: #00bfff;
}
@keyframes fadeLang {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hidden {
  display: none !important;
}
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  left: 30px; 
  width: 25px;
  height: 25px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.2s ease, background 0.3s ease;
  z-index: 9999;
}
.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.25);
}
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 99999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.logo img {
  height: 40px;
  max-height: 50px;
  width: auto;
  object-fit: contain;
}
.top-nav .logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #00bfff;
  margin-left: -20px;
}
nav#mainNav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
nav#mainNav ul li a {
  text-decoration: none;
  color: #eee;
  font-size: 0.9rem;
  font-weight: 700;         
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s, transform 0.2s;
}
nav#mainNav ul li a:hover {
  color: #00bfff;
  transform: scale(1.08);
}
.hamburger {
  display: none;
  position: relative;
  width: 28px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #eee;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }
.hamburger.open span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}
.hero {
  position: relative;
  overflow: hidden;
  height: 576px;
}
.hero-slider {
  position: relative;
  height: 100%;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 1;
  transition: all 1s ease;
}
.hero-slide.active {
  left: 0;
  opacity: 1;
  z-index: 1;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 9998;
  max-width: 90%;
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 200px;
}
.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.hero-text p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero-text .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #00bfff;
  color: #000;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}
.slider-dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  z-index: 9999;
}
.slider-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 6px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.slider-dot.active {
  background: #00bfff;
}
.announcement {
  position: relative;
  background: #222;
  color: #ffcc00;
  padding: 1.2rem 2rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  border-top: 1px solid #ffcc00;
  border-bottom: 1px solid #ffcc00;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  animation: fadeInDown 0.6s ease;
}
.announcement strong {
  color: #ffd633;
}
.announcement .brand {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}
.close-announcement {
  position: absolute;
  top: 12px;
  right: 18px;
  background: transparent;
  border: none;
  color: #ffcc00;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}
.close-announcement:hover {
  color: #fff;
  transform: rotate(90deg) scale(1.2);
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.announcement-content {
  max-height: 80px;
  overflow: hidden;
  transition: max-height 0.6s ease;
}
.announcement-content.expanded {
  max-height: 500px;
}
.expand-toggle {
  margin-top: 8px;
  cursor: pointer;
  color: #ffcc00;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}
.expand-toggle:hover {
  color: #fff;
}
.toggle-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.announcement-content.expanded + .expand-toggle .toggle-arrow {
  transform: rotate(180deg);
}
.section {
  padding: 3rem 1.5rem;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.section.visible {
  opacity: 1;
  transform: translateY(0);
}
.section h2 {
  text-align: center;
  font-size: 1.8rem;   
  font-weight: 600;   
  letter-spacing: 0.8px;
  text-transform: uppercase; 
  margin-bottom: 2.5rem;
  color: #00bfff;     
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-grid div {
  background-color: #1c1c1c;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.feature-grid div.visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-grid h3 {
  color: #00bfff;
  margin-bottom: 0.5rem;
}
.feature-grid p {
  font-size: 1rem;
}
.card-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.card, .faq-card {
  background-color: #1c1c1c;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.card.visible, .faq-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.card strong, .faq-card strong {
  color: #00bfff;
}
.faq-card p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #ccc;
}
.footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
  color: #ccc;
  padding: 60px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-top: 2px solid #00bfff30;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}
.footer-left,
.footer-center,
.footer-right {
  flex: 1 1 280px;
}
.footer-left h3 {
  color: #00bfff;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.footer-left p {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: #bbb;
}
.footer-left a {
  color: #00bfff;
  text-decoration: none;
}
.footer-left a:hover {
  text-decoration: underline;
}
.footer-center h4,
.footer-right h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 12px;
}
.footer-center ul {
  list-style: none;
  padding: 0;
}
.footer-center ul li {
  margin-bottom: 6px;
}
.footer-center ul li a {
  text-decoration: none;
  color: #bbb;
  transition: color 0.3s;
}
.footer-center ul li a:hover {
  color: #00bfff;
}
.payments {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.payments img {
  width: 42px;
  height: auto;
  opacity: 0.85;
  transition: transform 0.3s, opacity 0.3s;
  filter: grayscale(100%);
}
.payments img:hover {
  transform: scale(1.1);
  opacity: 1;
  filter: none;
}
.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  padding-top: 15px;
  margin-top: 25px;
  font-size: 0.85rem;
  color: #666;
}
.footer-bottom a {
  color: #00bfff;
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    cursor: pointer;
  }
  nav#mainNav {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 1rem;
    z-index: 999;
  }
  nav#mainNav.active {
    display: flex;
  }
  nav#mainNav ul {
    flex-direction: column;
    gap: 1rem;
    padding-left: 0;
  }
  nav#mainNav ul li {
    text-align: center;
  }
  .top-nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .hero {
    height: 400px;
  }
  .hero-text {
    margin-top: 120px;
    max-width: 92%;
  }
  .hero-text h1 {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .hero-text p {
    font-size: 1rem;
    line-height: 1.4;
  }
  .hero-text .btn {
    font-size: 1rem;
    padding: 0.65rem 1.4rem;
  }
  .section {
    padding: 2rem 1rem;
  }
  .section h2 {
    font-size: 1.5rem;
  }
  .section p {
    font-size: 0.95rem;
  }
  .btn {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }
  .logo img {
    height: 36px;
  }
    .footer {
    padding: 40px 15px 20px;
    text-align: center;
    font-size: 0.9rem;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .footer-left,
  .footer-center,
  .footer-right {
    flex: unset;
    width: 100%;
    text-align: center;
  }
  .footer-left h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }
  .footer-left p {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
  .footer-center h4,
  .footer-right h4 {
    margin-top: 10px;
    font-size: 1rem;
  }
  .footer-center ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 15px;
    margin-top: 5px;
  }
  .footer-center ul li {
    margin-bottom: 0;
  }
  .payments {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
  }
  .payments img {
    width: 38px;
    height: auto;
  }
  .footer-bottom {
    font-size: 0.8rem;
    padding-top: 12px;
    margin-top: 15px;
    color: #888;
  } 
   .lang-popup-content {
    width: 92%;
    max-width: 340px;
    padding: 20px 15px 25px;
  }
  .lang-popup-content h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  .lang-grid {
    grid-template-columns: repeat(auto-fit, minmax(85px, 1fr));
    gap: 10px;
  }
  .lang-item img {
    width: 26px;
    height: 18px;
  }
  .lang-item span {
    font-size: 0.8rem;
  }
  .lang-close {
    top: 8px;
    right: 10px;
    font-size: 1.2rem;
  }
}

.feature-gallery {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
}

.feature-gallery.hidden {
  display: none;
}

.feature-gallery img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

.gallery-nav {
  position: absolute;
  bottom: 70px;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.gallery-nav button,
.gallery-close {
  width: 60px;
  height: 60px;
  font-size: 28px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-nav button:hover,
.gallery-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

#video-section {
  padding: 60px 20px;
}

.video-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.video-text {
  flex: 1 1 400px;
  max-width: 600px;
}

.video-text h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.video-text p {
  font-size: 1.1em;
  color: #ccc;
  line-height: 1.6;
}

.video-frame {
  flex: 1 1 500px;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.legal-popup {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  backdrop-filter: blur(8px);
  transition: opacity 0.4s ease;
}

.legal-popup.hidden {
  display: none;
}

.legal-content {
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  max-width: 480px;
  width: 88%;
  padding: 30px 24px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  text-align: left;
  line-height: 1.6;
  animation: popupFadeIn 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transform: translateY(0);
}

.legal-content h2 {
  font-size: 1.6em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: #0b0b0b;
}

.legal-content p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 8px;
}

.legal-content ul {
  margin: 14px 0;
  padding-left: 22px;
}

.legal-content ul li {
  margin-bottom: 7px;
  font-size: 0.9rem;
}

.legal-content .small-note {
  font-size: 0.85rem;
  color: #555;
  text-align: center;
  margin-top: 16px;
  line-height: 1.4;
}

.legal-accept {
  display: block;
  margin: 24px auto 0;
  background: linear-gradient(135deg, #007aff, #00a2ff);
  color: #fff;
  border: none;
  padding: 12px 0;
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 15px rgba(0, 122, 255, 0.4);
  transition: all 0.25s ease;
}

.legal-accept:hover {
  background: linear-gradient(135deg, #148eff, #00b4ff);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 122, 255, 0.5);
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 600px) {
  .legal-content {
    width: 92%;
    max-width: 320px;
    padding: 16px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    font-size: 0.9rem;
  }

  .legal-content h2 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    text-align: center;
  }

  .legal-content p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
    text-align: justify;
  }

  .legal-content ul {
    padding-left: 18px;
    margin-bottom: 12px;
  }

  .legal-content ul li {
    font-size: 0.85rem;
    margin-bottom: 6px;
    line-height: 1.4;
  }

  .legal-accept {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 10px;
    background: linear-gradient(90deg, #00bfff, #007bff);
    color: white;
    text-align: center;
    border: none;
  }
}

