  body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0A0A0A;
  position: relative;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: hidden;
}

/* Dynamic gradient background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(51, 94, 247, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 199, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(51, 94, 247, 0.1) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

/* Ensure content stays above the overlay */
header, main, footer, .product-card {
  position: relative;
  z-index: 0;
}

/* Enhanced feature cards with new style */
.feature-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(51, 94, 247, 0.1);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  flex: 0 0 416px;
  padding: 1.8rem 1.6rem;
  color: #e0f7ff;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  width: 416px;
  height: 193px;
  box-sizing: border-box;
  margin: 0;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  pointer-events: none;
  border-radius: inherit;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border-color: rgba(51, 94, 247, 0.2);
}

.feature-card h2 {
  margin-top: 0;
  font-weight: 700;
  font-size: 1.6rem;
  color: #335EF7;
}

.feature-card i {
  font-size: 2.5rem;
  color: #335EF7;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #e0f7ff;
  margin: 0;
  line-height: 1.6;
}

/* Header styling */
header {
  text-align: center;
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(51, 94, 247, 0.1);
}

/* Header animation initial states */
.header-left {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.header-right {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.nav-button {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

/* Page title animation initial state */
.page-title {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.8s cubic-bezier(0.4,0,0.2,1);
}

/* Product cards animation initial state */
.product-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Breadcrumb animation initial state */
.breadcrumb-nav {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.buttons {
  position: relative;
  z-index: 2;
  background: rgba(30,34,44,0.35);
}

/* Hero section */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero img {
  max-width: 250px;
  height: auto;
  margin: 0;
}

@keyframes gradientFlow {
  0% {
    background-position: 200% 50%;
  }
  100% {
    background-position: -200% 50%;
  }
}

.hero h1 {
  font-size: 3.5rem;
  margin: 0;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #335EF7 20%,
    #00c7ff 40%,
    #335EF7 60%,
    #ffffff 80%,
    #ffffff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 6s linear infinite;
  text-shadow: 0 2px 10px rgba(0, 199, 255, 0.2);
}

.hero .tagline {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.features-header {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.feature-item {
  position: relative;
  padding: 1rem 2rem;
  background: rgba(51, 94, 247, 0.05);
  border: 1px solid rgba(51, 94, 247, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(51, 94, 247, 0.1);
  transform: translateY(-2px);
}

.feature-description {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 10, 0.95);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(51, 94, 247, 0.2);
  width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  z-index: 100;
}

.feature-item:hover .feature-description {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(10px);
}

/* Dropdown menu styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(10, 10, 10, 0.95);
  min-width: 220px;
  border: 1px solid rgba(51, 94, 247, 0.2);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 100;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
  color: #ffffff;
  padding: 0.8rem 1.2rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(51, 94, 247, 0.1);
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background: rgba(51, 94, 247, 0.1);
  padding-left: 1.5rem;
}

.dropdown-content a i {
  font-size: 1.2rem;
  color: #335EF7;
}

.buttons a {
  position: relative;
  z-index: 2;
  background: rgba(51,94,247,0.18);
  overflow: hidden;
}
.buttons a::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: none !important;
  background: none !important;
  pointer-events: none;
  border-radius: inherit;
}

.buttons a:hover {
  background: rgba(51, 94, 247, 0.1);
  border-color: rgba(51, 94, 247, 0.2);
  transform: translateY(-2px);
}

/* Premium button special styling */
#premium-btn {
  background: linear-gradient(45deg, rgba(51, 94, 247, 0.1), rgba(51, 94, 247, 0.05));
  border: 1px solid rgba(51, 94, 247, 0.2);
  position: relative;
}

#premium-btn:hover {
  background: linear-gradient(45deg, rgba(51, 94, 247, 0.15), rgba(51, 94, 247, 0.1));
  border-color: rgba(51, 94, 247, 0.3);
}

.premium-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(51, 94, 247, 0.2);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  margin-top: 10px;
}

.premium-content.collapsed {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transform: translateX(-50%) translateY(-10px);
}

.premium-content.expanded {
  opacity: 1;
  visibility: visible;
  max-height: 500px;
  transform: translateX(-50%) translateY(0);
}

.premium-details {
  text-align: left;
  padding: 1.5rem;
}

.premium-details h3 {
  color: #00c7ff;
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

.premium-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.premium-details li {
  margin: 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e0f7ff;
}

.premium-details li i {
  color: #335EF7;
}

.premium-description {
  color: #a8e6ff;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 1rem 0;
}

.premium-details .premium-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(45deg, #00c7ff, #0077ff);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  margin-top: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 199, 255, 0.3);
  text-align: center;
  width: 100%;
}

.premium-details .premium-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 199, 255, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  header {
    padding: 1rem;
  }
  
  .features-header {
    flex-direction: column;
    gap: 1rem;
  }
  
  .buttons {
    flex-wrap: wrap;
  }
  
  .dropdown-content {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Update footer styles */
footer {
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 1rem 1rem 1.5rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(51, 94, 247, 0.05);
}

footer a {
  color: #00c7ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #335EF7;
}

main {
  flex-grow: 1;
  padding: 1rem 2rem 3rem;
  max-width: 960px;
  margin: 0 auto;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.feature-card p {
  margin: 0.8rem 0 0;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 2.4rem;
  }
  .features {
    flex-direction: column;
    gap: 1.4rem;
  }
  .feature-card {
    flex: 1 1 100%;
  }
  .buttons a {
    margin: 0.4rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  .premium-details ul {
    padding: 0 1rem;
  }
  
  .premium-button {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
  }
}

/* Premium Features Styles */
#premium {
  position: relative;
  grid-column: 1 / -1;
}

.premium-feature {
    position: relative;
    overflow: hidden;
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.premium-button {
    background: linear-gradient(45deg, #335EF7, #00c7ff);
    border: none;
    border-radius: 8px;
    padding: 15px 40px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    width: auto;
    min-width: 200px;
    justify-content: center;
}

.premium-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(51, 94, 247, 0.3);
}

.premium-button i {
    color: #FFD700;
}

.premium-content h3 {
    color: #335EF7;
    margin-bottom: 10px;
}

.premium-content p {
    color: #666;
    margin: 0;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(51, 94, 247, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(51, 94, 247, 0.2);
    border-color: rgba(51, 94, 247, 0.5);
}

.feature i {
    font-size: 2.5rem;
    color: #335EF7;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.feature-card#premium {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(51, 94, 247, 0.1);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    padding: 1.8rem 1.6rem;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    min-height: 80px;
}

.feature-card#premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-color: rgba(51, 94, 247, 0.2);
}

.feature-card#premium .premium-button {
    background: none;
    border: none;
    box-shadow: none;
    color: #e0f7ff;
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    padding: 0;
    margin: 0 0 0.5rem 0;
    text-align: left;
    outline: none;
}

.feature-card#premium .premium-button:focus {
    outline: none;
}

.feature-card#premium .premium-button i {
    color: #335EF7;
    font-size: 2.2rem;
    transition: transform 0.3s ease;
}

.premium-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
    background: transparent;
    border: none;
    margin: 0;
    padding: 0;
}

.feature-card#premium:hover .premium-content {
    max-height: 1000px;
    opacity: 1;
    padding: 1rem 0 0 0;
}

.premium-details {
    text-align: left;
    padding: 0 0.5rem 0.5rem 0.5rem;
}

.premium-details h3 {
    color: #00c7ff;
    margin: 0 0 1rem;
    font-size: 1.2rem;
}

.premium-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-details li {
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e0f7ff;
    transition: transform 0.3s ease;
}

.premium-details li:hover {
    transform: translateX(5px);
}

.premium-details li i {
    color: #335EF7;
}

.premium-description {
    color: #a8e6ff;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 1rem 0;
}

.premium-details .premium-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #00c7ff, #0077ff);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 199, 255, 0.3);
    text-align: center;
    width: 100%;
}

