/* ========================================
   CYBER+ WEBSITE STYLES
   Dark Cyber / Hacker Theme
======================================== */

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
header {
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.4);
}

header h1 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

header nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  opacity: 0.85;
}

header nav a:hover {
  opacity: 1;
}

/* Hero Section */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
}

.hero h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  min-height: 50px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 15px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: #00e5ff;
  color: #000;
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 229, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #00e5ff;
}

.btn-secondary:hover {
  background: #00e5ff;
  color: #000;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 600px) {
  .hero h2 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
