:root {
    --default: #8c52ff;
    --highlight: #ff25ab;
    --emphasis: #ffd500;
}

body {
    background-color: var(--default);
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

h2 {
    color: var(--highlight);
    margin: 10px 0px 15px;
    font-size: 2.5em;
    font-family: 'customFont', sans-serif;
    letter-spacing: 1px;
    font-weight: 400;
    padding: 3px 6px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

p a {
    text-align: justify;
    display: flex;
    justify-content: center;
    display: inline;
}

.buttonItem:hover p,
.buttonItem a:hover p {
    color: var(--highlight);
}

.container {
    width: 90%;
    max-width: 800px;
    margin: auto;
}

header {
    background: black;
    font-size: 18px;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

header a {
    color: white;
    text-decoration: none;
    margin: 0 15px;

    font-weight: bold;
}

.hamburger-menu {
    display: none;
}

.iconCoin {
    width: 16px;
    vertical-align: middle;
}

#profile,
#tiktok,
#buyCoin,
#donation,
#social {
    scroll-margin-top: 80px;
}

.profile-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: left;
    margin-top: 80px;
    flex-wrap: wrap;
}

.profile-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-img {
    width: 250px;
    border-radius: 50%;
    border: 3px solid var(--highlight);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
}

.profile-name {
    font-size: 2.5em;
    font-family: 'customFont', sans-serif;
    color: var(--highlight);
    margin-top: 10px;
    text-align: center;
}

.profile-text {
    font-size: 1.2em;
    max-width: 500px;
}

.section {
    margin: 40px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}


.buttonItem {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.buttonItem:hover {
    animation: zoomInAndOut 0.8s ease-in-out infinite;
}

.buttonItem img {
    height: 80px;
}

.socialIcons img {
    width: 50px;
    margin: 10px;
}

.socialIcons img:hover {
    animation: zoomInAndOut 0.8s ease-in-out infinite;
}

.topButton {
    position: fixed;
    bottom: 70px;
    right: 10px;
    background: var(--highlight);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: none;
}

.destaque {
    color: var(--emphasis);
    text-align: center;
    padding-bottom: 10px;
    font-weight: 500;
}

.grifado {
    font-size: 1.3em;
}

.thanks {
    color: black;
    font-size: 1.3em;
    font-weight: 500;
    text-align: center;
    padding-bottom: 10px;
}

.amazing {
    font-size: 1.5em;
    font-weight: 500;
    text-align: center;
    padding-bottom: 10px;
}

footer {
    background: black;
    font-weight: 400;
    letter-spacing: 2px;
    padding: 20px;
    margin-top: auto;
    text-align: center;
    font-size: 1em;
}

footer a:hover {
    color: var(--highlight);
    font-weight: 500;
    cursor: pointer;
}

.background-doodle {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Mantém no fundo */
}


@media (max-width: 600px) {
    .hamburger-menu {
        display: block;
        margin-left: auto;
        margin-right: 16px;
        font-size: 1.5em;
        background: none;
        border: none;
        color: var(--highlight);
        cursor: pointer;
    }

    .menu {
        display: none;
        flex-direction: column;
        background-color: black;
        position: absolute;
        top: 56px;
        left: 0;
        width: 100%;
        padding: 10px;
        border-top: 1px solid var(--highlight);
        z-index: 10;
    }

    .menu.show {
        display: flex;
    }

    .menu a {
        margin: 5px 0;
        padding: 10px;
        text-align: center;
        border-bottom: 1px solid var(--highlight);
    }

    .profile-section {
        flex-direction: column;
        text-align: center;
    }

    .profile-text {
        text-align: center;
    }

    .buttonItem {
        animation: zoomInAndOut 1s ease-in-out infinite;
    }

    .socialIcons img {
        animation: zoomInAndOut 1s ease-in-out infinite;
    }
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes zoomInAndOut {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}