html {
    height: 100%;
    background-image: url("KyubeyBG.png");
    background-repeat: repeat;
    background-position: center;
}

h1 {
  font-family: 'Cherry Bomb One', cursive;
}

body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: transparent;
    color: black;
    font-family: 'Comic Neue', 'Comic Sans MS', sans-serif;
    padding: 20px 0;
}

.center-panel{
    width: 50%;
    max-height: calc(100vh - 40px);
    padding: 20px;
    text-align: center;
    background-color: rgb(255, 255, 255);
    box-sizing: border-box;
    overflow: auto;
}

.cherry-bomb-one-regular {
    font-family: "Cherry Bomb One", cursive;
    font-weight: 400;
    font-style: normal;
  }

  .comic-neue-light {
    font-family: "Comic Neue", sans-serif;
    font-weight: 300;
    font-style: normal;
  }

  .comic-neue-regular {
    font-family: "Comic Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  .comic-neue-bold {
    font-family: "Comic Neue", sans-serif;
    font-weight: 700;
    font-style: normal;
  }

  .comic-neue-light-italic {
    font-family: "Comic Neue", sans-serif;
    font-weight: 300;
    font-style: italic;
  }

  .comic-neue-regular-italic {
    font-family: "Comic Neue", sans-serif;
    font-weight: 400;
    font-style: italic;
  }

  .comic-neue-bold-italic {
    font-family: "Comic Neue", sans-serif;
    font-weight: 700;
    font-style: italic;
  }


.bot-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem auto;
    max-width: 90vw;
    padding: 0 1rem;
}

.bot-card {
    background: white;
    border: 3px solid #ffb6c1;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.bot-name {
    font-family: "Cherry Bomb One", cursive;
    color: #ff69b4;
    margin: 0 0 1rem 0;
    text-align: center;
}

.bot-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bot-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
}

.bot-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bot-description {
    padding: 1rem;
    border: 2px dashed #d8bfd8;
    border-radius: 10px;
    font-family: "Comic Neue", sans-serif;
}

.bot-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.link-image {
    width: 50px;
    height: 50px;
    background: #f0f0f0;
    border: 2px solid #ccc;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.link-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (min-width: 768px) {
    .bot-container {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }

    .bot-content {
        flex-direction: column;
    }

    .bot-image {
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .bot-container {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
    }
}

.playlist button:hover {
  background-color: #ff1493;
}

.bottombar {
  width: 50%;
  max-height: calc(100vh - 40px);
  padding: 20px;
  box-sizing: border-box;
  overflow: auto;
  position: fixed;
  bottom: 0;
}