.vote-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.vote-header h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.vote-desc {
    color: #ccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Neon-Warnung */
.neon-red {
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
    animation: glow 1.5s ease-in-out infinite alternate;
    display: block;
    margin-bottom: 30px;
    text-transform: uppercase;
}

@keyframes glow {
    from { text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000; }
    to { text-shadow: 0 0 15px #ff0000, 0 0 30px #ff0000; }
}

/* Vote Grid & Cards */
.vote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.vote-card {
    background: rgba(0, 0, 0, 0.6);
    padding: 35px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
}

.vote-card:hover {
    transform: scale(1.03);
    border-color: #00fbff;
}

.vote-icon {
    font-size: 2.5rem;
    color: #00fbff;
    margin-bottom: 15px;
}

.vote-card h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

.vote-card p {
    color: #bbb;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Button Styling */
.vote-btn {
    color: #00fbff;
    font-weight: 700;
    display: block;
    text-decoration: none;
    border: 2px solid #00fbff;
    padding: 12px;
    border-radius: 5px;
    transition: 0.3s ease;
    text-transform: uppercase;
}

.vote-btn:hover {
    background: #00fbff;
    color: #000;
}

/* Belohnungs-Box Styling */
.reward-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    background: rgba(0, 251, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    border: 1px dashed rgba(0, 251, 255, 0.3);
}

/* Der Diamant-Look */
.diamond-icon {
    font-size: 1.5rem;
    color: #b9f2ff; /* Klassisches Diamant-Blauweiß */
    filter: drop-shadow(0 0 8px #00fbff);
    animation: gemFloat 3s ease-in-out infinite;
}

.diamond-stack {
    position: relative;
    height: 30px;
    width: 40px;
}

.diamond-stack .second {
    position: absolute;
    top: 5px;
    left: 15px;
    animation-delay: 0.5s;
    opacity: 0.8;
}

/* Schwebende Animation für die Edelsteine */
@keyframes gemFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(10deg); }
}

.vote-card p {
    color: #eee;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}