body {
  background: url('./Assets/Images/forest.png');
  background-size: fill;
}

.container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 3fr 3fr 3fr;
  grid-auto-columns: 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
      "Bank Title Title Items"
      "Bank News News Items"
      "Bank Stats Stats Items"
      "Bank Bitcoin Bitcoin Items"
      "Bank Bitcoin Bitcoin Items"
      "Options Options Options Items";
}

.Title {
  grid-area: Title;
  color: rgb(33, 58, 66);
  font-family: 'Times New Roman', Times, serif;
  text-align: center;
  font-size: 30px;
  text-transform: uppercase; /* Added for emphasis */
  letter-spacing: 2px; /* Space between letters */
}

.News {
  grid-area: News;
  color: rgb(85, 85, 85);
  border: lightgray 4px;
  border-style: groove;
  background-color: rgb(177, 174, 174);
  font-size: 18px; /* Slightly reduced for readability */
  font-family: Arial, sans-serif; /* Modern and clean font */
}

.Stats {
  grid-area: Stats;
  text-align: center;
  vertical-align: middle;
  border: fill;
  background-color: gray;
  word-spacing: 5px;
  font-family: 'Times New Roman', Times, serif;
  text-shadow: 0.5px 2px black;
  color: white;
  font-size: 35px; /* Adjusted for better visibility */
  opacity: 90%;
  justify-items: center;
}

.Items {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 0px 0px;
  max-height: 100vh;
  grid-auto-flow: row;
  overflow: scroll;
  grid-template-areas:
      "."
      "."
      "."
      "."
      "."
      "."
      ".";
  grid-area: Items;
  border: solid 2px red;
}

.Bitcoin {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
      ".";
  grid-area: Bitcoin;
  border: none;
}

.Bank {
  grid-area: Bank;
}
.Achievements {
  margin-top: 10px; /* Add some space above the box */
  padding: 5px; 
  border: 1px solid #ccc;
  border-radius: 8px; /* Rounded corners for aesthetics */
  background-color: rgba(245, 245, 245, 0.9); /* Light background */
  width: 90%; /* Slightly smaller width compared to the parent container */
  max-height: 120px; /* Reduce height to make the box smaller */
  overflow-y: auto; /* Enable scrolling if content exceeds height */
  font-size: 12px; /* Reduce font size for a compact look */
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow for better design */
}

.Achievements h3 {
  margin: 0 0 5px 0; /* Reduce spacing around the heading */
  font-size: 13px; /* Slightly smaller heading size */
  text-align: center;
  color: #333;
}

#achievementList {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#achievementList li {
  padding: 3px 5px; /* Compact padding for list items */
  margin: 2px 0; /* Reduce spacing between items */
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
  color: #555;
  font-size: 12px; /* Smaller font size for compactness */
}

#achievementList li.unlocked {
  background-color: #4CAF50;
  color: white;
  font-weight: bold;
}
.Options {
  grid-area: Options;
  padding-bottom: 20vh;
}

#bitcoin {
  border: none;
  background: url(./Assets/Images/IllSharpCod-max-1mb.gif);
  background-size: 50%;
  background-repeat: no-repeat;
  height: 25vh;
  width: 25vw;
  margin-left: 35%;
}

#bitcoin:active {
  transform: translateY(10px);
}

/* Input Box Styling */
input[type="button"] {
  display: block;
  margin: 10px auto;
  padding: 10px 20px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  border: 2px solid #4CAF50;
  border-radius: 10px;
  background-color: #f0f0f0;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

input[type="button"]:hover {
  background-color: #4CAF50;
  color: #fff;
  transform: scale(1.05);
}

input[type="button"]:active {
  background-color: #45a049;
  transform: scale(0.98);
}