.premium-details .premium-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 199, 255, 0.5);
}

.custom-cursor-menu {
  position: fixed;
  z-index: 99999;
  min-width: 170px;
  background: #15171e;
  border-radius: 9px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.13);
  padding: 8px 0 6px 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  color: #fff;
  user-select: none;
  transition: opacity 0.18s;
  opacity: 0;
  pointer-events: auto;
  box-sizing: border-box;
}
.menu-item {
  padding: 11px 20px;
  cursor: pointer;
  font-weight: 600;
  border-radius: 7px;
  margin: 3px 6px;
  transition: background 0.16s, color 0.16s;
  color: #fff;
  background: none;
  border: none;
  letter-spacing: 0.01em;
  font-size: 15px;
}
.menu-item:hover {
  background: #23283a;
  color: #00c7ff;
}
.menu-disable {
  color: #ff4d4f;
  background: none;
  font-weight: 600;
  border-radius: 7px;
  margin-bottom: 2px;
  margin-top: 2px;
  transition: background 0.16s, color 0.16s;
  border: none;
  letter-spacing: 0.01em;
  font-size: 15px;
  padding: 11px 20px;
}
.menu-disable:hover {
  background: #23283a;
  color: #ff4d4f;
}
.menu-sep {
  height: 8px;
  border: none;
  background: transparent;
}

#blur-overlay {
  /* Removed entire block */
}

.nav-link {
  position: relative;
  overflow: hidden;
  background: rgba(51,94,247,0.18);
}
.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  pointer-events: none;
  border-radius: inherit;
}

/* Remove blur from .buttons a and its ::before if present */
.buttons a::before, .buttons a {
  backdrop-filter: none !important;
  background: none !important;
}

