* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}


html {
  overflow-x: hidden;
}

body {
  font-family: merri-400;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%);
  color: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

input,
textarea {
  border: none;
  outline: none;
}

@font-face {
  font-family: merri-400;
  src: url(/assets/fonts/Merriweather_120pt-Regular.ttf);
}

/* Header Styles */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.95) 0%, rgba(37, 45, 69, 0.95) 100%);
  border-bottom: 2px solid #00d4ff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

.site-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00d4ff 50%, transparent);
  opacity: 0.5;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: translateY(-2px);
}

.logo-icon {
  font-size: 38px;
  line-height: 1;
  animation: spin 3s linear infinite;
}

@keyframes spin {
  0%, 90% { transform: rotate(0deg); }
  95% { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-main {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-accent {
  color: #00d4ff;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.logo-tagline {
  font-size: 12px;
  color: #b8bcc8;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
  transform: translateY(-2px);
}

.nav-link .nav-icon {
  font-size: 16px;
  line-height: 1;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 35px;
  height: 35px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1000;
  position: relative;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: #00d4ff;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

.mobile-menu-btn:hover .hamburger-line {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: linear-gradient(135deg, #1a1f3a 0%, #252d45 100%);
  z-index: 1050;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
  padding: 25px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.3);
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-close-btn {
  background: rgba(0, 212, 255, 0.2);
  border: 1px solid #00d4ff;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #00d4ff;
  font-size: 24px;
  line-height: 1;
}

.menu-close-btn:hover {
  background: rgba(0, 212, 255, 0.3);
  transform: rotate(90deg);
}

/* Mobile Menu Body */
.mobile-menu-body {
  padding: 25px;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 100px);
}

/* Custom Scrollbar for Mobile Menu */
.mobile-menu-body::-webkit-scrollbar {
  width: 6px;
}

.mobile-menu-body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.mobile-menu-body::-webkit-scrollbar-thumb {
  background: rgba(0, 212, 255, 0.5);
  border-radius: 3px;
}

.mobile-menu-body::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 212, 255, 0.7);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-logo .logo-icon {
  font-size: 32px;
  animation: none;
  line-height: 1;
}

.mobile-logo .logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-logo .logo-main {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
}

.mobile-logo .logo-accent {
  color: #00d4ff;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.mobile-logo .logo-tagline {
  font-size: 10px;
  color: #b8bcc8;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}

/* Mobile Navigation */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: auto;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
 
  position: relative;
  overflow: hidden;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #00d4ff;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.mobile-nav-link:hover::before {
  transform: scaleY(1);
}

.mobile-nav-link:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: #00d4ff;
  transform: translateX(8px);
  color: #00d4ff !important;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.mobile-nav-link .nav-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.mobile-nav-link .nav-text {
  flex: 1;
  color: inherit;
}

.mobile-nav-link .nav-arrow {
  margin-left: auto;
  font-size: 18px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover .nav-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
  margin-top: auto;
  padding-top: 25px;
  border-top: 2px solid rgba(0, 212, 255, 0.3);
}

.trust-badges {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 20px;
  padding: 20px 15px;
  background: rgba(0, 212, 255, 0.15);
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #e0e4ea;
  font-weight: 600;
  text-align: center;
}

.trust-item span:first-child {
  font-size: 24px;
  line-height: 1;
}

.mobile-disclaimer {
  text-align: center;
  font-size: 12px;
  color: #b8bcc8;
  margin: 0;
  line-height: 1.6;
  padding: 0 10px;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-link {
    font-size: 13px;
    padding: 10px 12px;
    gap: 5px;
  }

  .nav-link .nav-icon {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .header-container {
    padding: 15px 20px;
  }

  .logo-icon {
    font-size: 32px;
  }

  .logo-main {
    font-size: 20px;
  }

  .logo-tagline {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .logo-icon {
    font-size: 28px;
  }

  .logo-main {
    font-size: 18px;
  }

  .logo-tagline {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .mobile-menu-btn {
    width: 30px;
    height: 30px;
  }

  .hamburger-line {
    height: 2.5px;
  }
}

/* footer */
footer {
  background: linear-gradient(180deg, #1a1f3a 0%, #13182d 100%);
  border-top: 2px solid #00d4ff;
}

.footer-section {
  padding: 40px 0;
  background: transparent;
}

.play-responsibly-box {
  background: linear-gradient(135deg, #2d3561 0%, #1a1f3a 100%);
  border: 2px solid #00d4ff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  margin-bottom: 25px;
  color: #b8bcc8;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.play-responsibly-box h5 {
  color: #00d4ff;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 24px;
}

.age-warning {
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.15) 0%, rgba(138, 43, 226, 0.15) 100%);
  border: 2px solid #00d4ff;
  border-radius: 12px;
  padding: 18px 25px;
  margin-bottom: 25px;

  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;

  strong {
    color: #00d4ff;
    font-size: 20px;
  }

  span {
    color: #e0e4ea;
  }
}

.disclaimer-box {
  background-color: #232b45;
  border-radius: 8px;
  padding: 25px;
  line-height: 1.6;
  margin-bottom: 35px;
  color: #b8bcc8;
  font-size: 15px;

  strong {
    color: #fff;
  }
}

.footer-links a {
  color: #00d4ff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

.footer-links a:hover {
  text-decoration: underline;
}

.logos img {
  height: 35px;
  margin: 0 12px;
  opacity: 0.85;
}

.logos img:hover {
  opacity: 1;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #00d4ff;
  color: #b8bcc8;
  font-size: 0.9rem;
  margin-top: 20px;
}