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

body, html {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(to bottom, #1e272e, #485460);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

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

header h1 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #ff9f43;
}

header p {
  font-size: 1.2rem;
  color: #a4b0be;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ff6f61;
}

.card p {
  font-size: 1rem;
  color: #dfe4ea;
}

.data-list {
  list-style: none;
  padding: 0;
}

.data-list li {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.data-list li:hover {
  background: rgba(255, 255, 255, 0.1);
}

img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

button {
  background-color: #ff9f43;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #e68a00;
  transform: scale(1.1);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

table th, table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

table th {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  .container {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1200px) {
  .container {
    grid-template-columns: repeat(3, 1fr);
  }
}

