/* Estilos gerais */
body {
    font-family: 'Arial', sans-serif;
    background-color: #000; /* Fundo preto */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Estilo do card */
.card {
    background: linear-gradient(145deg, var(--cor1, #eb1400), var(--cor2, #540199)); /* Duas cores personalizáveis */
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    margin: 20px;
    position: relative;
    overflow: hidden;
}

/* Efeito metálico no card */
.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    transform: rotate(45deg);
    z-index: 1;
    pointer-events: none;
}

/* Fundo neon personalizável */
.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neon, rgba(255, 111, 97, 0.1)); /* Cor neon personalizável */
    border-radius: 15px;
    z-index: 0;
    pointer-events: none;
}

/* Conteúdo do card (texto, imagens, etc.) */
.card-content {
    position: relative;
    z-index: 2;
}

h1 {
    color: #fff; /* Texto branco */
    font-size: 24px;
    margin-bottom: 20px;
}

.content {
    color: #fff; /* Texto branco */
    padding: 0 10px;
}

.date {
    font-size: 18px;
    margin-bottom: 15px;
}

.message {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.emoji-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.emoji-container span {
    font-size: 24px;
}

.counter {
    font-size: 18px;
    color: #fff; /* Texto branco */
    margin: 20px 0;
    background-color: rgba(255, 255, 255, 0.1); /* Fundo semi-transparente */
    padding: 10px;
    border-radius: 8px;
}

.counter p {
    margin: 5px 0;
}

#time-together {
    font-weight: bold;
    color: var(--cor1, #ffffff); /* Cor personalizável */
}

iframe {
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
}

/* Estilo do carrossel */
.carousel {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    border-radius: 10px;
    margin: 20px 0;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-image {
    width: 100%;
    display: none;
    border-radius: 10px;
}

.carousel-image.active {
    display: block;
}