/* Reset some defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  header {
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Lato', Arial, sans-serif;
    background-color: #2f2e2c;
    background-image: url("/assets/images/bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #2d2521;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  /* Main container */
  .container {
    background-color: #f5e8d5;
    border-radius: 0;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border-radius: 24px 24px 12px 12px;
  
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease-out forwards;
  
    padding: 0;
    margin: 0.75rem
  }

  /* Inner Container */
  .content-wrapper {
    padding: 1rem 2rem 2rem 2rem;
  }
  
  /* Artwork Header */
  .artwork-wrapper {
    width: 100%;
    overflow: hidden;
    margin: 0;
    border-radius: 12px 12px 0 0;
  }
  .artwork {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    border-radius: 0;
  }

  .sticker-wrapper {
    position: absolute;
    top: 32.5%;
    left: 85%;
    transform: translateX(-50%);
    width: 130px;
    height: 130px;
    z-index: 10;
  }
  .sticker-ring {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: spin 90s linear infinite;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
  }
  .sticker {
    font-family: 'Bangers', cursive;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);

    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: #e99b35;
    color: #f5e8d5;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .sticker span {
    margin-top: 0.55rem;
    line-height: 1;
  }
  .sticker .bottom {
    font-size: 1.5rem;
    font-weight: 900;
  }
  .sticker.open span{
    animation: pulse 6s infinite ease-in-out;
  }

  /* Title */
  header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin: 0;
    text-align: center;
    color: #2d2521;
  }
  
  /* Text */
  main p {
    text-align: center;
  }

  /* Bio */
  .bio{
    max-width: 70%;
    margin: 0 auto;
    margin-top: 0.3rem;
    margin-bottom: 1.25rem;
    text-align: center;
    line-height: 1.4;
  }
  p.bio {
    line-height: 1.5;
  }
  p.bio strong {
    font-weight: bold;
  }
  p.bio em {
    font-style: italic;
  }

  /* Internal Page Buttons */
  .page-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .page-btn {
    display: inline-block;
    background-color: #2d2521;
    color: #f5e8d5;
    font-weight: bold;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s;
  }
  .page-btn:hover {
    background-color: #e99b35;
  }

  /* Social Media Buttons */
  .social-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
  }
  .social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2d2521;
    transition: transform 0.3s, background-color 0.3s;
  }
  .social-btn:hover {
    transform: scale(1.1);
    background-color: #e99b35;
    box-shadow: 0 4px 12px rgba(233, 155, 53, 0.15);
  }
  .social-btn img {
    width: auto;
    height: 70%;
    display: block;
    object-fit: contain;
  }
  .social-btn.bluesky img {
    width: auto;
    height: 50%;
    margin-top: 3%;
  }
  .social-btn.telegram img {
    width: auto;
    height: 58%;
    margin-right: 6%;
    margin-top: 1%;
  }
  .social-btn.trello img {
    width: auto;
    height: 55%;
  }
  
  /* Footer */
  footer {
    margin-top: 2rem;
    font-size: 0.75rem;
    text-align: center;
    opacity: 0.7;
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Fade-out animation */
  .fade-out {
    animation: fadeOut 0.5s ease-in forwards;
  }
  
  @keyframes fadeOut {
    to {
      opacity: 0;
      transform: translateY(20px);
    }
  }
  @keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }
  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }

  /* Phones */
  @media (max-width: 480px) {
    .bio{
      max-width: 100%;
    }
    .sticker-wrapper {
      top: 31%;
      left: 80%;
      width: 100px;
      height: 100px;
    }
      .sticker {
      font-size: 0.70rem;
      width: 85px;
      height: 85px;
    }
    .sticker span {
      margin-top: 0.46rem;
    }
    .sticker .bottom {
      font-size: 1.10rem;
    }
  }