
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rubik', sans-serif;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  line-height: 1.6;
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffff66;
}

.hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  flex-wrap: wrap;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.subtitle {
  font-size: 1.4rem;
  margin-bottom: 30px;
  color: #ddd;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.features span {
  background: rgba(255,255,255,0.1);
  padding: 10px 15px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  background: #4bfff5;
  color: #000;
  padding: 15px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #3ae2da;
}

.hero-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.announcement {
  text-align: center;
  background: #222;
  padding: 15px;
  margin: 40px 0;
  font-size: 1.2rem;
  border-top: 2px solid #4bfff5;
  border-bottom: 2px solid #4bfff5;
}

.info-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 40px;
}

.box {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 20px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s;
}

.box:hover {
  transform: translateY(-10px);
}

.box i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffff66;
}

footer {
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,0.4);
  margin-top: 40px;
}
