/* General Reset */
body, h1, h2, h3, p, div, footer {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: linear-gradient(to bottom, #006a4e, #ba0000); /* National flag-inspired gradient */
  color: #ffffff;
  padding: 20px;
  text-align: center;
}

/* Header Styles */
header {
  background: rgba(0, 106, 78, 0.9); /* Green color with opacity */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

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

/* Main Section */
main {
  margin: 20px auto;
  max-width: 900px;
}

#radio-stations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  background: #ffffff;
  color: #333;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 15px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.card h3 {
  margin-bottom: 10px;
  color: #006a4e; /* Green */
}

.card p {
  margin-bottom: 15px;
}

.card button {
  display: inline-block;
  padding: 10px 15px;
  background: #ba0000; /* Red */
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.card button:hover {
  background: #900000; /* Darker red */
}

/* Footer Styles */
footer {
  margin-top: 20px;
  background: rgba(186, 0, 0, 0.9); /* Red with opacity */
  padding: 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

footer .disclaimer {
  margin-bottom: 10px;
}

footer a {
  color: #ffffff;
  text-decoration: underline;
}

footer a:hover {
  color: #ffffff;
}

footer p {
  margin: 5px 0;
}
