/* Importando a fonte Poppins do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Fundo cinza para o site */
    background-color: #0f0f0f;
}

/* Estilo do cabeçalho */
.container {
    position: relative;
    max-width: 100%;
    background-color: #000000;
    /* Sombra para separar o cabeçalho */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 5px;
}

/* Container do conteúdo principal */
.content-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Estilo do container do logo */
.logo-container {
    text-align: center;
    margin: 5px 0;
}

/* Estilo do logo */
.logo {
    max-width: 170px;
    height: auto;
}

/* Estilo do container do vídeo */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border-radius: 8px;
    overflow: hidden;
    background-color: #000000;
    aspect-ratio: 16/9;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Estilo do vídeo */
video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Estilo dos controles do vídeo */
.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

/* Estilo dos botões */
.control-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid white;
    border-radius: 4px;
    padding: 8px 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.control-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.control-btn i {
    font-size: 14px;
}

/* Media query para dispositivos móveis */
@media screen and (max-width: 768px) {
    .content-container {
        padding: 0 10px;
        min-height: auto;
        align-items: flex-start;
    }

    .video-container {
        max-width: 100%;
    }

    .video-controls {
        bottom: 10px;
        right: 10px;
    }

    .control-btn {
        padding: 6px 15px;
        font-size: 12px;
    }
}

/* Container do carrossel de vídeos */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

/* Container dos vídeos */
.video-carousel {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    margin-top: 10px;
}

/* Ajuste do container de vídeo para o carrossel */
.video-container {
    flex: 0 0 100%;
    scroll-snap-align: start;
    margin: 0;
    border-radius: 8px;
}

/* Botões de navegação */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.prev-btn {
    left: 20px;
    top: calc(50% + 35px);
}

.next-btn {
    right: 20px;
    top: calc(50% + 35px);
}

/* Media query para dispositivos móveis */
@media screen and (max-width: 768px) {
    .prev-btn {
        left: 10px;
        top: calc(50% + 35px);
    }

    .next-btn {
        right: 10px;
        top: calc(50% + 35px);
    }

    .content-container {
        padding: 10px;
    }

    .carousel-container {
        margin: 15px auto 0;
    }

    .video-carousel {
        margin-top: 5px;
    }
}

/* Container da seção de vídeo (título + vídeo) */
.video-section {
    flex: 0 0 100%;
    scroll-snap-align: start;
}

/* Estilo do título do vídeo */
.video-title {
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    margin: 10px 0;
    padding: 0 20px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

/* Ajuste do container de vídeo */
.video-container {
    margin-top: 10px;
}

/* Media query para dispositivos móveis */
@media screen and (max-width: 768px) {
    .video-title {
        font-size: 18px;
        margin: 10px 0;
    }
}

/* Estilo da tela de carregamento */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0f0f0f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

/* Estilo do logo na tela de carregamento */
.loading-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

/* Estilo do spinner de carregamento */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #333;
    border-top: 5px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animação do spinner */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Galeria de Fotos */
.photo-gallery-container {
    position: relative;
    width: 100%;
    padding: 20px 0;
    margin: 0 auto;
}

.photo-gallery {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 0 40px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Para Firefox */
    -ms-overflow-style: none; /* Para IE e Edge */
}

/* Remove a barra de rolagem para Chrome, Safari e Opera */
.photo-gallery::-webkit-scrollbar {
    display: none;
}

.photo-gallery::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.photo-gallery::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.photo-item {
    flex: 0 0 90%;
    max-width: 1200px;
    scroll-snap-align: center;
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: scale(1.02);
}

.photo-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.02);
}

/* Botões de navegação da galeria */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 0, 0, 0.438);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.gallery-prev-btn {
    left: 10px;
}

.gallery-next-btn {
    right: 10px;
}

/* Esconde os botões de navegação em dispositivos móveis */
@media screen and (max-width: 768px) {
    .gallery-nav-btn {
        display: none; /* Oculta os botões em mobile */
    }
    
    .photo-gallery {
        padding: 0; /* Remove o padding lateral da galeria */
    }
}

/* Responsividade */
@media screen and (min-width: 768px) {
    .photo-item {
        flex: 0 0 45%;
    }
}

