.body {
  background-color: #f5f5f5;
  max-width: 100vw;
}

html, body {
  overflow-x: hidden !important;
}

/* PFP Creator Styles */
.pfp-creator-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.pfp-panel {
  flex: 1;
  min-width: 300px;
  background-color: #fff;
  border: 5px solid #666666;
  border-radius: 0;
  padding: 20px;
}

.pfp-panel-title {
  color: #666666;
  font-family: Passion One, sans-serif;
  font-size: 3vw;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-align: center;
}

.pfp-tabs {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 3px solid #666666;
}

.pfp-tab {
  flex: 1;
  background-color: #f5f5f5;
  border: 3px solid #666666;
  border-bottom: none;
  color: #666666;
  font-family: Passion One, sans-serif;
  font-size: 1.5vw;
  font-weight: 700;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pfp-tab.active {
  background-color: #fff;
  color: #444444;
}

.pfp-tab:hover {
  background-color: #e8e8e8;
}

.pfp-tab-content {
  display: none;
}

.pfp-tab-content.active {
  display: block;
}

.pfp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.pfp-item {
  border: 3px solid #666666;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #fff;
}

.pfp-item:hover {
  border-color: #444444;
  transform: scale(1.05);
}

.pfp-item.selected {
  border-color: #888888;
  box-shadow: 0 0 10px rgba(136, 136, 136, 0.5);
}

.pfp-thumbnail {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
}

.pfp-upload-btn {
  width: 100%;
  background-color: #666666;
  color: #fff;
  border: 3px solid #444444;
  font-family: Passion One, sans-serif;
  font-size: 1.2vw;
  font-weight: 700;
  padding: 15px;
  cursor: pointer;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.pfp-upload-btn:hover {
  background-color: #888888;
}

.pfp-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pfp-btn {
  flex: 1;
  min-width: 120px;
  background-color: #666666;
  color: #fff;
  border: 3px solid #444444;
  font-family: Passion One, sans-serif;
  font-size: 1.2vw;
  font-weight: 700;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pfp-btn:hover {
  background-color: #888888;
  transform: translateY(-2px);
}

.pfp-btn.randomize-btn {
  background-color: #4CAF50;
  border-color: #45a049;
}

.pfp-btn.randomize-btn:hover {
  background-color: #45a049;
}

.pfp-btn.clear-btn {
  background-color: #f44336;
  border-color: #da190b;
}

.pfp-btn.clear-btn:hover {
  background-color: #da190b;
}

.pfp-btn.download-btn {
  background-color: #2196F3;
  border-color: #0b7dda;
}

.pfp-btn.download-btn:hover {
  background-color: #0b7dda;
}

.pfp-canvas-container {
  flex: 1;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pfp-canvas {
  width: 400px;
  height: 400px;
  border: 5px solid #666666;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.pfp-canvas-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #888888;
  font-family: Passion One, sans-serif;
  font-size: 1.2vw;
  pointer-events: none;
}

.pfp-canvas-placeholder p {
  margin: 5px 0;
}

.pfp-canvas-element {
  position: absolute;
  cursor: move;
  border: 2px dashed transparent;
  transition: border-color 0.3s ease;
}

.pfp-canvas-element:hover {
  border-color: #666666;
}

.pfp-canvas-element.selected {
  border-color: #888888;
}

.pfp-canvas-element img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.pfp-resize-handle {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #666666;
  border: 2px solid #fff;
  cursor: nw-resize;
}

.pfp-resize-handle.top-left {
  top: -6px;
  left: -6px;
}

.pfp-resize-handle.top-right {
  top: -6px;
  right: -6px;
  cursor: ne-resize;
}

.pfp-resize-handle.bottom-left {
  bottom: -6px;
  left: -6px;
  cursor: sw-resize;
}

.pfp-resize-handle.bottom-right {
  bottom: -6px;
  right: -6px;
  cursor: se-resize;
}

.pfp-canvas-controls {
  display: flex;
  gap: 10px;
}

@media (max-width: 768px) {
  .pfp-creator-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .pfp-panel-title {
    font-size: 5vw;
  }
  
  .pfp-tab {
    font-size: 3vw;
  }
  
  .pfp-btn {
    font-size: 3vw;
  }
  
  .pfp-upload-btn {
    font-size: 3vw;
  }
  
  .pfp-canvas {
    width: 100%;
    max-width: 350px;
    height: 350px;
  }
  
  .pfp-canvas-placeholder {
    font-size: 3vw;
  }
}

.header {
  z-index: 888;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
  overflow: hidden;
}

.div-block-2 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-block {
  color: #fff;
  -webkit-text-stroke-width: .3vw;
  -webkit-text-stroke-color: #666666;
  text-shadow: 1vw 1vw #666666;
  font-family: Passion One, sans-serif;
  font-size: 12vw;
  font-weight: 900;
  line-height: 10vw;
  overflow: visible;
}

.button {
  color: #666666;
  background-color: #fff;
  border: 5px solid #666666;
  border-radius: 0;
  padding: 10px 20px;
  font-family: Passion One, sans-serif;
  font-size: 3vw;
  font-weight: 700;
  line-height: 3vw;
}

.button.menu-toggle {
  font-size: 3vw;
  line-height: 3vw;
}

.button.reverse {
  color: #fff;
  background-color: #888888;
  border-color: #fff;
}

.menu-overlay {
  z-index: 999;
  background-color: #666666;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  height: 80vh;
  display: flex;
  overflow: hidden;
}

.code-embed {
  height: 0;
  display: none;
  overflow: hidden;
}

.menu-content {
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-top: 20px;
  margin-bottom: 40px;
  display: flex;
}

.div-block-3 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: center;
  align-items: center;
  display: none;
}

.img1, .img2, .img3 {
  width: 300px;
}

.div-block-4 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-block-2 {
  color: #fff;
  font-family: Passion One, sans-serif;
  font-size: 10vw;
  line-height: 10vw;
}

.link {
  color: #fff;
  letter-spacing: 10px;
  font-family: Passion One, sans-serif;
  font-size: 8vw;
  line-height: 6vw;
  text-decoration: none;
}

.link-block {
  text-decoration: none;
}

.link-block.coming-soon-version {
  position: relative;
}

.link-text {
  color: #fff;
  font-family: Passion One, sans-serif;
  font-size: 7vw;
  line-height: 5.5vw;
}

.link-text:hover {
  color: #cccccc;
}

.link-text.tiktok-color {
  color: #ff0050;
}

.link-text.tiktok-color:hover {
  color: #ff3366;
}

.link-text.instagram-color {
  color: #e4405f;
}

.link-text.instagram-color:hover {
  color: #f56565;
}

.text-block-3 {
  color: #666666;
  font-family: Passion One, sans-serif;
  font-size: 2vw;
  line-height: 2vw;
}

.text-block-3.green {
  color: #888888;
}

.text-block-3.green.pink {
  color: #666666;
}

.text-block-3.green.pink.blue {
  color: #444444;
  -webkit-text-stroke-color: #777777;
}

.code-embed-2 {
  display: none;
  overflow: hidden;
}

.div-block-5 {
  background-color: #e8e8e8;
  border-top: 5px solid #666666;
  border-bottom: 5px solid #444444;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  overflow: hidden;
}

.heading {
  color: #fff;
  letter-spacing: 2px;
  -webkit-text-stroke-width: .3vw;
  -webkit-text-stroke-color: #888888;
  text-shadow: 1vw 1vw #888888;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Passion One, sans-serif;
  font-size: 12vw;
  line-height: 12vw;
}

.heading.pink {
  -webkit-text-stroke-color: #666666;
  text-shadow: 1vw 1vw #666666;
}

.heading.pink.blue {
  -webkit-text-stroke-color: #444444;
  text-shadow: 1vw 1vw #444444;
}

.div-block-6 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  margin-top: 65px;
  margin-bottom: 75px;
  display: flex;
}

.code-embed-3 {
  border: 5px solid #888888;
  border-radius: 21px;
}

.code-embed-3.golden {
  border-color: #aaaaaa;
}

.link-block-2 {
  position: relative;
  overflow: hidden;
}

.div-block-7 {
  background-color: #888888;
  border-radius: 8px;
  padding: 5px 10px;
  position: absolute;
  inset: 15px auto auto 15px;
}

.div-block-7.goldie {
  background-color: #aaaaaa;
}

.text-block-4 {
  color: #fff;
  font-family: Passion One, sans-serif;
  font-size: 25px;
}

.text-block-4.gold {
  color: #000;
}

.link-block-3, .link-block-4 {
  position: relative;
  overflow: hidden;
}

.link-block-4.main {
  border-radius: 21px;
  transform: scale(1.1);
  box-shadow: 0 0 15px #aaaaaa;
}

.div-block-8 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: #666666;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 40px 60px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-block-5 {
  color: #cccccc;
  text-align: center;
  width: 50vw;
  font-family: Passion One, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
}

.text-block-5.smawl {
  color: #bbbbbb;
  width: auto;
  font-size: 25px;
  line-height: 24px;
  position: absolute;
  inset: auto 20px 20px auto;
}

.text-span {
  color: #999999;
}

.link-2 {
  text-decoration: none;
}

.italic-text {
  color: #bbbbbb;
}

.div-block-9 {
  background-color: #cccccc;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  overflow: hidden;
}

.div-block-9.howtobuy {
  background-color: #999999;
  border-bottom: 5px solid #666666;
  padding-top: 80px;
  padding-bottom: 100px;
}

.code-embed-4 {
  display: none;
}

.text-block-6 {
  color: #888888;
  font-family: Passion One, sans-serif;
  font-size: 2vw;
  font-weight: 400;
  line-height: 2vw;
}

.link-3 {
  text-decoration: none;
}

.bold-text {
  color: #666666;
}

.image {
  position: absolute;
  inset: auto auto 0% 0%;
}

.text-block-7 {
  color: #fff;
  font-family: Passion One, sans-serif;
  font-size: 25px;
  line-height: 22px;
}

.div-block-10 {
  background-color: #666666d9;
  border: 3px solid #fff;
  border-radius: 20px;
  padding: 10px 20px;
  font-weight: 400;
  position: absolute;
  inset: auto 22% 31% auto;
  transform: rotate(4deg);
}

.text-span-2 {
  font-size: 3vw;
  line-height: 2vw;
}

.div-block-11 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.div-block-12 {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border: 5px solid #666666;
  border-radius: 21px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
  position: relative;
}

.image-2 {
  width: 300px;
}

.div-block-13 {
  background-color: #666666;
  padding: 10px;
  display: block;
}

.heading-2 {
  color: #fff;
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
  font-family: Passion One, sans-serif;
}

.heading-2.price {
  font-size: 42px;
  line-height: 42px;
}

.div-block-14 {
  background-color: #666666;
  border: 5px solid #fff;
  border-radius: 20px;
  padding: 10px 20px;
  position: absolute;
}

.heading-3 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Passion One, sans-serif;
  font-size: 60px;
  line-height: 60px;
}

