* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  overflow-y: scroll;
}
body::-webkit-scrollbar {
  width: 6px;
}
body::-webkit-scrollbar-track {
  background: #ccc;
}
body::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 3px;
}
.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}
header {
  text-align: center;
  position: relative;
}
.header-menu {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 10px;
}
.header-menu button {
  width: 32px;
  height: 32px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.header-menu button:hover {
  background: #1b1c1d;
}
.header-menu button img {
  width: 16px;
  height: 16px;
  transition: filter 0.3s;
}
.header-menu button:hover img {
  filter: brightness(0) invert(1);
}
.wallet.loading {
  pointer-events: none;
  position: relative;
}

.wallet.loading img {
  opacity: 0;
}

.wallet.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  border: 2px solid #1b1c1d;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
}
.tag {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 3px 12px;
  border-radius: 20px;
  margin-top: 4px;
  font-size: 0.85rem;
  cursor: default;
}
.tag * {
  cursor: default;
}
.tag .tag-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tag .emoji img {
  height: 14px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}
section {
  padding-right:5px;
  padding-left:5px;
  padding-top: 5px;
}
.tag .handle {
  font-size: 0.85rem;
  color: #fff;
}
.header-user-info {
  transition: opacity 0.3s ease, height 0.3s ease, margin 0.3s ease;
  opacity: 1;
  height: auto;
  margin-top: 4px;
}
.hidden {
  display: none;
}
.header-user-info.hidden {
  opacity: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}
.full-name {
  margin-top: 2px;
  font-size: 1rem;
}
.description {
  margin: 2px 50px;
  line-height: 1.4;
  font-size: 1rem;
}
.social-icons {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #f0f0f0;
  border-radius: 20px;
  padding: 4px 6px;
  margin: 6px auto;
}
.social-icons a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: background-color 0.3s ease;
}
.social-icons a:hover {
  background-color: white;
  border-radius: 50%;
}
.social-icons img {
  width: 16px;
  height: 16px;
}

.caption {
  font-size: small;
  font-style: italic; display: block;
  margin-top: -0.2em;
  line-height: 1;
  margin-bottom: 10px;
}
ul.bulleted-list {
  list-style: none;
  padding-left: 0;
}
ul.bulleted-list > li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 8px;
}
ul.bulleted-list li > ul {
  list-style: none;
  margin-top: 4px;
}
ul.bulleted-list li > ul > li {
  position: relative;
  padding-left: 15px;
}
form#payment-form {
  margin-top: 10px;
}
#payment-container {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#payment-container.visible {
  max-height: 100%;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 40px;
}

.folder-tabs {
  width: 100%;
  margin-left: 15px;
  margin-right: 15px;
  box-sizing: border-box;
  position: relative;
  margin-bottom:10px;
}

.menu-links {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  margin-bottom:10px;
}

.menu-link {
  color: black;
  background-color: white;
  font-family: 'Poppins', sans-serif;
  border: none;
  padding: 0.4rem 1.5rem 0.4rem .9rem;
  cursor: pointer;
  outline: none;
  flex: 0 0 auto;
}

