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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 800px;
  width: 100%;
}

.card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.header {
  text-align: center;
  margin-bottom: 30px;
}

.header h1 {
  color: #4a61e3;
  font-size: 2.5em;
  margin-bottom: 10px;
}

.event-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 30px;
  border-radius: 15px;
  margin: 20px 0;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.event-box h2 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.event-date {
  font-size: 2em;
  font-weight: bold;
  margin: 15px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.info-box {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
  border-left: 4px solid #667eea;
}

.content {
  line-height: 1.6;
  color: #333;
}

.content h2 {
  color: #4a61e3;
  margin-top: 20px;
  margin-bottom: 10px;
}

.content h3 {
  color: #764ba2;
  margin-top: 15px;
  margin-bottom: 8px;
}

.content ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.content li {
  margin: 8px 0;
}

.content a {
  color: #4a61e3;
  text-decoration: none;
  font-weight: bold;
}

.content a:hover {
  text-decoration: underline;
}

.footer {
  text-align: center;
  color: white;
  margin-top: 20px;
  font-size: 0.9em;
}

.statement {
  font-style: italic;
  margin: 1em;
}

@media (max-width: 600px) {
  .card {
    padding: 20px;
    border-radius: 15px;
  }

  .header h1 {
    font-size: 2em;
  }

  .event-date {
    font-size: 1.5em;
  }
}