@media (max-width: 900px) {
  .features {
    flex-direction: column;
    align-items: center;
  }
  .feature-card {
    width: 100%;
    min-width: 0;
    height: auto;
    flex: 1 1 100%;
  }
}

.nav-spacer {
  flex: 1;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.nav-row { display: unset !important; flex-direction: unset !important; gap: unset !important; }

.nav-link {
  margin: 0 0.5rem;
}

@media (max-width: 768px) {
  .nav-container {
    display: none !important;
  }
  .hero .logo-container {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .nav-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  .nav-link {
    margin: 0.25rem 0;
    width: auto;
    justify-content: center;
  }
  .nav-spacer {
    display: none;
  }
  .nav-container > a[href*="discord"] {
    order: -1;
    margin-bottom: 0.5rem;
    width: auto;
    align-self: center;
  }
  .nav-row {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
    width: 100%;
  }
  .nav-row .nav-link {
    width: 48%;
    margin: 0;
  }
}

/* Universal blurred background for all buttons and button-like links */
button, .nav-link, .bot-button, .nav-button, .home-button, .premium-button, .copy-button, .feature-card button, .feature-card a.button {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
/* Removed universal blur effect to prevent temporary overlay during page load */

/* Restore specific blur effects for buttons and cards */
.buttons a::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: none !important;
  background: none !important;
  pointer-events: none;
  border-radius: inherit;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  pointer-events: none;
  border-radius: inherit;
}

.bot-button::before, .nav-button::before, .home-button::before, .premium-button::before, .copy-button::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  pointer-events: none;
  border-radius: inherit;
  transition: background 0.3s;
}

.feature-card button::before, .feature-card a.button::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  pointer-events: none;
  border-radius: inherit;
  transition: background 0.3s;
}

