body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f0f2f5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #333;
}

.container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  text-align: center;
}

header {
  background-color: #000000;
  padding: 20px;
}

.logo {
  width: 150px;
}

main {
  padding: 30px;
}

.file-info h1 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #2a80d0;
}

.filename {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.filesize {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.download-button {
  background-color: #2a80d0;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.download-button:hover {
  background-color: #1e6bb8;
}

.warning {
  font-size: 14px;
  color: #888;
  margin-top: 15px;
}

.ads-section {
    background-color: #e9ebee;
    padding: 20px;
    margin-top: 30px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ads-section img {
    max-width: 100%;
    height: auto;
    display: block; /* Removes extra space below image */
}

footer {
  background-color: #f0f2f5;
  padding: 15px;
  font-size: 12px;
  color: #777;
  border-top: 1px solid #eee;
}
