/* Balanced Dark Theme with Visual Interest */

body {
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f3a 25%, #2d1b69 75%, #0a0e1a 100%);
  min-height: 100vh;
  color: #e8e8e8;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.06;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="%23a0a0a0"/><rect x="15" y="15" width="30" height="30" rx="4" stroke="%23a0a0a0" stroke-width="0.5" fill="none"/></svg>');
  background-size: 100px 100px, 120px 120px, 80px 80px;
  background-repeat: repeat;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.main-content {
  background: linear-gradient(145deg, #1a1f3a 0%, #2d1b69 50%, #1a1f3a 100%);
  border-radius: 20px;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 3rem;
  margin: 2rem auto;
  max-width: 800px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.main-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 20px;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
  pointer-events: none;
}

.main-content::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(120, 119, 198, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: #f0f0f0;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

h1 {
  font-size: 2.6rem;
  color: #e8e8e8;
  background: linear-gradient(135deg, #e8e8e8 0%, #a0c8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-bottom: 2px solid rgba(160, 200, 240, 0.4);
  padding-bottom: 0.75rem;
  position: relative;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #a0c8f0, #7877c6, transparent);
}

h2 {
  font-size: 2rem;
  color: #d0d0d0;
  border-left: 4px solid #7877c6;
  padding-left: 1.2rem;
  position: relative;
}

h2::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #7877c6, #a0c8f0);
}

h3 {
  font-size: 1.6rem;
  color: #a0c8f0;
  text-shadow: 0 0 10px rgba(160, 200, 240, 0.3);
}

h4, h5, h6 {
  color: #b0b0b0;
}

/* Links */
a {
  color: #a0c8f0;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  position: relative;
}

a:hover {
  color: #7877c6;
  border-bottom-color: rgba(120, 119, 198, 0.6);
  text-shadow: 0 0 8px rgba(120, 119, 198, 0.4);
}

/* Navigation */
nav {
  background: linear-gradient(180deg, #1a1f3a 0%, #0a0e1a 100%);
  border-bottom: 1px solid rgba(160, 200, 240, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  font-size: 1.7rem;
  font-weight: 700;
  background: linear-gradient(135deg, #e8e8e8 0%, #a0c8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: #c0c0c0;
  font-weight: 500;
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #a0c8f0, #7877c6);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: #a0c8f0;
  transform: translateY(-1px);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(145deg, #1a1f3a 0%, #2d1b69 100%);
  border: 1px solid rgba(160, 200, 240, 0.2);
  border-radius: 15px;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  backdrop-filter: blur(15px);
}

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

.dropdown-menu li {
  border-bottom: 1px solid rgba(160, 200, 240, 0.1);
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  padding: 1.2rem 1.8rem;
  display: block;
  color: #c0c0c0;
  font-weight: 400;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background: linear-gradient(90deg, rgba(160, 200, 240, 0.1), transparent);
  color: #a0c8f0;
  padding-left: 2.2rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #a0c8f0;
  margin: 6px 0;
  transition: 0.3s;
  border-radius: 1px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(145deg, #1a1f3a 0%, #2d1b69 100%);
  border-top: 1px solid rgba(160, 200, 240, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu li {
  border-bottom: 1px solid rgba(160, 200, 240, 0.1);
}

.mobile-menu a {
  padding: 1.3rem 20px;
  display: block;
  color: #c0c0c0;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  background: rgba(160, 200, 240, 0.1);
  color: #a0c8f0;
}

.mobile-dropdown-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 1.3rem 20px;
  text-align: left;
  color: #c0c0c0;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.mobile-dropdown {
  background: rgba(0, 0, 0, 0.3);
  display: none;
}

.mobile-dropdown.active {
  display: block;
}

.mobile-dropdown a {
  padding-left: 40px;
}

/* Content Styling */
p {
  margin-bottom: 1.3rem;
  line-height: 1.7;
  color: #d0d0d0;
}

ul, ol {
  margin-bottom: 1.3rem;
  padding-left: 2rem;
}

ul li, ol li {
  margin-bottom: 0.7rem;
  line-height: 1.6;
  color: #d0d0d0;
}

ul li::marker {
  color: #7877c6;
}

/* Trust Badges - Updated for SVG images */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  font-size: 0.9rem;
  color: #e8e8e8;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-width: 140px;
  text-align: center;
}

.trust-badge::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; right: 0; bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(0, 255, 136, 0.4);
  color: #e8e8e8;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 12px 35px rgba(0, 255, 136, 0.25),
    0 0 0 1px rgba(0, 255, 136, 0.3);
}

.trust-badge:hover::before {
  left: 100%;
}

.trust-badge img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  z-index: 2;
  position: relative;
  transition: all 0.3s ease;
}

.trust-badge:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 12px rgba(0, 255, 136, 0.3));
}

.trust-badge-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e8e8e8;
  z-index: 2;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
  background: linear-gradient(180deg, #0a0e1a 0%, #1a1f3a 100%);
  color: #c0c0c0;
  padding: 3.5rem 0 2.5rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(160, 200, 240, 0.2);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.4);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

footer a {
  color: #a0c8f0;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #7877c6;
  text-shadow: 0 0 8px rgba(120, 119, 198, 0.4);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.hidden { display: none; }
.block { display: block; }

.rounded { border-radius: 6px; }
.shadow { box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-container {
    height: 60px;
  }
  
  .nav-logo {
    font-size: 1.5rem;
  }
  
  .main-content {
    margin: 1rem;
    padding: 2.5rem;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.4rem;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .trust-badge {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .main-content {
    margin: 0.5rem;
    padding: 2rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
} 