/* Make all text uncopiable by default */
* {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Allow text selection for input, textarea, and contenteditable */
input, textarea, [contenteditable="true"] {
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}

/* Header layout for mobile and desktop */
.mobile-header-layout { display: none; }
.desktop-header-layout { display: flex; gap: 2rem; justify-content: center; align-items: center; }

@media (max-width: 768px) {
  .desktop-header-layout { display: none !important; }
  .mobile-header-layout { display: block; width: 100%; }
  .mobile-header-divider {
    width: 100vw;
    height: 1px;
    background: rgba(51, 94, 247, 0.15);
    margin: 0 -16px 0 -16px;
  }
  .mobile-server-row {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.4rem 0 0.2rem 0;
  }
  .mobile-server-link {
    font-size: 1.08rem;
    font-weight: 600;
    padding: 0.35rem 1.2rem;
    width: auto;
    max-width: 90vw;
    border-radius: 8px;
    background: rgba(51,94,247,0.07);
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    text-align: center;
    display: inline-block;
  }
  .mobile-products-bots-row {
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 2.2rem 0.7rem 2.2rem;
    box-sizing: border-box;
  }
  .mobile-products-link, .mobile-bots-link {
    font-size: 1.08rem;
    font-weight: 500;
    padding: 0.5rem 0.7rem;
    flex: 0 0 auto;
    text-align: center;
    min-width: 90px;
    border-radius: 6px;
  }
}

/* --- Restored Classic Product Card Layout --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 474px);
  gap: 7rem;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
  background: transparent !important;
}
.product-card {
  width: 474px !important;
  min-height: 206px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(51, 94, 247, 0.1);
  border-radius: 12px;
  padding: 2rem;
  color: #ffffff;
  transition: all 0.3s ease;
  text-decoration: none;
}
@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 100vw;
  }
  .product-card {
    width: 100%;
    min-width: 0;
  }
}

.product-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  justify-content: center;
  background: transparent !important;
}

.product-section > .product-title {
  grid-column: 1 / -1;
  margin-bottom: 0.5rem;
  margin-top: 2rem;
  font-size: 1.3rem;
  color: #00c7ff;
  text-align: center;
}

.product-section > .product-title:first-child {
  margin-top: 0;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
  }
}

@media (min-width: 1200px) {
  .product-section {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1400px;
  }
}

@media (max-width: 767px) {
  .product-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
  }
  
  .product-section > .product-title {
    grid-column: 1;
    text-align: center;
  }
}

.product-card {
  width: 474px !important;
  min-height: 206px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(51, 94, 247, 0.1);
  border-radius: 12px;
  padding: 2rem;
  color: #ffffff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(51, 94, 247, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

@media (max-width: 700px) {
  .product-card {
    width: 100%;
    min-height: 200px;
    padding: 1.5rem;
  }
}

/* Contact Form Styles */
.contact-section {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(51, 94, 247, 0.1);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.contact-title {
  text-align: center;
  font-size: 2.5rem;
  color: #335EF7;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: #e0f7ff;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(51, 94, 247, 0.2);
  border-radius: 8px;
  padding: 1rem;
  color: #e0f7ff;
  font-size: 1rem;
  transition: all 0.3s ease;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #335EF7;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(51, 94, 247, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.submit-btn {
  background: linear-gradient(45deg, #335EF7, #00c7ff);
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(51, 94, 247, 0.3);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-status.show {
  opacity: 1;
}

.form-status.success {
  background: rgba(46, 213, 115, 0.1);
  border: 1px solid rgba(46, 213, 115, 0.3);
  color: #2ed573;
}

.form-status.error {
  background: rgba(255, 77, 79, 0.1);
  border: 1px solid rgba(255, 77, 79, 0.3);
  color: #ff4d4f;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 2rem 1rem;
  }
  
  .contact-container {
    padding: 2rem;
  }
  
  .contact-title {
    font-size: 2rem;
  }
}

/* Chat Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
}

.chat-widget-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(24, 31, 47, 0.92);
    border: 1.5px solid rgba(51, 94, 247, 0.13);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    position: relative;
    transition: background 0.25s, transform 0.3s, border-color 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-widget-button:hover {
    background: rgba(36, 44, 66, 1);
    border-color: rgba(51, 94, 247, 0.22);
    transform: scale(1.07);
}

.chat-widget-button.active {
    transform: scale(0.95);
}

.chat-widget-notification {
    position: absolute;
    top: -40px;
    right: 0;
    background: #fff;
    padding: 8px 12px;
    border-radius: 16px;
    font-size: 14px;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    animation: showNotification 3s ease-in-out;
    animation-delay: 1s;
}

@keyframes showNotification {
    0%, 100% { opacity: 0; transform: translateY(10px); }
    10%, 90% { opacity: 1; transform: translateY(0); }
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: rgba(24, 31, 47, 0.95);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    display: none;
    flex-direction: column;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(51, 94, 247, 0.1);
}

.chat-header {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(51, 94, 247, 0.1);
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-info {
    flex: 1;
}

.chat-name {
    font-weight: 600;
    color: #e0f7ff;
    font-size: 16px;
}

.chat-status {
    color: #4CAF50;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.chat-status::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
}

.chat-close {
    background: none;
    border: none;
    color: #e0f7ff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* Custom scrollbar styles */
    scrollbar-width: thin;
    scrollbar-color: rgba(51, 94, 247, 0.3) transparent;
}

/* Webkit scrollbar styles for Chrome/Safari/Edge */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(51, 94, 247, 0.3);
    border-radius: 3px;
    transition: background 0.2s ease;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(51, 94, 247, 0.5);
}

.chat-messages::-webkit-scrollbar-thumb:active {
    background: rgba(51, 94, 247, 0.7);
}

.chat-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
    animation: messageAppear 0.4s ease-out;
    position: relative;
    word-wrap: break-word;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@keyframes messageAppear {
    from { 
        opacity: 0; 
        transform: translateY(8px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

.bot-message {
    background: linear-gradient(135deg, rgba(51, 94, 247, 0.08), rgba(0, 199, 255, 0.08));
    color: #e0f7ff;
    border-radius: 18px 18px 18px 6px;
    align-self: flex-start;
    border: 1px solid rgba(51, 94, 247, 0.15);
    margin-bottom: 4px;
}

.user-message {
    background: linear-gradient(135deg, rgba(51, 94, 247, 0.42), rgba(0, 199, 255, 0.42));
    color: #e0f7ff;
    border-radius: 18px 18px 6px 18px;
    align-self: flex-end;
    margin-bottom: 4px;
    box-shadow: 0 2px 8px rgba(51, 94, 247, 0.13);
    border: 1px solid rgba(51, 94, 247, 0.10);
}

.chat-suggestions {
    padding: 8px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chat-suggestion {
    background: rgba(51, 94, 247, 0.1);
    border: 1px solid rgba(51, 94, 247, 0.2);
    color: #e0f7ff;
    padding: 8px 12px;
    border-radius: 16px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.chat-suggestion:hover {
    background: rgba(51, 94, 247, 0.2);
    border-color: rgba(51, 94, 247, 0.3);
    transform: translateY(-1px);
}

.chat-input {
    padding: 16px;
    display: flex;
    gap: 8px;
    border-top: 1px solid rgba(51, 94, 247, 0.1);
}

.chat-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(51, 94, 247, 0.1);
    border-radius: 24px;
    padding: 8px 16px;
    color: #e0f7ff;
    font-size: 14px;
}

.chat-input input:focus {
    outline: none;
    border-color: rgba(51, 94, 247, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.chat-send {
    background: linear-gradient(45deg, #335EF7, #00c7ff);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.chat-send:hover {
    transform: scale(1.05);
}

.typing-message {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 4px;
    animation: messageAppear 0.4s ease-out;
    align-self: flex-start;
    max-width: 85%;
}

.typing-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(51, 94, 247, 0.2);
}

.typing-bubble {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(51, 94, 247, 0.08), rgba(0, 199, 255, 0.08));
    border-radius: 18px 18px 18px 6px;
    border: 1px solid rgba(51, 94, 247, 0.15);
    min-width: 80px;
}

.typing-text {
    color: #e0f7ff;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
}

.typing-dots {
    display: flex;
    gap: 3px;
    align-items: center;
}

.typing-dots span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #e0f7ff;
    animation: typing 1.4s infinite ease-in-out;
    opacity: 0.7;
}

.typing-dots span:nth-child(1) { animation-delay: 0s; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    30% { 
        transform: translateY(-6px) scale(1.1);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .chat-window {
        width: calc(100vw - 40px);
        height: calc(100vh - 100px);
        bottom: 70px;
    }
    
    .chat-widget-button {
        width: 50px;
        height: 50px;
    }
    
    .chat-widget-avatar {
        width: 30px;
        height: 30px;
    }
}

.chat-widget-icon {
    width: 32px;
    height: 32px;
    display: block;
}

.message-anim {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
    animation: messageFadeIn 0.4s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes messageFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.open-anim {
    animation: chatOpenAnim 0.4s cubic-bezier(0.4,0,0.2,1);
}

@keyframes chatOpenAnim {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(40px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.close-anim {
    animation: chatCloseAnim 0.3s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes chatCloseAnim {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    to {
        opacity: 0;
        transform: scale(0.85) translateY(40px);
    }
}

.chat-discord-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 18px;
    background: linear-gradient(45deg, #5865F2, #00c7ff);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(51,94,247,0.12);
    transition: background 0.2s, transform 0.2s;
}

.chat-discord-btn:hover {
    background: linear-gradient(45deg, #4752c4, #00b3e6);
    transform: translateY(-2px) scale(1.04);
}

/* Remove .chat-widget-avatar if not needed */
.chat-widget-avatar { display: none !important; }

.chat-support-form {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-support-form .form-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chat-support-form input,
.chat-support-form textarea {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(51,94,247,0.13);
    border-radius: 8px;
    padding: 8px 12px;
    color: #e0f7ff;
    font-size: 14px;
    resize: none;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s, background 0.2s;
}

.chat-support-form input:focus,
.chat-support-form textarea:focus {
    outline: none;
    border-color: #335EF7;
    background: rgba(255,255,255,0.13);
}

.chat-support-form textarea {
    min-height: 60px;
    max-height: 120px;
}

.chat-support-form button.chat-send {
    margin-top: 4px;
    width: 100%;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 0;
    background: linear-gradient(45deg, #335EF7, #00c7ff);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.chat-support-form button.chat-send:hover {
    background: linear-gradient(45deg, #2d53d6, #00b3e6);
    transform: translateY(-1px) scale(1.03);
}

/* Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #335EF7, #00c7ff);
  z-index: 9999;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  box-shadow: 0 2px 8px rgba(51, 94, 247, 0.3);
}

.scroll-progress-bar.show {
  opacity: 1;
  transform: translateY(0);
}

.scroll-progress-bar.animate {
  transition: width 0.1s ease-out;
}

/* Updated Contact Modal Styles to match site theme */
.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 20, 40, 0.55); /* lighter, bluish overlay */
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.contact-modal-content {
  background: linear-gradient(135deg, rgba(51, 94, 247, 0.13) 0%, rgba(0, 199, 255, 0.13) 100%);
  border: 1.5px solid rgba(51, 94, 247, 0.25);
  border-radius: 16px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(51, 94, 247, 0.18), 0 1.5px 8px rgba(0, 199, 255, 0.10);
  transform: scale(0.97) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), background 0.3s;
  color: #e0f7ff;
}

.contact-modal.show .contact-modal-content {
  transform: scale(1) translateY(0);
}

.contact-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(51, 94, 247, 0.15);
}

.contact-modal-header h3 {
  color: #00c7ff;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.contact-modal-close {
  background: none;
  border: none;
  color: #00c7ff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-modal-close:hover {
  color: #fff;
  background: rgba(0, 199, 255, 0.18);
}

.contact-modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-modal-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-modal-form label {
  color: #00c7ff;
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-modal-form input,
.contact-modal-form textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(51, 94, 247, 0.18);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: #e0f7ff;
  font-size: 0.97rem;
  transition: border 0.2s, box-shadow 0.2s, background 0.2s;
}

.contact-modal-form input:focus,
.contact-modal-form textarea:focus {
  outline: none;
  border-color: #00c7ff;
  background: rgba(0, 199, 255, 0.13);
  box-shadow: 0 0 0 2px rgba(0, 199, 255, 0.13);
}

.contact-modal-form input::placeholder,
.contact-modal-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.contact-modal-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-submit-btn {
  background: linear-gradient(90deg, #335EF7 0%, #00c7ff 100%);
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 199, 255, 0.10);
}

.contact-submit-btn:hover {
  background: linear-gradient(90deg, #00c7ff 0%, #335EF7 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 25px rgba(51, 94, 247, 0.18);
}

.contact-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-loading {
  display: none;
}

.contact-submit-btn.loading .btn-text {
  display: none;
}

.contact-submit-btn.loading .btn-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .contact-modal-content {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .contact-modal-header h3 {
    font-size: 1.3rem;
  }
}

/* Custom Scrollbar Styles */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #335EF7, #00c7ff);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #00c7ff, #335EF7);
  box-shadow: 0 0 8px rgba(0, 199, 255, 0.3);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #0077ff, #335EF7);
}

::-webkit-scrollbar-corner {
  background: rgba(0, 0, 0, 0.1);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #335EF7 rgba(0, 0, 0, 0.1);
}

/* Custom scrollbar for specific elements */
.contact-modal-content::-webkit-scrollbar {
  width: 6px;
}

.contact-modal-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.contact-modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00c7ff, #335EF7);
  border-radius: 3px;
}

.contact-modal-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #335EF7, #00c7ff);
}

/* Chat messages scrollbar */
.chat-messages::-webkit-scrollbar {
  width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 2px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(51, 94, 247, 0.6), rgba(0, 199, 255, 0.6));
  border-radius: 2px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(0, 199, 255, 0.8), rgba(51, 94, 247, 0.8));
}

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar for code blocks or other content areas */
pre::-webkit-scrollbar,
code::-webkit-scrollbar {
  height: 6px;
}

pre::-webkit-scrollbar-track,
code::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

pre::-webkit-scrollbar-thumb,
code::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #335EF7, #00c7ff);
  border-radius: 3px;
}

pre::-webkit-scrollbar-thumb:hover,
code::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #00c7ff, #335EF7);
}

.copy-button {
  background: none;
  border: none;
  color: #00c7ff;
  cursor: pointer;
  padding: 0 2px;
  font-size: 0.9em;
  transition: color 0.3s ease;
  vertical-align: middle;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.copy-button i {
  vertical-align: middle;
  font-size: 1em;
  margin-bottom: 0;
  margin-left: 0;
  position: relative;
  top: -2px;
}

.copy-button, .footer-contact-btn {
  background: none;
  border: none;
  color: #00c7ff;
  cursor: pointer;
  padding: 0 5px;
  font-size: 0.9em;
  transition: color 0.3s ease;
  vertical-align: middle;
  box-shadow: none;
  margin-left: 0.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  height: 1.2em;
  position: relative;
  top: 2px;
}

.copy-button i,
.footer-contact-btn i {
  vertical-align: middle;
  font-size: 1em;
  margin-bottom: 0;
  margin-left: 2px;
  position: relative;
  top: 0;
  display: inline-block;
}

.copy-message {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(51, 94, 247, 0.9);
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.9em;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1000;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.copy-message.show {
  opacity: 1;
}

/* --- Responsive Breakpoints for All Devices --- */
@media (max-width: 320px) {
  .feature-card, .product-card { width: 100% !important; min-width: 0 !important; padding: 0.8rem 0.4rem !important; font-size: 0.85rem; }
  .breadcrumb-container { flex-direction: column; gap: 0.1rem; padding: 0.4rem 0.2rem; }
  .breadcrumb-item span, .breadcrumb-current { font-size: 0.8rem; }
  .page-title { font-size: 1.1rem; }
}
@media (max-width: 375px) {
  .feature-card, .product-card { width: 100% !important; min-width: 0 !important; padding: 1rem 0.5rem !important; font-size: 0.9rem; }
  .breadcrumb-container { flex-direction: column; gap: 0.2rem; padding: 0.5rem 0.3rem; }
  .breadcrumb-item span, .breadcrumb-current { font-size: 0.85rem; }
  .page-title { font-size: 1.3rem; }
}
@media (max-width: 480px) {
  .feature-card, .product-card { width: 100% !important; min-width: 0 !important; padding: 1.2rem 0.7rem !important; font-size: 1rem; }
  .breadcrumb-container { flex-direction: column; gap: 0.3rem; padding: 0.6rem 0.4rem; }
  .breadcrumb-item span, .breadcrumb-current { font-size: 0.95rem; }
  .page-title { font-size: 1.5rem; }
  .header-currency-switcher { right: 1rem !important; top: 1rem !important; }
}
@media (max-width: 576px) {
  .feature-card, .product-card { width: 100% !important; min-width: 0 !important; padding: 1.3rem 0.8rem !important; font-size: 1.05rem; }
  .breadcrumb-container { flex-direction: column; gap: 0.3rem; padding: 0.7rem 0.5rem; }
  .breadcrumb-item span, .breadcrumb-current { font-size: 1rem; }
  .page-title { font-size: 1.7rem; }
}
@media (max-width: 768px) {
  .feature-card, .product-card { 
    width: 100% !important; 
    max-width: 350px !important;
    min-width: 0 !important; 
    padding: 1.4rem 1rem !important; 
    font-size: 1.08rem; 
    margin: 0 auto !important;
  }
  .breadcrumb-container { flex-wrap: wrap; gap: 0.3rem; padding: 0.8rem 1rem; }
  .breadcrumb-item span, .breadcrumb-current { font-size: 1rem; }
  .page-title { font-size: 2rem; }
}
@media (max-width: 992px) {
  .feature-card, .product-card { width: 100% !important; min-width: 0 !important; }
  .breadcrumb-container { gap: 0.4rem; }
}
@media (max-width: 1024px) {
  .feature-card, .product-card { width: 100% !important; min-width: 0 !important; }
}
@media (max-width: 1200px) {
  .feature-card, .product-card { width: 100% !important; min-width: 0 !important; }
}
@media (max-width: 1440px) {
  .feature-card, .product-card { width: 100% !important; min-width: 0 !important; }
}
@media (max-width: 1920px) {
  .feature-card, .product-card { width: 100% !important; min-width: 0 !important; }
}

/* --- Mobile Hamburger Menu Placeholder --- */
@media (max-width: 768px) {
  .mobile-header-layout {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 0.5rem 1rem;
    position: relative;
    z-index: 3002;
    background: transparent;
    min-height: 56px;
  }
  .mobile-menu-btn {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px;
    height: 44px;
  }
  .mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background: #335EF7;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    margin: 4px 0;
    position: relative;
    left: 0;
    top: 0;
    transform: none;
  }
  .mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(11px) rotate(45deg) scaleX(1.5);
  }
  .mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.5);
  }
  .mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg) scaleX(1.5);
  }
  .mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 80vw;
    max-width: 320px;
    height: 100vh;
    background: rgba(20, 22, 34, 0.98) !important;
    border-right: 1.5px solid rgba(51,94,247,0.13);
    box-shadow: 4px 0 32px 0 rgba(0,0,0,0.32);
    backdrop-filter: blur(0.5px);
    z-index: 4000;
    flex-direction: column;
    padding: 2rem 1.2rem;
    gap: 1.2rem;
    transform: translateX(-100%);
    transition: transform 0.55s cubic-bezier(.23,1,.32,1), box-shadow 0.3s;
    display: flex !important;
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-nav-drawer.open {
    transform: translateX(0);
    /* No display property here! */
  }
  .mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.35);
    z-index: 3999;
    transition: opacity 0.2s;
    opacity: 0;
  }
  .mobile-nav-overlay.open {
    display: block;
    opacity: 1;
  }
  .mobile-nav-link, .mobile-currency-switcher {
    font-size: 1.1rem;
    color: #e0f7ff;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(51,94,247,0.08);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }
  .mobile-currency-switcher { border-bottom: none; }
}

