/*
Theme Name: Bexonix Theme
Author: Rick
Version: 1.0
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background: #0d0d0d;
  color: white;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
  position: sticky;
  top: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

.logo {
  color: #00f0ff;
}

.hero {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #00f0ff, #6a00ff);
  text-align: center;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #1a1a1a;
  padding: 40px;
  border-radius: 10px;
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #00f0ff, #6a00ff);
}
