body {
    background: linear-gradient(135deg, #111113, #0A0A0B);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.btn-custom {
    margin: 10px 0;
    background-color: #232225;
    color: #fff;
    border: none;
    padding: 10px 15px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    text-align: left;
    border-radius: 10px;
    justify-content: space-between;
}

.btn-custom:hover {
    background-color: #555;
    transform: translateY(-5px);
}

.btn-custom img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.btn-custom .btn-content {
    display: flex;
    align-items: center;
    flex: 1;
    margin-left: 10px;
}

.btn-custom .btn-text {
    flex: 1;
}

.glow-button {
    transition: box-shadow 0.3s ease;
    /* Transição suave para o efeito de glow */
}

.glow-button:hover {
    box-shadow: 0 0 15px #FFC107;
    /* Efeito de glow ao passar o mouse */
}


.voltar i:hover {
    background-color: rgb(32, 32, 32);
    padding: 5px;
    border-radius: 10px;
}

.conteudo {
    background-color: #17171a;
    margin: 50px auto;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(17, 17, 17, 0.1);
    max-width: 800px;
}

.conteudo .topo-perfil {
    padding: 10px;
}

.padding-card {
    background-color: #17171a;
    margin: 50px auto;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(17, 17, 17, 0.1);
    max-width: 800px;
}

header {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

footer {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    margin-top: auto;
    padding: 20px 0;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    text-align: left;
    background-color: #000;
    padding: 10px;
}

.social-icons a:hover {
    color: #007bff;
}

.erro {
    color: #ff4444;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 20px;
}

.descricao {
    color: #FFC107;
}


.delete-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.delete-badge:hover {
    background-color: rgba(255, 0, 0, 1);
}

.link-container {
    position: relative;
    display: inline-block;
}


.url {
    background-color: rgba(32, 32, 32, 0.8);
    padding: 20px;
    margin-bottom: -30px;
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(17, 17, 17, 0.1);
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    word-break: break-all;
}

.url a {
    color: #fff;
    text-decoration: none;
}

.url button {
    white-space: nowrap;
}


.content_page {
    background-color: #000;
    min-height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.content_page_conteudo {
    background-color: #17171a;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(17, 17, 17, 0.6);
    max-width: 800px;
    width: 100%;
}

.content_page_conteudo .topo-perfil {
    padding: 10px;
}


.btn-premium {
    background-image: linear-gradient(45deg, #c715a0, #3700ff);
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    animation: gradientAnimation 5s ease infinite;
    background-size: 200% 200%;
    box-shadow: 0 0 15px rgb(117, 11, 255);
    padding: 7px 15px;
    font-size: 12px;
}

.btn-premium:hover {
    animation: gradientAnimation 2s ease infinite;
}

.btn-premium i {
    margin-right: 8px;
}

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

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

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