/* css/view.css */
body {
  background: #0d0d0d;
  color: #f0f0f0;
  font-family: 'Segoe UI', sans-serif;
  padding: 20px;
}

h1 {
  text-align: center;
  color: #ff007f;
  font-size: 32px;
  margin-bottom: 30px;
}

.content {
  white-space: normal !important;
  text-indent: 0;
  line-height: 1.2;
  padding: 20px;
  background: #1a1a1a;
  border-radius: 8px;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  font-family: sans-serif;
}


a {
  color: #4fd;
  text-decoration: underline;
}


.questions{

    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
}

.solved{

    text-decoration: none;
    color: rgb(255, 0, 0);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}

.solved:hover{
    color: white;

}
.password{
    color: white;
    font-size: 20px;
}

.password2 {
  cursor: pointer;
  color: red;
  font-weight: bold;
  transition: all 0.2s ease;
}
.password2:hover {
  color: #fcfcfc;
  text-shadow: 0 0 5px rgba(30,144,255,0.6);
  transform: scale(1.05);
}

#copiedMessage {
  display: none;
  color: limegreen;
  font-weight: bold;
  margin-left: 10px;
  transition: opacity 0.3s ease;
}
#copiedMessage.visible {
  display: inline;
  opacity: 1;
}

.ad-container {
    width: 100%;
    max-width: 728px;
    margin: 10px auto;
    text-align: center;
}

@media (max-width: 768px) {
    .ad-container iframe {
        width: 100% !important;
        height: auto !important;
    }
}