.tab-buttons {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  align-items: center;
  gap: 15px;
  padding-right: 2rem;
  margin-right: 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tab-buttons::-webkit-scrollbar {
  display: none;
}

.tab-button {
  font-family: 'Poppins', sans-serif;
  background-color: #ececec;
  border: none;
  padding: 0.4rem 1.5rem 0.4rem .9rem;
  cursor: pointer;
  clip-path: polygon(0% 100%, 0% 0%, 85% 0%, 100% 100%);
  transition: background 0.2s ease;
  outline: none;
  flex: 0 0 auto;
}

.tab-button:hover {
  background-color: #dfdfdf;
}

.tab-button.active {
  border-bottom: 2px solid #851c09;
}

.scroll-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid black;
  width: 0;
  height: 0;
}
.amount-field {
  position: relative;
  display: inline-block;
}
.amount-field input {
  width: 200px;
  height: 70px;
  font-family: "Boldonse", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  border: none;
  outline: none;
  text-align: center;
  background: #e0e0e0;
  border-radius: 20px;
}
.amount-field .currency {
  position: absolute;
  bottom: -5px;
  right: -5px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 10px;
  padding: 2px 5px;
  font-family: "Boldonse", system-ui;
  font-size: 0.75rem;
  font-weight: bold;
  cursor: default;
}
#amount::-webkit-outer-spin-button,
#amount::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#watermark-container {
  margin-left: 5px;
}
#amount {
  -moz-appearance: textfield;
}
.email-field {
  position: relative;
  width: 100%;
  margin-bottom: 8px;
}
.email-field, #email-container {
  width: 100%;
}
.email-field input {
  width: calc(100% - 9px);
  height: 60px;
  padding-top: 25px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 1rem;
}
.email-field input:disabled {
  background: #d3d3d3;
}
.email-field label {
  position: absolute;
  top: 4px;
  left: 10px;
  font-size: 0.75rem;
  color: #333;
  pointer-events: none;
}

.pay {
  padding: 10px 50px;
  margin-top: 10px;
  margin-bottom: 5px;
  background: #fff;
  border: 3px solid #000;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s;
}
.pay:hover {
  transform: translateY(-2px);
}
.pay:active {
  transform: translateY(2px);
}
.card_found {
  display: block;
  background: #fff;
  border-radius: 6px;
  padding: 10px 15px;
  margin-bottom: 10px;
  text-decoration: none;
  color: #1b1c1d;
  border: 1px solid #d3d3d3;
  width: calc(100% - 8px);
}
h2 {
  margin-left: 15px;
  margin-right: 15px;
  font-weight: bold;
  font-size: 1.1rem;
}
a.card {
  display: block;
  background: #fff;
  border-radius: 20px;
  padding: 10px 15px;
  margin-bottom: 10px;
  text-decoration: none;
  color: #1b1c1d;
  border: 1px solid #d3d3d3;
  box-shadow: 0 0px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s;
  text-align: center;
}
a.card:hover {
  transform: translateY(-2px);
}
a.card:active {
  transform: translateY(2px);
}
a.card.with-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
a.card.with-icon .card-icon {
  margin-right: 15px;
}
a.card.with-icon .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a.card.with-icon .card-text {
  flex: 1;
  text-align: center;
  font-size: 1rem;
}
#paypal-button-container {
  width: calc(100% - 9px);
}
.expand-icon {
  float: right;
}

.expandable > a.card {}
.expandable .subcards a.subcard {
  display: block;
  background: #fafafa;
  border-radius: 20px;
  padding: 8px 12px;
  margin: 5px 15px;
  text-decoration: none;
  color: #1b1c1d;
  border: 1px solid #a9a9a9;
  transition: transform 0.2s;
  text-align: center;
  font-size: 0.9rem;
}
.expandable .subcards a.subcard:hover {
  transform: translateY(-2px);
}
.expandable .subcards a.subcard:active {
  transform: translateY(2px);
}
.expandable .subcards {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.expandable.expanded .subcards {
  max-height: 1000px;
}
.custom-card,
.video-card {
  display: block;
  border: 1px solid #d3d3d3;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 10px;
  box-shadow: 0 0px 5px rgba(0,0,0,0.1);
}
.custom-card img {
  width: 100%;
  display: block;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.custom-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px;
  background: #fff;
  font-size: 1rem;
  text-decoration: none;
  color: #1b1c1d;
  font-weight: bold;
}
.custom-card .card-link img {
  width: 16px;
  height: 16px;
}
.video-card iframe {
  width: 100%;
  height: 250px;
  border: none;
  display: block;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.video-card .card-text {
  display: block;
  padding: 10px;
  background: #fff;
  font-size: 1rem;
  text-align: center;
}
footer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8rem;
}
footer a {
  text-decoration: none;
  color: inherit;
  margin: 0 5px;
}
@media (max-width: 600px) {
  .container {
    margin: 0 10px;
    padding: 15px;
  }
}
