* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(to bottom, #ffffff, #737373);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #0a0a0a 100%);
  background-size: 400% 400%;
  animation: gradient-shift 15s ease infinite;
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.6);
  }
}

/* Header */
.header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 20px;
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  padding: 0 16px;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.logo {
  text-decoration: none;
  color: #f7f8f8;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-text {
  background: linear-gradient(135deg, #ffffff 0%, #a78bfa 50%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-desktop {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 510;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-icon {
  color: #ffffff;
  transition: transform 0.3s, color 0.3s;
}

.social-icon:hover {
  transform: translateY(-2px);
  color: #a78bfa;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 20px 40px;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 1300px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
  animation: fadeInUp 0.8s ease-out;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 24px;
  animation: glow 2s ease-in-out infinite;
  transition: all 0.3s;
}

.badge:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.badge-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-title span {
  background: linear-gradient(to bottom, #ffffff, #737373);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-right: 8px;
}

.hero-highlight {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 900;
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-line {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
  overflow: hidden;
  position: relative;
}

.btn-primary:hover,
.btn-line:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-icon {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-divider {
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
}

.btn-primary span:not(.btn-divider),
.btn-line span:not(.btn-divider) {
  padding: 0 16px;
}

.btn-line {
  background: rgba(0, 185, 0, 0.1);
  border-color: rgba(0, 185, 0, 0.3);
}

.line-icon {
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-visual {
  width: 300px;
  height: 300px;
  position: relative;
}

.orbit-canvas {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 40px rgba(167, 139, 250, 0.3));
}

/* User Counter */
.user-counter {
  margin-top: 60px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  position: relative;
  animation: glow 2s ease-in-out infinite;
}

.counter-text {
  font-size: 1.125rem;
  font-weight: 500;
  background: linear-gradient(to bottom, #ffffff, #737373);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.counter-number {
  font-weight: 700;
  color: #a78bfa;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

/* Products Section */
.products {
  padding: 80px 20px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.product-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(10px);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 1;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.product-card-large {
  grid-column: span 2;
  min-height: 400px;
}

.product-icon {
  color: #a78bfa;
  margin-bottom: 8px;
  animation: float 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.product-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(to bottom, #ffffff, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.product-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.6;
  flex: 1;
  position: relative;
  z-index: 2;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a78bfa;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
  margin-top: auto;
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.product-link:hover {
  gap: 12px;
  color: #ffffff;
}

.product-link svg {
  transition: transform 0.3s;
}

.product-link:hover svg {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .product-card-large {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 12px;
  }
  
  .social-links {
    display: none;
  }
  
  .hero {
    padding: 80px 20px 40px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .badge {
    font-size: 0.75rem;
  }
  
  .btn-primary span:not(.btn-divider),
  .btn-line span:not(.btn-divider) {
    padding: 0 12px;
  }
}
/* ========================================
   Protect Page Styles
   ======================================== */

/* Protect Header */
.protect-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  height: 60px;
}

.protect-header-container {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.protect-logo {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
}

.protect-logo-text {
  background: linear-gradient(135deg, #ffffff 0%, #a78bfa 50%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.protect-nav {
  display: flex;
  gap: 24px;
}

.protect-nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.protect-nav-link:hover {
  color: #ffffff;
}

.protect-social-icon {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

.protect-social-icon:hover {
  color: #a78bfa;
}

/* Protect Layout */
.protect-layout {
  display: flex;
  min-height: 100vh;
  padding-top: 60px;
}

/* Mobile Header */
.protect-mobile-header {
  display: none;
  position: sticky;
  top: 60px;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
}

.protect-menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.3s;
}

.protect-menu-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

/* Sidebar */
.protect-sidebar {
  width: 280px;
  position: sticky;
  top: 60px;
  height: calc(100vh - 60px);
  overflow-y: auto;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 10, 0.5);
  padding: 32px 0;
}

.protect-sidebar-nav {
  padding: 0 24px;
}

.protect-sidebar-section {
  margin-bottom: 32px;
}

.protect-sidebar-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.protect-sidebar-list {
  list-style: none;
}

.protect-sidebar-list li {
  margin-bottom: 4px;
}

.protect-sidebar-link {
  display: block;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  border-radius: 6px;
  transition: all 0.3s;
}

.protect-sidebar-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
}

/* Main Content */
.protect-main {
  flex: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
  width: 100%;
}

.protect-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.protect-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(to bottom, #ffffff, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.protect-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #ffffff;
}

.protect-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 16px;
}

.protect-content code {
  background: rgba(102, 126, 234, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.875rem;
  color: #a78bfa;
}

.protect-content a {
  color: #a78bfa;
  text-decoration: none;
  transition: color 0.3s;
}

.protect-content a:hover {
  color: #ffffff;
}

.protect-content ol,
.protect-content ul {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-left: 24px;
  margin-bottom: 16px;
}

.protect-content li {
  margin-bottom: 8px;
}

.protect-warning {
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 8px;
  padding: 16px;
  margin: 24px 0;
}

.protect-warning strong {
  display: block;
  color: #fbbf24;
  font-weight: 700;
  margin-bottom: 8px;
}

.protect-warning p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.protect-section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.protect-section:first-of-type {
  border-top: none;
  margin-top: 24px;
}

/* Footer */
.protect-footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.protect-footer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .protect-sidebar {
    position: fixed;
    left: -280px;
    transition: left 0.3s;
    z-index: 200;
    border-right: none;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
  }

  .protect-sidebar.open {
    left: 0;
  }

  .protect-mobile-header {
    display: block;
  }

  .protect-main {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .protect-content {
    padding: 24px;
  }

  .protect-content h2 {
    font-size: 1.75rem;
  }

  .protect-content h3 {
    font-size: 1.25rem;
  }

  .protect-main {
    padding: 24px 16px;
  }
}

/* ========================================
   Simple Pages Styles
   ======================================== */

.simple-page {
  min-height: 100vh;
  padding-top: 80px;
}

.simple-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px;
}

.simple-content h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 24px;
  background: linear-gradient(to bottom, #ffffff, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.simple-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 24px;
}

.coming-soon {
  margin-top: 60px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: center;
}

.coming-soon h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #a78bfa;
  margin-bottom: 16px;
}

.coming-soon p {
  margin: 0;
}

/* Contact Page */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.contact-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s;
}

.contact-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.contact-link {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Others Page */
.others-section {
  margin-top: 40px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.others-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.others-section ul {
  list-style: none;
  padding: 0;
}

.others-section li {
  margin-bottom: 12px;
}

.others-section a {
  color: #a78bfa;
  text-decoration: none;
  transition: color 0.3s;
}

.others-section a:hover {
  color: #ffffff;
}

/* Active nav link */
.nav-link.active {
  color: #a78bfa !important;
}

@media (max-width: 768px) {
  .simple-content h1 {
    font-size: 2rem;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
  }
}

/* Protect page table styles */
.protect-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  overflow: hidden;
}

.protect-table thead {
  background: rgba(102, 126, 234, 0.1);
}

.protect-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: #a78bfa;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.protect-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.protect-table tr:last-child td {
  border-bottom: none;
}

.protect-table tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* Protect alert styles */
.protect-alert {
  padding: 16px;
  border-radius: 8px;
  margin: 24px 0;
  border-left: 4px solid;
}

.protect-alert-warning {
  background: rgba(251, 191, 36, 0.1);
  border-color: #fbbf24;
  color: #fde68a;
}

.protect-alert-danger {
  background: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
  color: #fca5a5;
}

.protect-alert-info {
  background: rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
  color: #93c5fd;
}

.protect-alert strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.protect-alert p {
  margin: 0;
  line-height: 1.6;
}

.protect-alert ul {
  margin: 8px 0 0 20px;
  line-height: 1.8;
}
