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

body {
  background: linear-gradient(135deg, #0ff1ce, #4f46e5);
  color: white;
  min-height: 100vh;
  padding-bottom: 50px;
}

header {
  background: #1a1a2e;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

header h1 {
  font-size: 28px;
  color: #00f0ff;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 25px;
  padding: 8px 16px;
  background: #00c6ff;
  border-radius: 6px;
  transition: background 0.3s ease;
}

nav a:hover {
  background: #009edc;
}

.hero, .content {
  text-align: center;
  padding: 80px 20px;
}

.hero h2, .content h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero p, .content p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 20px;
}

.buttons a, .big-button {
  display: inline-block;
  background: #f72585;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  margin: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.buttons a:hover, .big-button:hover {
  background: #c81d6f;
}

ul.events {
  list-style: none;
  padding-top: 20px;
  font-size: 18px;
}

.product-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.product {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 12px;
  width: 250px;
  text-align: left;
}
