/* --- Βασικά --- */
*,
*::before,
*::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f2f2f2;
}

.container {
  max-width: 400px;
  margin: 30px auto;
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
}

.logo-title {
  max-width: 95%;
  height: auto;
  margin-bottom: 15px;
}

/* --- Περιοχή ξυσίματος --- */
#scratch-area { position: relative; width: 100%; height: auto; }
#scratch-area img { width: 100%; border-radius: 10px; }
#scratch-canvas { position: absolute; top: 0; left: 0; border-radius: 10px; }

/* --- Email + Συμμετοχή --- */
form {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

input[type="email"] {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}
input[type="email"]:focus { border: 1px solid #ccc; }

button {
  padding: 10px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  background: #066d52;
  color: white;
  cursor: pointer;
}

/* --- Κείμενο αποτελέσματος --- */
#result {
  margin: 10px 0;
  font-weight: bold;
  color: #066d52;
}

/* --- Κουμπιά μετά το παιχνίδι --- */
#after-play-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
#after-play-buttons button {
  white-space: nowrap;
  width: 100%;
}

/* --- Σειρά κουμπιών --- */
#info-buttons {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 12px;
}
#info-buttons button {
  flex: 1;
  background: transparent;
  color: #444;
  border: 1px solid #999;
  font-size: 13px;
  padding: 6px;
  height: 34px;
  border-radius: 6px;
  white-space: nowrap;
}

/* --- Modals --- */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}
.modal-content {
  background-color: white;
  margin: 30px auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  overflow-y: auto;
  max-height: 90vh;
  text-align: left;
}
.modal-content h2, .modal-content h3 { margin-top: 0; }
.close {
  float: left;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  margin-right: 8px;
}

/* --- Video / Κείμενα --- */
.modal-content video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin-bottom: 12px;
}
.center-title { text-align: center; }
.tight { margin-top: 6px; }
.modal-content p + p { margin-top: 10px; }

/* --- Σειρές εικονιδίων (Social / Κλήση) --- */
.icon-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;          /* να μη διπλώνουν */
  margin-top: 10px;
}
.icon-row a { flex: 1; min-width: 0; text-align: center; }
.icon-row img {
  width: 100%;
  max-width: 88px;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* --- Zo-Zer πλήρους πλάτους χωρίς δεύτερο πλαίσιο --- */
.zozer-bar {
  display: block;
  width: 100%;
  margin-top: 10px;           /* μικρότερο κενό όπως ζήτησες */
  cursor: pointer;
  border: none;
  background: none;           /* ΚΑΘΟΛΟΥ background/padding/border */
  padding: 0;
}
.zozer-bar img {
  display: block;
  width: 100%;                /* ΕΙΚΟΝΑ FULL WIDTH */
  height: auto;
  border-radius: 8px;
}

/* --- Πολύ μικρές οθόνες --- */
@media (max-width: 380px) {
  form { flex-direction: column; align-items: stretch; }
  #submit-btn { width: 100%; }
  #info-buttons { gap: 6px; }
  #info-buttons button {
    font-size: 12.5px;
    padding: 5px;
    height: 32px;
  }
  .icon-row img { max-width: 76px; }
}
