html {
    background-color: #0e0e0e;
}

body {
    font-family: 'Source Code Pro', monospace;
    background-color: #0e0e0e;
    /*color: #1f9785;*/
    color: #26dbc9;
    overflow-x: hidden;
}

a {
    color: #26dbc9;
    cursor: pointer;
    text-decoration: underline;
}

a:hover,
a:focus,
a:active {
    color: #1dac9e;
}

strong {
  color: #26dbc9;
  font-weight: 700;
}

.hero.is-fullheight .hero-body,
.hero.is-fullheight-with-navbar .hero-body,
.hero.is-halfheight .hero-body {
    align-items: center;
    display: block !important;
}

.hero {
    padding-top: 6rem;
}

.logo-container {
    position: relative;
    display: inline-block;
    transition: filter 0.4s ease;
    margin-bottom: 1rem;
}

.logo {
    height: 150px;
    transition: transform 0.4s ease, filter 0.4s ease;
    position: relative;
    z-index: 10;
}

.logo:hover {
    transform: rotate(1deg) scale(1.08);
    filter: drop-shadow(0 0 2px #37c0ac);
}

.smoke {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 100px;
    pointer-events: none;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.5s ease-out;

}

.logo-container:hover .smoke {
    opacity: 1;
}

.smoke span {
    position: absolute;
    background: rgba(255, 255, 255, 1);
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0;
}

.smoke span:nth-child(1) {
    width: 20px;
    height: 20px;
    left: 20px;
    top: 10px;
    animation: smoke-float 3s ease-out infinite;
}

.smoke span:nth-child(2) {
    width: 25px;
    height: 25px;
    left: 10px;
    top: 5px;
    animation: smoke-float 5s ease-out 1s infinite;
}

.smoke span:nth-child(3) {
    width: 15px;
    height: 15px;
    left: 30px;
    top: 0;
    animation: smoke-float 4.5s ease-out 0.5s infinite;
}

.smoke span:nth-child(4) {
    width: 30px;
    height: 30px;
    left: 5px;
    top: 15px;
    animation: smoke-float 6s ease-out 1.5s infinite;
}

.smoke span:nth-child(5) {
    width: 18px;
    height: 18px;
    left: 25px;
    top: 5px;
    animation: smoke-float 5.5s ease-out 0.8s infinite;
}

@keyframes smoke-float {
    0% {
        transform: translateY(0) scale(0.8);
        opacity: 0;
    }

    20% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(-120px) scale(2);
        opacity: 0;
    }
}

.logo-container:hover .smoke span {
    animation-play-state: running;
}

.logo-container:not(:hover) .smoke span {
    animation-play-state: paused;
}

