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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-image: url('https://t3.ftcdn.net/jpg/02/81/00/28/360_F_281002825_X7I4lUe8g3QDwfSMSa88R9Fgfd5jbDjz.jpg');
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-color: #fdf6e3;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 300px; /* bottom padding makes room for image */
  color: #333;
  position: relative;
}


/* Heading */
h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #1a1a1a;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

/* Members Container */
.members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1000px;
  padding: 0 10px;
}

/* Base Card Styling */
.card {
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease;
  color: #fff;
}

.card:hover {
  transform: translateY(-4px);
}

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

/* Individual Member Colors */
.card.arnab {
  background: #9cd3ff; /* Light Blue */
  color: #07375f;
}

.card.azam {
  background: #ffc8c8; /* Light Coral */
  color: #6f1d1b;
}

.card.prantik {
  background: #c6f6d5; /* Mint Green */
  color: #22543d;
}

.card.rial {
  background: #f7d794; /* Soft Yellow */
  color: #5c4100;
}

/* Offence Count */
.offence-count {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Add Offence Button */
.card button {
  padding: 10px 18px;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: inherit;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  font-weight: 600;
}

.card button:hover {
  background-color: white;
  transform: scale(1.05);
}

/* Message Area */
.message {
  margin-top: 30px;
  padding: 12px 20px;
  font-size: 1.1rem;
  background-color: #e6ffe6;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  max-width: 600px;
  text-align: center;
  display: none;
}

.message.active {
  display: block;
}