@media (max-width: 768px) {
  header {
    min-height: 48px !important;
    height: 48px !important;
    padding: 0 !important;
    border-bottom: none !important;
    background: transparent !important;
    box-shadow: none !important;
    display: block !important;
    position: relative !important;
  }
  .mobile-header-layout {
    min-height: 48px !important;
    height: 48px !important;
    padding: 0 !important;
    align-items: flex-start !important;
    justify-content: flex-end !important;
    background: transparent !important;
    width: 100% !important;
    display: flex !important;
  }
  .mobile-menu-btn {
    margin: 6px 8px 0 0 !important;
    top: 4px !important;
    right: 4px !important;
    left: auto !important;
    position: fixed !important;
  }
}

@media (max-width: 768px) {
  header *:not(.mobile-header-layout):not(.mobile-menu-btn):not(.mobile-menu-btn span):not(.mobile-nav-drawer):not(.mobile-nav-overlay) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
  }
}

@media (max-width: 768px) {
  header .nav-container,
  header .desktop-header-layout,
  .header-currency-switcher {
    display: none !important;
  }
  
  /* Mobile hero styles */
  .hero {
    padding: 2rem 1rem !important;
    text-align: center !important;
    display: block !important;
  }
  
  .hero .logo-container {
    width: 160px !important;
    height: 160px !important;
    margin: 0 auto 1rem auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .hero .logo-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
  }
  
  .hero-title {
    font-size: 2rem !important;
    margin: 1rem 0 !important;
    display: block !important;
  }
  
  .tagline {
    font-size: 1rem !important;
    margin: 0.5rem 0 2rem 0 !important;
    display: block !important;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    background: rgba(51,94,247,0.08) !important;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s;
  }
  .mobile-menu-btn:active,
  .mobile-menu-btn.open {
    background: rgba(51,94,247,0.18) !important;
  }
}