@media screen and (min-width: 1024px) {
    .photo-item {
        flex: 0 0 30%;
    }
}

@media screen and (min-width: 1440px) {
    .photo-item {
        flex: 0 0 23%;
    }
}

.gallery-title {
    position: absolute;
    top: -30px;
    left: 40px;
    color: #fff;
    font-size: 24px;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

/* Ajustes para dispositivos móveis */
@media screen and (max-width: 768px) {
    .photo-gallery-container {
        width: 100%; /* Usa largura total */
        padding-left: 10px; /* Reduz o padding esquerdo */
        padding-right: 10px;
    }

    .photo-gallery {
        padding: 0; /* Remove o padding lateral da galeria */
    }
    
    .gallery-title {
        top: -25px;
        left: 10px;
        font-size: 20px;
    }
}

/* Para telas ainda menores */
@media screen and (max-width: 480px) {
    .photo-gallery-container {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .gallery-title {
        top: -20px;
        left: 10px;
        font-size: 18px;
    }
}

/* Estilo específico para imagens em formato retrato */
.photo-item.portrait {
    aspect-ratio: 1080/1350;
    width: 100%;
    height: auto;
}

.portrait-gallery .photo-item {
    flex: 0 0 45%; /* Para desktop */
    margin-right: 10px;
}

/* Ajuste para telas maiores */
@media screen and (min-width: 1024px) {
    .portrait-gallery .photo-item {
        flex: 0 0 30%;
    }
}

/* Ajuste específico para mobile */
@media screen and (max-width: 768px) {
    .portrait-gallery .photo-item {
        flex: 0 0 75%; /* Reduz para mostrar parte do próximo retrato */
        margin-right: 10px;
    }
}

/* Mostra e ajusta a galeria retrato apenas em dispositivos móveis */
@media screen and (max-width: 768px) {
    .portrait-gallery {
        display: block; /* Mostra a galeria em mobile */
    }

    .portrait-gallery .photo-gallery {
        padding: 0;
    }

    .portrait-gallery .photo-item {
        flex: 0 0 100%;
        max-width: 100%;
        margin: 0;
    }

    .portrait-gallery .photo-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.footer {
    background-color: #1a1a1a;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
}

.footer-title {
    color: #ffffff;
    font-size: 32px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
}

.socials-square {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.socials-square__item {
    display: flex;
    align-items: center;
}

.socials-square__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.socials-square__link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    text-decoration: none;
}

.socials-square__link i {
    font-size: 24px;
    color: white !important;
}

/* Removendo efeitos hover em dispositivos móveis */
@media screen and (max-width: 768px) {
    .socials-square__link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: none;
    }
}

.telegram-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        90deg,
        #000000,
        #1a1a1a,
        #333333,
        #1a1a1a,
        #000000
    );
    background-size: 400% 100%;
    animation: gradientShift 4s linear infinite;
    color: white;
    border: none;
    box-shadow: 0 0 20px #00000077;
    transition: all 0.3s ease;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.telegram-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px #00000077;
}

.telegram-button i {
    font-size: 24px;
    color: white !important;
}

@media screen and (max-width: 768px) {
    .footer-title {
        font-size: 28px;
    }

    .socials-square {
        gap: 20px;
    }

    .socials-square__link {
        width: 35px;
        height: 35px;
    }

    .socials-square__link i {
        font-size: 28px;
    }

    .telegram-button i {
        font-size: 20px;
    }
}

/* Ajuste para mobile */
@media screen and (max-width: 768px) {
    .footer {
        padding: 15px;
    }
    
    .socials-square {
        margin: 0 0 10px 0;
    }
    
    .footer-title {
        margin-bottom: 10px;
    }
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.age-warning {
    color: #ff4444;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .footer-bottom {
        margin-top: 15px;
        padding-top: 10px;
    }
    
    .age-warning {
        font-size: 13px;
    }
    
    .copyright {
        font-size: 11px;
    }
}

