body {
  background: radial-gradient(circle at 50% 30%, #fffbe6 0%, #fdf6e3 55%, #bdbdbd 100%);
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  margin: 0;
.title-container {
  margin-bottom: 10px;
    margin-bottom: 10px;
}
.upload-form {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 32px 24px;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 280px;
  max-width: 98vw;
}
.upload-form label {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.1em;
  color: #222;
  margin-bottom: 8px;
}
.upload-form input[type="text"],
.upload-form input[type="number"] {
  font-size: 1em;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 100%;
  margin-bottom: 12px;
}
.upload-form input[type="file"] {
  font-size: 1em;
  margin-bottom: 12px;
}
.upload-form button {
  font-size: 1.2em;
  font-family: 'Permanent Marker', cursive;
  padding: 10px 24px;
  border-radius: 8px;
  border: none;
  background: #fdf6e3;
  color: #222;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
  letter-spacing: 1px;
}
.upload-form button:hover {
  background: #ffe082;
}
.burger {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 100;
  width: 54px;
  height: 54px;
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s;
}
.burger:active {
  background: #fff;
  box-shadow: none;
  outline: none;
}
.burger-icon {
  width: 32px;
  height: 32px;
  display: block;
}
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(16px);
  z-index: 99;
  display: none;
  align-items: center;
  justify-content: center;
  transition: backdrop-filter 0.3s;
}
.menu-overlay.active {
  display: flex;
}
.menu-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 220px;
  align-items: center;
}
.menu-content button {
  font-size: 1.2em;
  font-family: 'Permanent Marker', cursive;
  padding: 10px 24px;
  border-radius: 8px;
  border: none;
  background: #fdf6e3;
  color: #222;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
  letter-spacing: 1px;
}
.menu-content button:hover {
  background: #ffe082;
}
.menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2em;
  color: #888;
  cursor: pointer;
}
}
.polaroid-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  padding: 0 8px 40px 8px;
}
.polaroid {
  background: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  padding: 18px 18px 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  max-width: 700px;
  width: auto;
  box-sizing: border-box;
}
.polaroid img {
  display: block;
  max-width: 600px;
  width: 100%;
  height: auto;
  object-fit: contain;
  box-sizing: border-box;
  border: 6px solid white;
  border-bottom: 28px solid white;
  border-radius: 8px 8px 0 0;
}
.id-date {
  z-index: 1;
  background: transparent;
  overflow: visible;
  position: relative;
  font-weight: bold;
  color: #222;
  font-size: 1em;
  margin-top: -10px;
  margin-bottom: 6px;
  text-align: center;
  font-family: 'Permanent Marker', cursive;
  letter-spacing: 0.5px;
  display: inline-block;
  background: none;
  border-radius: 0;
  line-height: 1;
  padding: 0 0.3em;
}
.title {
  position: relative;
  font-size: 1.3em;
  font-family: 'Permanent Marker', cursive;
  color: #222;
  text-align: center;
  margin-bottom: 0;
  letter-spacing: 1px;
  z-index: 1;
  display: inline-block;
  background: none;
  border-radius: 0;
  line-height: 1;
  padding: 0 0.3em;
}

.title-line {
  position: relative;
  font-family: 'Permanent Marker', cursive;
  font-size: 1.1em;
  margin-bottom: 2px;
  padding: 0 4px;
  z-index: 1;
  display: inline-block;
  text-align: left;
  }
  .title-line:last-child {
    margin-bottom: 18px;
}
.title-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-40%) rotate(-1deg);
  width: calc(100% + 24px);
  height: 1.1em;
  background: var(--marker-color, #ffe082);
  border-radius: 0.4em 0.6em 0.5em 0.3em;
  filter: blur(1.5px);
  z-index: -1;
}
@media (max-width: 500px) {
  .polaroid {
    padding: 8px;
    max-width: 90vw;
  }
  .polaroid img {
    max-height: 90vw;
  }
}