@media (max-width: 768px) {
  .mobile-nav-drawer {
    background: rgba(15, 18, 28, 0.98) !important;
    border-right: 2px solid rgba(51,94,247,0.2);
    box-shadow: 4px 0 32px 0 rgba(0,0,0,0.4);
    backdrop-filter: blur(0.5px);
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 3rem 1.5rem !important;
    gap: 1.5rem !important;
  }
  .mobile-nav-link, .mobile-currency-switcher {
    color: #e0f7ff !important;
    font-weight: 600;
    font-size: 1.15rem;
    border-bottom: 1px solid rgba(51,94,247,0.12);
    background: transparent;
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
    width: 100% !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .mobile-nav-link:hover, .mobile-currency-switcher:hover {
    background: rgba(51,94,247,0.15);
    color: #fff !important;
    transform: translateX(4px);
    box-shadow: 0 0 15px rgba(51,94,247,0.2);
  }
  .mobile-nav-link i, .mobile-currency-switcher i {
    color: #3ecfff;
    font-size: 1.3em;
    margin-right: 0.8rem;
  }
  .mobile-nav-link:hover i, .mobile-currency-switcher:hover i {
    color: #fff;
  }
  /* Mobile currency switcher modern dark style */
  .mobile-currency-switcher .currency-switcher {
    width: 100%;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  .mobile-currency-switcher .currency-btn {
    width: 100%;
    max-width: 280px;
    background: transparent;
    color: #e0f7ff;
    border: none;
    border-radius: 0;
    padding: 0.8rem 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    outline: none;
    position: relative;
    cursor: pointer;
  }
  .mobile-currency-switcher .currency-btn:hover,
  .mobile-currency-switcher .currency-btn:focus {
    background: transparent;
    color: #e0f7ff;
  }
  .mobile-currency-switcher .currency-btn i {
    color: #3ecfff;
    font-size: 1.2em;
  }
  .mobile-currency-switcher .currency-btn:hover i {
    color: #3ecfff;
  }
  .mobile-currency-switcher .currency-dropdown {
    width: 100%;
    max-width: 280px;
    background: rgba(25,30,45,0.98);
    border: 1px solid rgba(51,94,247,0.2);
    border-radius: 8px;
    margin-top: 8px;
    padding: 0.5rem 0;
    z-index: 4100;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
  }
  .mobile-currency-switcher .currency-dropdown.show {
    display: block;
  }
  .mobile-currency-switcher .currency-option {
    color: #e0f7ff;
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
  }
  .mobile-currency-switcher .currency-option.active,
  .mobile-currency-switcher .currency-option:hover {
    background: rgba(51,94,247,0.1);
    color: #fff;
  }
  .mobile-currency-switcher .currency-option i {
    color: #3ecfff;
    font-size: 1.1em;
  }
  .mobile-currency-switcher .currency-option.active i,
  .mobile-currency-switcher .currency-option:hover i {
    color: #fff;
  }
}

@media (max-width: 768px) {
  .mobile-header-logo {
    display: inline-block !important;
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-left: 8px;
    margin-right: 8px;
    vertical-align: middle;
  }
}
@media (min-width: 769px) {
  .mobile-header-logo {
    display: none !important;
  }
}

/* Unified Currency Switcher Styles */
.currency-switcher {
  position: relative !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10001 !important;
}

.currency-btn {
  background: rgba(51, 94, 247, 0.1);
  border: 1px solid rgba(51, 94, 247, 0.2);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  color: #e0f7ff;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow: visible !important;
  z-index: 1000 !important;
  opacity: 0;
  transform: translateY(-15px);
  transition: all 0.5s ease;
}

.currency-btn:hover {
  background: rgba(51, 94, 247, 0.2);
  border-color: rgba(51, 94, 247, 0.3);
  transform: translateY(-1px);
}

.currency-btn i {
  color: #335EF7;
  font-size: 0.8rem;
}

.currency-dropdown {
  position: absolute !important;
  top: 100%;
  right: 0;
  background: rgba(24, 31, 47, 0.95);
  border: 1px solid rgba(51, 94, 247, 0.2);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10002 !important;
  pointer-events: auto;
  margin-top: 0.5rem;
}

.currency-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.currency-option {
  padding: 0.5rem 1rem;
  color: #e0f7ff;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: auto;
  position: relative;
  z-index: 1;
  user-select: none;
  background: none;
}

.currency-option:hover {
  background: rgba(51, 94, 247, 0.1);
}

.currency-option.active {
  background: rgba(51, 94, 247, 0.2);
  color: #00c7ff;
}

.currency-option i {
  color: #335EF7;
  font-size: 0.8rem;
}
