:root {
  --background: #050b1f;
  --surface: #0d1b3e;
  --primary: #ffffff;
  --secondary: #00ffff;
  --accent: #ff00ff;
  --text: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --header-height: 80px;
}

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

body {
  font-family: 'Rajdhani', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

header {
  background: linear-gradient(to right, rgba(13, 27, 62, 0.9), rgba(5, 11, 31, 0.9));
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--secondary);
}

.button {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  color: var(--background);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

main {
  padding-top: var(--header-height);
  position: relative;
}

section {
  padding: 100px 0;
  position: relative;
}

h1, h2, h3 {
  margin-bottom: 20px;
}

h1 {
  font-size: 4rem;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
}

h3 {
  font-size: 1.8rem;
  color: var(--secondary);
}

p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.particles-network {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(135deg, var(--background) 0%, var(--surface) 100%);
}

.particles-network canvas {
  display: block;
}

.section-content {
  background: linear-gradient(135deg, rgba(13, 27, 62, 0.8) 0%, rgba(5, 11, 31, 0.8) 100%);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.feature-grid, .stats-grid, .workflow-grid, .tech-grid, .value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-item, .stat-item, .workflow-item, .tech-item, .value-item {
  background: linear-gradient(135deg, rgba(13, 27, 62, 0.5) 0%, rgba(5, 11, 31, 0.5) 100%);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover, .stat-item:hover, .workflow-item:hover, .tech-item:hover, .value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
  border-color: var(--secondary);
}

.feature-icon, .stat-icon, .workflow-icon, .tech-icon, .value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--secondary);
}

.cta-section {
  background: linear-gradient(45deg, var(--surface), var(--background));
  text-align: center;
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

footer {
  background-color: var(--surface);
  color: var(--text);
  padding: 40px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

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

.footer-links {
  display: flex;
  list-style: none;
}

.footer-links li {
  margin: 0 15px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary);
}

.socials a {
  color: var(--text);
  font-size: 1.5rem;
  margin-left: 20px;
  transition: color 0.3s ease;
}

.socials a:hover {
  color: var(--secondary);
}

.distribution {
  margin-top: 20px;
  font-size: 0.9rem;
}

.distribution a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.distribution a:hover {
  color: var(--accent);
}

.highlight {
  color: var(--secondary);
  font-weight: bold;
  font-size: 1.2em;
  margin: 20px 0;
}

.threat-list {
  list-style-type: none;
  padding-left: 0;
}

.threat-list li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.threat-list li::before {
  content: "\f071";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--secondary);
}

@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-links {
    margin-top: 20px;
  }

  .socials {
    margin-top: 20px;
  }

  .feature-grid, .stats-grid, .workflow-grid, .tech-grid, .value-grid {
    grid-template-columns: 1fr;
  }
}

/* Login page styles */
.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--header-height));
    padding: 20px;
    text-align: center;
}

.login-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.login-message {
    font-size: 1.2rem;
    color: var(--secondary);
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(13, 27, 62, 0.7);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.1);
}

