.registration-hero {
    padding: 30px 20px;
    background: var(--register-bg);
    color: var(--text-main);
}

.main-logo-hero {
    max-width: 280px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(192, 57, 43, 0.4));
}

.registration-hero h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--register-h1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--light-color);
    margin: 0 auto 30px auto;
}

/* Benefit Cards */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto 30px auto;
}

.benefit-card {
    background: var(--register-glass-bg);
    border: 1px solid var(--register-glass-border);
    padding: 20px 20px 10px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    background: rgba(192, 57, 43, 0.05);
}

.benefit-card.highlighted {
    border-color: rgba(192, 57, 43, 0.5);
    background: linear-gradient(145deg, rgba(192, 57, 43, 0.1), transparent);
}

.benefit-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(192, 57, 43, 0.3);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color:var(--text-main);
}

.benefit-card p {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.btn-mega-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 45px;
   
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.btn-mega-cta:hover {
    transform: scale(1.05);
	text-decoration: none;
}

.trust-badge {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-hint {
    margin-top: 25px;
    color: var(--light-color);
}

.login-hint a {
    color: var(-text-main);
    text-decoration: none;
    border-bottom: 1px solid var(--secondary-color);
}


/* Spezifisches Styling für die Datenbank-Karte */
.database-highlight {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.2));
    border-color: rgba(255, 255, 255, 0.15);
}

.database-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-entry {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.database-count {
    font-size: 1.5rem; /* Richtig groß! */
    font-weight: 850;
    color: var(--text-main);
    line-height: 1.1;
    letter-spacing: -1px;
    /* Ein leichter Glow-Effekt für die Zahlen */
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.database-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-main);
    margin-top: 5px;
}

.database-callout {
    font-size: 0.9rem !important;
    color: var(--text-main) !important;
    line-height: 1.5;
}

.database-callout strong {
    color: var(--secondary-color-bright); /* Hebt das "Mitmach"-Argument hervor */
    font-weight: 700;
}

/* Hover-Effekt anpassen */
.database-highlight:hover .database-count {
    color: var(--secondary-color-bright);
    text-shadow: 0 0 20px rgba(231, 76, 60, 0.5);
}

.feature-tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.feature-tag {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.feature-tag i {
    color: var(--secondary-color-bright);
    font-size: 0.7rem;
}

.benefit-card:hover .feature-tag {
    color: var(--text-main);
    border-color: rgba(192, 57, 43, 0.3);
}


/* Honeypot */
.hp-container {
    position: absolute;
    left: -5000px;
    top: -5000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Erfolg */
.registration-success {
    text-align: center;
    padding: 15px;
    color: var(–-text-main);
    animation: fadeIn 0.5s ease-out;
}

.success-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--stat-bar-high-col);
}

.registration-success h2 {
	color: var(–-text-main);
    margin-bottom: 15px;
    font-size: 24px;
}

.main-msg {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.instructions {
    background: var(--box-secondary-bg);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.instructions ul {
    margin: 10px 0 0 20px;
    padding: 0;
}

.instructions li {
    margin-bottom: 8px;
}

.spam-notice {
    font-size: 13px;
    color: var(--light-color);
    margin-bottom: 25px;
    font-style: italic;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


@media (max-width: 1100px) and (min-width: 700px) {
    .benefit-grid {
        /* Springt hart von 4 auf 2 Spalten -> Symmetrie bleibt erhalten */
        grid-template-columns: repeat(2, 1fr); 
    }
}

/* Mobile: Ab unter 700px dann eine Box unter der anderen */
@media (max-width: 699px) {
    .benefit-grid {
        grid-template-columns: 1fr;
    }
}