.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-verification-modal {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.warning-icon {
    background-color: #ff0000;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 15px auto;
    font-weight: bold;
}

.age-verification-modal h2 {
    color: #ff0000;
    font-size: 28px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.age-verification-modal h3 {
    color: #ff0000;
    font-size: 20px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.confirmation-text {
    color: #ffffff;
    font-size: 15px;
    margin: 15px 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.exit-btn, .confirm-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}

.exit-btn {
    background-color: #333;
    color: white;
}

.confirm-btn {
    background: linear-gradient(
        90deg,
        #530000,
        #ff3333,
        #ff0000,
        #cc0000,
        #ff1a1a
    );
    background-size: 400% 100%;
    animation: gradientShift 4s linear infinite;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.exit-btn:hover {
    background-color: #444;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .age-verification-modal {
        padding: 20px;
    }
    
    .age-verification-modal h2 {
        font-size: 24px;
    }
    
    .age-verification-modal h3 {
        font-size: 18px;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .exit-btn, .confirm-btn {
        width: 100%;
        margin: 5px 0;
    }
}

.see-more-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.582),
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.1)
    );
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.see-more-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
}

/* Ajustes específicos para os botões da galeria retrato */
.portrait-gallery .video-controls {
    bottom: 30px;
    right: 30px;
    gap: 10px;
}

.portrait-gallery .control-btn {
    padding: 8px 20px;
    font-size: 14px;
}

.portrait-gallery .see-more-btn {
    padding: 8px 20px;
    font-size: 14px;
}

/* Mantém o tamanho atual para mobile */
@media screen and (max-width: 768px) {
    .portrait-gallery .video-controls {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .portrait-gallery .control-btn {
        padding: 10px 20px;
        font-size: 16px;
    }
    
    .portrait-gallery .see-more-btn {
        padding: 10px 25px;
        font-size: 16px;
    }
}

/* Botões de navegação específicos para galeria retrato em mobile */
.portrait-gallery .gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.portrait-gallery .gallery-nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.portrait-gallery .gallery-prev-btn {
    left: 20px;
}

.portrait-gallery .gallery-next-btn {
    right: 20px;
}

/* Ajustes específicos para mobile */
@media screen and (max-width: 768px) {
    .portrait-gallery .gallery-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .portrait-gallery .gallery-prev-btn {
        left: 10px;
    }
    
    .portrait-gallery .gallery-next-btn {
        right: 10px;
    }
}

/* Estilos adicionais para os cards */
.card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #ffd700 0%, #ff69b4 100%);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.card-content h3 {
    color: white;
    margin: 0;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.card-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 5px 0 0;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
    .card-content h3 {
        font-size: 16px;
    }
    
    .card-content p {
        font-size: 13px;
    }
}

.new-carousel-section {
    padding: 50px 0;
    background: #0f0f0f;
}

.new-carousel-container {
    margin: 0 auto;
    padding: 0;
    max-width: 1400px;
    width: 100%;
}

.section-title {
    text-align: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow-x: auto;
    width: 100%;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 30px;
    padding: 0 40px;
    justify-content: center;
}

.carousel-item {
    flex: 0 0 400px;
    min-width: 400px;
    scroll-snap-align: center;
}

.card {
    display: block;
    text-decoration: none;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
    background: #1a1a1a;
}

.card-content h3 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.card-content p {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-nav-btn:hover {
    background: rgba(255, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.carousel-prev-btn {
    left: -20px;
}

.carousel-next-btn {
    right: -20px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .carousel-track {
        padding: 0 20px;
        justify-content: flex-start;
    }
    
    .carousel-item {
        flex: 0 0 calc(100% - 40px);
        min-width: calc(100% - 40px);
    }
    
    .carousel-nav-btn {
        display: none;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .card-content h3 {
        font-size: 1.1rem;
    }
    
    .card-content p {
        font-size: 0.85rem;
    }
}

.twitter-gradient {
    background: linear-gradient(
        90deg,
        #000000,
        #1a1a1a,
        #333333,
        #1a1a1a,
        #000000
    ) !important;
    background-size: 400% 100% !important;
    animation: gradientShift 4s linear infinite !important;
    border: none !important;
    box-shadow: 0 0 20px #000000cc !important;
}

.twitter-gradient:hover {
    background: linear-gradient(
        90deg,
        #000000,
        #1a1a1a,
        #333333,
        #1a1a1a,
        #000000
    ) !important;
    transform: translateY(-2px);
    box-shadow: 0 0 25px #000000e6 !important;
}
