
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  width: 100%;
  display: flex;
  justify-content: center; /* Center content */
  align-items: center;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header .left-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

header img.logo {
  width:128px;
  height: 128px;
  margin-right: 20px;
}

.site-title {
  font-size: 24px;
  font-weight: bold;
}

.youtube-icon {
  width: 64px;
  height: 64px;
}

/* Content Box Styles */
.content-box {
  display: flex;
  width: 90%;
  max-width: 400px;
  margin: 20px 0;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  padding: 10px;
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
}

.content-box img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  margin-right: 20px;
  border-radius: 6px;
}

.content-inner {
  width: 100%;
  text-align: center;
}


.content-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
}

.content-description {
  margin: 0;
  text-align: left;
}

.content-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.content-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1px;
  text-align: left;
}



.content-text {
  flex: 1;
}



/* Footer Styles */
.footer-links {
  margin-top: 20px;
  font-size: 14px;
}

.footer-links a {
  color: #0077cc;
  text-decoration: none;
}

.footer {
  margin-top: 40px;
  padding: 20px;
  font-size: 14px;
  color: #777;
  text-align: center;
}

/* Privacy Policy Section */
#privacy-policy {
  display: none;
  width: 90%;
  max-width: 800px;
  margin-top: 20px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  padding: 15px;
  border-radius: 8px;
  text-align: left;
}

.original-size {
  width: 400px;
  height: 720px;
  max-width: none;
  max-height: none;
}

.condensed-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  font-size: 14px;
  justify-items: start;
}

.content-title a {
  color: inherit;
  text-decoration: none;
}

 