.bot-description {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.command-list {
    text-align: left;
    margin: 0 auto;
    font-family: 'Source Code Pro', monospace;
    padding: 1.5rem;
}

.title.is-1 {
    background: linear-gradient(-70deg, #97c8f6, #20ffa7);
    background-clip: border-box;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    box-decoration-break: clone;
    letter-spacing: 3px;
}

.title.is-3 {
    background: linear-gradient(-70deg, #97c8f6, #20ffa7);
    background-clip: border-box;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    box-decoration-break: clone;
    letter-spacing: 3px;
    font-size: 1.5rem;
}

.command-list {
    margin: 0 auto;
    padding: 1rem;
    background: #154440;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: white;
    font-family: 'Source Code Pro', monospace;
    margin-bottom: 1rem;
}

.command-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0.8rem;
}

.command-row code {
    background: #1313133B;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-weight: 600;
    margin-right: 1rem;
    white-space: nowrap;
    user-select: all;
}

.command-desc {
    flex: 1 1 auto;
    min-width: 0;
}

code {
    color: #fff;
}

.code-editor {
    text-align: left;
    margin: 2rem auto;
    border-radius: 8px;
    font-family: 'Source Code Pro', monospace;
    max-width: 900px;
    width: auto;
    padding: 0;
    box-sizing: border-box;
}

.code-editor-header {
    display: flex;
    gap: 0.4rem;
    padding: 0.6rem 1.5rem;
    background-color: #08776c;
    border-bottom: 1px solid #1f3d3b;
}

.code-editor pre {
    overflow-x: auto;
    white-space: pre;
    padding: 1rem;
    background-color: #202023;
    border-radius: 0.25rem;
    font-family: monospace;
    font-size: 1rem;
    line-height: 1.4;
    max-width: 100%;
}

.code-editor pre code {
    display: block;
    min-width: max-content;
    color: #fff;
}

.code-editor-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.code-editor-header .red {
    background-color: #ff5f56;
}

.code-editor-header .yellow {
    background-color: #ffbd2e;
}

.code-editor-header .green {
    background-color: #27c93f;
}

.token.comment {
    color: #6a9955;
}

.token.keyword {
    color: #c586c0;
}

.token.string {
    color: #ce9178;
}

.token.function {
    color: #dcdcaa;
}

.token.class-name {
    color: #4ec9b0;
}

.blinking-cursor {
    display: inline-block;
    width: 8px;
    background-color: #d8ffef;
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

@keyframes blink {
    50% {
        background-color: transparent;
    }
}

.footer-section {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 1rem;
}

.has-text-grey {
    color: #bdbdbd !important;
}

.title.is-2 {
  font-size: 2rem;
  letter-spacing: 3px;
}

code {
  background-color: #242424;
  color: #da1039;
  font-size: .875em;
  font-weight: 400;
  padding: .25em .5em .25em;
}

.discord-preview-section {
  position: relative;
  padding: 2rem 1rem;
  background: #0e0e0e;
  overflow: hidden;
  z-index: 0;
  padding-bottom: 4rem;
}

.discord-preview-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.discord-preview-section .content-container {
  position: relative;
  z-index: 2;
}

.discord-image-wrapper {
  max-width: 960px;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(32, 255, 167, 0.2), 0 0 40px rgba(151, 200, 246, 0.1);
}

.discord-image {
  width: 100%;
  display: block;
  border-radius: 12px;
  filter: brightness(0.9) contrast(1.05);
}

.discord-image-smaller {
  display: block;
  border-radius: 12px;
  filter: brightness(0.9) contrast(1.05);
}

.discord-logo {
    max-width: 350px;
}

.gradient-text {
  background: linear-gradient(-70deg, #97c8f6, #20ffa7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bot-log-description {
  color: #26dbc9;
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.purchase-title {
    background: linear-gradient(-70deg, #97c8f6, #20ffa7);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-header {
  background-color: #04443e;
  align-items: stretch;
  box-shadow: 0 .125em .25em rgba(0, 0, 0, 0.85);
  display: flex;
  color: #fff !important;
}

.card-header-title {
  color: #fff;
}

.card-content {
  background-color: #000;
  padding: 1.5rem;
  border: 1px solid #04443e;
}

.card-content strong {
    color: #fff !important;
}

.card-footer .has-text-success {
  color: #fff !important;
}

.card-footer {
  border-top: none !important;
  align-items: stretch;
  display: flex;
  background-color: #04443e;
}

.card {
  border-radius: .25rem;
  box-shadow: 0 .5em 1em -.125em rgba(0, 0, 0, 0.87),0 0 0 1px rgba(0, 0, 0, 0.89);
  color: #fff;
  max-width: 100%;
  position: relative;
  background-color: transparent;
}

.footer-links {
  gap: 0.5rem 1rem;
}

.footer-item {
  display: inline-flex;
  align-items: center;
  margin: 0.25rem 0;
}

.footer-link {
  text-decoration: underline;
}

.emoji {
        margin-left: .5rem;
}

.discord-link {
  display: inline-flex;
  align-items: center;
  font-family: sans-serif;
  text-decoration: none;
  color: inherit;
  font-size: 1rem;
}

.discord-icon {
  background-color: #5865F2;
  color: white;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  font-size: 14px;
}

.footer-link i {
    margin-right: 0.3em;
}

.button-is-discord a {
    text-decoration: none;
}

.button.is-discord {
  background-color: #199b8e;
  color: white;
  border: none;
  margin-top: 2rem;
  text-decoration: none;
}

.button.is-discord:hover {
    background-color: #148c80;
}

.affiliate {
    font-size: 12px;
}

@media (max-width: 480px) {
    .command-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .command-row code {
        margin-bottom: 0.3rem;
        margin-right: 0;
    }

    .code-editor {
        padding: 0 1rem;
    }

    .code-editor-header {
        padding: 0.6rem 1rem;
    }

    .code-editor pre {
        padding: 1.2rem 1rem;
    }

    .discord-logo {
        max-width: 200px;
    }
}

@media (max-width: 768px) {

    .card-header-title {
        justify-content: center;
    }

    .title.is-1 {
        font-size: 2rem;
    }
    .code-editor {
        width: auto;
        max-width: 350px;
        margin: 2rem auto;
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .code-editor pre {
        white-space: pre;
        overflow-x: auto;
        max-width: 100%;
        box-sizing: border-box;
    }

    .code-editor pre code {
        min-width: max-content;
        display: block;
        color: #fff;
    }

    .bot-description {
        font-size: 1rem;
    }

    .discord-logo {
        max-width: 280px;
    }

    .footer-section p {
        font-size: 13px;
    }

    .footer-section .container {
        margin: 0 auto 3rem auto;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
}