html {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  scroll-behavior: smooth;
}
body {
  font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.3em;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #E5E5E5;
}
.site_main {
  flex: 1;
  margin-top: 48px;
}
.container {
  width: calc(100% - 30px);
  max-width: 700px;
  margin: 0 auto;
  padding-bottom: 100px;
}
@font-face {
  font-family: 'Ubuntu';
  src: url('/assets/fonts/Ubuntu-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ubuntu';
  src: url('/assets/fonts/Ubuntu-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ubuntu';
  src: url('/assets/fonts/Ubuntu-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.mixlz_header {
  background-color: #1a1a1a;
  padding: 14px 0;
  z-index: 9;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.mixlz_header .main_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.mixlz_header .logo {
  opacity: 0.4;
  display: flex;
  align-items: center;
}
.mixlz_header .logo img {
  height: 20px;
  width: auto;
  filter: invert(1) brightness(100%);
}
.mixlz_header .nav_links {
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.mixlz_header .nav_links li a,
.mixlz_header .nav_links li button {
  opacity: 0.4;
  display: flex;
  align-items: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}
.mixlz_header .nav_links li a img.nav_icon,
.mixlz_header .nav_links li button img.nav_icon {
  height: 20px;
  width: auto;
  filter: invert(1) brightness(100%);
}
.mixlz_header .nav_links li a.active,
.mixlz_header .nav_links li button.active,
.mixlz_header .nav_links li a:hover,
.mixlz_header .nav_links li button:hover {
  opacity: 1;
}
.mixlz_header .nav_links li a.menu_trigger,
.mixlz_header .nav_links li button.menu_trigger {
  position: relative;
  background: none;
  border: none;
  padding: 0;
  height: 20px;
  width: 20px;
}
.mixlz_header .nav_links li a.menu_trigger img.nav_icon,
.mixlz_header .nav_links li button.menu_trigger img.nav_icon {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
}
.mixlz_header .nav_links li a.menu_trigger img.nav_icon.menu_icon,
.mixlz_header .nav_links li button.menu_trigger img.nav_icon.menu_icon {
  opacity: 1;
  transform: scale(1);
}
.mixlz_header .nav_links li a.menu_trigger img.nav_icon.close_icon,
.mixlz_header .nav_links li button.menu_trigger img.nav_icon.close_icon {
  opacity: 0;
  transform: scale(0.8);
}
.mixlz_header .nav_links li a.menu_trigger.active img.menu_icon,
.mixlz_header .nav_links li button.menu_trigger.active img.menu_icon {
  opacity: 0;
  transform: scale(0.8);
}
.mixlz_header .nav_links li a.menu_trigger.active img.close_icon,
.mixlz_header .nav_links li button.menu_trigger.active img.close_icon {
  opacity: 1;
  transform: scale(1);
}
.fullscreen_menu {
  padding: 20px;
  background-color: #1a1a1a;
  position: fixed;
  top: -105vh;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  height: calc(100vh - 48px);
  overflow-y: auto;
  z-index: 6;
  transition: all 0.3s ease;
}
.fullscreen_menu.active {
  top: 48px;
}
.fullscreen_menu .menu_content {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
}
.fullscreen_menu .menu_grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 860px;
  margin: 0 auto;
}
.fullscreen_menu .menu_grid .menu_item {
  padding: 15px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.fullscreen_menu .menu_grid .menu_item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.fullscreen_menu .menu_grid .menu_item img {
  width: 40px;
  height: 40px;
  filter: invert(1) brightness(100%);
}
.fullscreen_menu .menu_grid .menu_item .text {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  color: #FFFFFF;
}
.fullscreen_menu .menu_grid .menu_item .text span {
  display: block;
  font-size: 16px;
  font-weight: bold;
}
.fullscreen_menu .menu_grid .menu_item .text p {
  font-size: 14px;
  opacity: 0.7;
  margin: 0;
  line-height: 1em;
  font-weight: 100;
}
.sub_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.sub_header h1 {
  font-size: 14px;
  margin: 0;
}
.sub_header .toolbar_tabs {
  display: flex;
  gap: 10px;
}
.sub_header .toolbar_tabs button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #1a1a1a;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 99px;
}
.sub_header .toolbar_tabs button:hover,
.sub_header .toolbar_tabs button.active {
  background-color: #FFFFFF;
}
.sub_header .help_trigger {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.sub_header .help_trigger img {
  width: 20px;
  height: 20px;
}
.bottom_toolbar {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  color: #1a1a1a;
  z-index: 3;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  left: 0;
  margin-top: 30px;
}
.bottom_toolbar button,
.bottom_toolbar a {
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  font-size: 9px;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1em;
}
.bottom_toolbar button img,
.bottom_toolbar a img {
  width: auto;
  height: 100%;
}
.bottom_toolbar button.disabled,
.bottom_toolbar a.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.site_footer {
  background-color: #1a1a1a;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  display: none;
}
input {
  background-color: #B8B8B8;
  border: 1px solid #808080;
  border-radius: 99px;
  padding: 10px 15px;
  text-align: center;
  font-size: 16px;
}
.labz_page .color_palette {
  display: flex;
  align-items: center;
  margin: 20px 0;
  width: calc(100% + 30px);
  margin-left: -15px;
}
.labz_page .color_palette .colors_container {
  width: 100%;
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding: 0 15px 15px 15px;
}
.labz_page .color_palette .colors_container .color_option {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 2px solid #1a1a1a;
  border-radius: 4px;
  cursor: pointer;
}
.labz_page .color_palette .colors_container .color_option.active {
  border-color: #FFFFFF;
}
.pixel_header {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: space-between;
}
.pixel_header .pixel_color {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: bold;
  gap: 10px;
}
.pixel_header .pixel_color .pin_mockup {
  width: 30px;
  height: 30px;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
}
.pixel_header .right_bar {
  background-color: #C0C0C0;
  padding: 5px 15px;
  border-radius: 99px;
}
.pixel_header .right_bar .tool_group {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.pixel_header .right_bar .tool_group .tool {
  width: 22px;
  height: 22px;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.pixel_header .right_bar .tool_group .tool img {
  width: auto;
  height: 100%;
}
.pixel_header .right_bar .tool_group .tool.active {
  filter: invert(1) brightness(100%);
}
.pixel_header .right_bar .stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  font-weight: bold;
}
.pixel_header .right_bar .stat img {
  width: 20px;
  height: 20px;
}
.art_frame {
  width: 100%;
  background-color: #EFEFEF;
  margin: 12px 0 20px 0;
  border-radius: 15px;
}
.art_frame .info_bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #1a1a1a;
  color: #FFFFFF;
  padding: 11px 15px;
  border-radius: 99px;
}
.art_frame .info_bar .art_title {
  font-size: 17px;
  margin: 0;
  font-weight: bold;
}
.art_frame .info_bar .art_title a {
  color: #FFFFFF;
  text-decoration: none;
}
.art_frame .info_bar .tools {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.art_frame .pixel_canvas {
  padding: 15px;
}
.art_frame .pixel_canvas .pixel_grid {
  background: white;
  border: 1px solid #ccc;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  gap: 0;
  background-color: #E5E5E5;
}
.art_frame .pixel_canvas .pixel_grid .pixel {
  border: 1px solid #C0C0C0;
  aspect-ratio: 1;
}
.art_frame .setup_container {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.art_frame .setup_container .setup_section {
  text-align: center;
}
.art_frame .setup_container .setup_section p:first-child {
  margin-top: 0;
}
.art_frame .setup_container .setup_section .resolution_options {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.art_frame .setup_container .setup_section .resolution_options .resolution_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 9px 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  background: none;
  cursor: pointer;
  gap: 5px;
}
.art_frame .setup_container .setup_section .resolution_options .resolution_btn.active {
  border-color: #000;
  background: #f5f5f5;
}
.art_frame .setup_container .setup_section .resolution_options .resolution_btn .size {
  font-weight: bold;
}
.art_frame .setup_container .setup_section .resolution_options .resolution_btn .time {
  font-size: 13px;
  color: #666;
}
.tab_content {
  display: none;
}
.tab_content.active {
  display: block;
}
.popup_container {
  display: none;
  position: fixed;
  top: 0;
  left: -110vw;
  width: 100vw;
  height: calc(100vh - 48px);
  background: #E5E5E5;
}
.popup_container.active {
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
}
.popup_container .popup_content {
  background-color: #FFFFFF;
  border-radius: 15px;
  padding: 35px;
  box-sizing: border-box;
  width: calc(100% - 30px);
  max-width: 700px;
  position: relative;
  text-align: center;
}
.popup_container .popup_content .popup_title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.popup_container .popup_content .email_form {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.popup_container .popup_content .creation_url {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.popup_container .popup_content .creation_url .creation_url_text {
  font-weight: bold;
}
.popup_container .popup_content .popup_close {
  position: absolute;
  right: 12px;
  top: 12px;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.popup_container .popup_content .popup_close:hover {
  opacity: 1;
}
.popup_container .popup_content .popup_close img {
  width: 24px;
  height: 24px;
}
.popup_container .popup_content .popup_actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 50px;
  margin-top: 25px;
}
.popup_container .popup_content button {
  width: 22px;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  font-size: 9px;
  text-transform: uppercase;
}
.popup_container .popup_content button img {
  width: auto;
  height: 100%;
}
.popup_container.fullscreen .popup_content {
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  padding: 60px 20px 20px;
}
.popup_container.fullscreen .popup_content .popup_close {
  top: 20px;
  right: 20px;
}
.notification {
  position: fixed;
  bottom: -80px;
  left: 0;
  padding: 20px 24px;
  color: white;
  font-weight: 500;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.notification.show {
  opacity: 1;
  bottom: 0;
}
.notification.success {
  background-color: #4CAF50;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}
.notification.error {
  background-color: #f44336;
  box-shadow: 0 2px 8px rgba(244, 67, 54, 0.3);
}
.pixel_art_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.pixel_art_grid .grid_item {
  aspect-ratio: 1;
  background: #EFEFEF;
  border: 1px solid #C0C0C0;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  padding: 15px;
}
.pixel_art_grid .grid_item .pixel_preview {
  width: 100%;
  height: 100%;
}
.pixel_art_grid .grid_item .pixel_preview .pixel_grid {
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  max-height: 100%;
}
.pixel_art_grid .grid_item .pixel_preview .pixel_grid .pixel {
  aspect-ratio: 1;
  position: relative;
}
.pixel_art_grid .grid_item .pixel_preview .pixel_grid .pixel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 0.1px solid #eee;
  pointer-events: none;
}
.pixel_art_grid .grid_item .item_info {
  padding: 15px;
}
.pixel_art_grid .grid_item .item_info h3 {
  margin: 0 0 5px 0;
  font-size: 16px;
}
.pixel_art_grid .grid_item .item_info .date {
  font-size: 14px;
  opacity: 0.7;
}
.single-workx .deadline {
  text-align: center;
  font-style: italic;
  opacity: 0.5;
  margin-top: -10px;
}
.single-workx .pixel_grid {
  transition: all 0.3s ease;
}
.single-workx .pixel_grid .pixel {
  transition: background-color 0.3s ease;
}
.mintd_info .stats_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.mintd_info .stats_grid .stat_item {
  background: #EFEFEF;
  padding: 18px 15px 15px 15px;
  border-radius: 15px;
  text-align: center;
}
.mintd_info .stats_grid .stat_item .stat_value {
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 5px;
}
.mintd_info .stats_grid .stat_item .stat_label {
  font-size: 14px;
  color: #C0C0C0;
}
.mintd_info .stats_grid .stat_item.date .stat_value {
  letter-spacing: -0.05em;
}
.pixel_single .pixel_info {
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}
.empty_state .empty_state_message {
  text-align: center;
  margin-top: 40px;
  padding: 0 30px;
}
.empty_state .empty_state_message p {
  margin: 0 0 10px 0;
}
.pixel_clipboard_page .clipboard_content {
  padding: 20px;
}
.pixel_clipboard_page .clipboard_content .empty_state {
  text-align: center;
  padding: 40px;
  color: #C0C0C0;
}
.pixel_clipboard_page .clipboard_content .empty_state p {
  margin: 0 0 10px 0;
}
.pixel_clipboard_page .clipboard_content .empty_state p:last-child {
  font-size: 14px;
  opacity: 0.7;
}
.pixel_clipboard_page .clipboard_content .pixel_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.pixel_clipboard_page .clipboard_content .pixel_grid .pixel_item {
  text-decoration: none;
  color: inherit;
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.pixel_clipboard_page .clipboard_content .pixel_grid .pixel_item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.pixel_clipboard_page .clipboard_content .pixel_grid .pixel_item .pixel_preview {
  aspect-ratio: 1;
  width: 100%;
}
.pixel_clipboard_page .clipboard_content .pixel_grid .pixel_item .pixel_info {
  padding: 15px;
}
.pixel_clipboard_page .clipboard_content .pixel_grid .pixel_item .pixel_info h3 {
  margin: 0 0 5px 0;
  font-size: 18px;
}
.pixel_clipboard_page .clipboard_content .pixel_grid .pixel_item .pixel_info .pixel_key {
  font-size: 14px;
  opacity: 0.7;
  font-family: monospace;
}
.pixel_list {
  display: flex;
  flex-direction: column;
}
.pixel_list .pixel_item {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid #C0C0C0;
  padding: 20px 0;
  text-decoration: none;
  color: inherit;
}
.pixel_list .pixel_item .pin_mockup {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  border: 1.5px solid #1a1a1a;
}
.pixel_list .pixel_item .right {
  display: flex;
  width: calc(100% - 45px);
  justify-content: space-between;
  align-items: center;
}
.pixel_list .pixel_item .right .pixel_info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pixel_list .pixel_item .right .pixel_info h3 {
  margin: 0;
}
.pixel_list .pixel_item .right .pixel_info .pixel_slug {
  font-size: 12px;
  opacity: 0.5;
  line-height: 1em;
}
.pixel_list .pixel_item .right .right_bar {
  background-color: #C0C0C0;
  padding: 5px 15px;
  border-radius: 99px;
}
.pixel_list .pixel_item .right .right_bar .stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  font-weight: bold;
}
.pixel_list .pixel_item .right .right_bar .stat img {
  width: 20px;
  height: 20px;
}