.link-block-5 {
  background-color: #fff;
  border: 5px solid #666666;
  border-radius: 0;
  margin-top: 20px;
  padding: 10px 20px;
  text-decoration: none;
  box-shadow: 5px 5px #666666;
}

.text-block-8 {
  color: #666666;
  font-family: Passion One, sans-serif;
  font-size: 1.8vw;
  font-weight: 400;
  line-height: 1.8vw;
}

.div-block-15 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-top: 40px;
  display: flex;
}

.div-block-16 {
  background-color: #777777;
  background-image: linear-gradient(#444444, #fff0), url('../images/worn-dots.png');
  background-position: 0 0, 0 0;
  background-size: auto, 100px;
  border: 5px solid #444444;
  border-radius: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  max-width: 350px;
  height: 550px;
  padding: 20px;
  display: flex;
  position: relative;
  box-shadow: 5px 5px #444444;
}

.div-block-16:nth-child(1) {
  background-color: #C4B5E0;
  background-image: linear-gradient(#A495C0, #fff0), url('../images/worn-dots.png');
  border-color: #A495C0;
  box-shadow: 5px 5px #A495C0;
}

.div-block-16:nth-child(2) {
  background-color: #A594C7;
  background-image: linear-gradient(#8574A7, #fff0), url('../images/worn-dots.png');
  border-color: #8574A7;
  box-shadow: 5px 5px #8574A7;
}

.div-block-16:nth-child(3) {
  background-color: #8B7FB8;
  background-image: linear-gradient(#6B5F98, #fff0), url('../images/worn-dots.png');
  border-color: #6B5F98;
  box-shadow: 5px 5px #6B5F98;
}

.heading-4 {
  color: #fff;
  margin-top: auto;
  margin-bottom: 10px;
  font-family: Passion One, sans-serif;
  font-weight: 700;
}

.text-block-9 {
  color: #cccccc;
  font-family: Passion One, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 25px;
}

.link-block-6 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: #000000b3;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: 16px 27px;
  text-decoration: none;
  display: flex;
}

.link-block-6.blue {
  background-color: #999999;
  border: 3px solid #444444;
  transition: all .35s cubic-bezier(.175, .885, .32, 1.275);
  box-shadow: 0 0 #444444;
}

.div-block-16:nth-child(1) .link-block-6.blue {
  background-color: #E0D5F5;
  border-color: #C4B5E0;
  box-shadow: 0 0 #C4B5E0;
}

.div-block-16:nth-child(1) .link-block-6.blue:hover {
  box-shadow: 5px 5px #C4B5E0;
}

.div-block-16:nth-child(2) .link-block-6.blue {
  background-color: #C4B5E0;
  border-color: #A594C7;
  box-shadow: 0 0 #A594C7;
}

.div-block-16:nth-child(2) .link-block-6.blue:hover {
  box-shadow: 5px 5px #A594C7;
}

.div-block-16:nth-child(3) .link-block-6.blue {
  background-color: #A594C7;
  border-color: #8B7FB8;
  box-shadow: 0 0 #8B7FB8;
}

.div-block-16:nth-child(3) .link-block-6.blue:hover {
  box-shadow: 5px 5px #8B7FB8;
}

.link-block-6.blue:hover {
  box-shadow: 5px 5px #444444;
}

.icon-embed-custom-12 {
  color: #444444;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.4375rem;
  height: 1.1875rem;
  display: flex;
}

.text-block-10 {
  color: #fff;
  font-size: 16px;
  line-height: 19px;
}

.image-3 {
  border: 5px solid #444444;
  border-radius: 20px;
  width: 100%;
  max-width: 200px;
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
  position: absolute;
  inset: auto -31% 28% auto;
  transform: rotate(0);
}

.image-3:hover {
  transform: rotate(15deg);
}

.div-block-17 {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  flex-flow: column;
  display: flex;
}

.text-block-11 {
  color: #fff;
  font-family: Passion One, sans-serif;
  font-size: 22px;
  font-weight: 400;
}

@media screen and (max-width: 479px) {
  .header {
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-2 {
    height: 50vh;
  }

  .text-block {
    -webkit-text-stroke-width: 2px;
    text-shadow: 5px 5px #666666;
  }

  .button {
    font-size: 20px;
    line-height: 20px;
  }

  .button.menu-toggle {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 20px;
    line-height: 20px;
  }

  .menu-overlay {
    height: 50vh;
    display: block;
  }

  .link-text {
    font-size: 15vw;
    line-height: 14vw;
  }

  .text-block-3 {
    font-size: 5vw;
    line-height: 6vw;
  }

  .text-block-3.green {
    line-height: 6vw;
  }

  .div-block-5 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .heading {
    -webkit-text-stroke-width: 2px;
    text-shadow: 4px 4px #888888;
    font-size: 20vw;
    line-height: 20vw;
  }

  .heading.pink {
    text-shadow: 4px 4px #666666;
    font-size: 17vw;
    line-height: 17vw;
  }

  .div-block-6 {
    flex-flow: column;
  }

  .text-block-5 {
    width: 85vw;
    font-size: 18px;
    line-height: 18px;
  }

  .text-block-6 {
    font-size: 7vw;
    line-height: 7vw;
  }

  .div-block-11 {
    flex-flow: column;
  }

  .heading-3 {
    font-size: 40px;
    line-height: 35px;
  }

  .link-block-5 {
    border-width: 3px;
    padding: 10px;
    box-shadow: 2px 2px #666666;
  }

  .text-block-8 {
    font-size: 4vw;
  }

  .div-block-15 {
    flex-flow: column;
    margin-left: 10px;
    margin-right: 10px;
  }

  .image-3 {
    right: 18%;
  }
}


