/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #0e0e10;
  color: #e4e4e4;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Background Video */
#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Dark Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 15, 0.6);
  z-index: -1;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(7, 7, 15, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
}

.logo {
  font-weight: 600;
  color: #00aaff;
}

.navbar nav a {
  margin-left: 20px;
  color: #ddd;
  text-decoration: none;
  transition: color 0.2s ease;
}

.navbar nav a:hover {
  color: #00aaff;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero-content {
  max-width: 600px;
}

.hero h2 {
  font-size: 2.8rem;
  color: #fff;
}

.hero p {
  margin: 1rem 0 2rem;
  color: #ccc;
}

.hero button {
  background: #00aaff;
  border: none;
  color: #fff;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.hero button:hover {
  background: #0088cc;
}

/* Sections */
.section {
  padding: 6rem 2rem;
  text-align: center;
  background: rgba(0,0,0,0.2);
}

.section.light {
  background: rgba(255, 255, 255, 0.05);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: rgba(20, 20, 25, 0.8);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Footer */
.footer {
  background: rgba(10, 10, 15, 0.9);
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

/* Copy feedback */
.copy-message {
  opacity: 0;
  margin-left: 10px;
  color: #00ffaa;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.copy-message.show {
  opacity: 1;
}

/* Backround video */
#bgGif {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('background.gif') no-repeat center center/cover;
    z-index: -1;
}