* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
body {
  background: #0a0a0f;
  color: #fff;
  cursor: none;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #0a0a0f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 100;
}
header .left {
  display: flex;
  align-items: center;
  gap: 14px;
}
header img {
  height: 38px;
  width: auto;
}
header h1 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
}
header p {
  font-size: 0.9rem;
  color: #aaa;
  margin-top: -3px;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-right a {
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
  transition: .3s;
}
.header-right a:hover {
  color: #4a6cff;
}
.header-right .account {
  color: #4a6cff;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid #4a6cff;
  padding: 8px 16px;
  border-radius: 30px;
  transition: .3s;
}
.header-right .account:hover {
  background: #4a6cff;
  color: #fff;
  transform: scale(1.05);
}

.hero {
  margin-top: 120px;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.hero-text {
  max-width: 600px;
}
.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
}
.hero-text p {
  margin-top: 20px;
  color: #ccc;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
.hero-buttons a {
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  transition: .3s;
}
.hero-buttons a:first-child {
  background: #4a6cff;
  color: #fff;
}
.hero-buttons a:first-child:hover {
  background: #3c59d3;
  transform: scale(1.05);
}
.hero-buttons a:last-child {
  border: 1px solid #4a6cff;
  color: #4a6cff;
}
.hero-buttons a:last-child:hover {
  background: #4a6cff;
  color: #fff;
  transform: scale(1.05);
}

.hero-image {
  width: 350px;
  height: auto;
  display: flex;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.products {
  margin-top: 120px;
  padding: 60px;
  text-align: center;
}
.products h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}
.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.product {
  background: #11131a;
  border-radius: 20px;
  padding: 30px;
  width: 320px;
  transition: .3s;
  border: 1px solid transparent;
}
.product:hover {
  border-color: #4a6cff;
  transform: translateY(-6px);
}
.product img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 20px;
}
.product h3 {
  margin-bottom: 10px;
}
.product p {
  color: #bbb;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.product a {
  display: inline-block;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 30px;
  background: #4a6cff;
  color: #fff;
  font-size: 0.9rem;
  transition: .3s;
}
.product a:hover {
  background: #3c59d3;
  transform: scale(1.05);
}

footer {
  background: #0a0a0f;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 40px 0;
  text-align: center;
  color: #777;
  font-size: 0.9rem;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease;
  z-index: 9999;
}