/* Zentriert den Inhalt auf der Seite */
.container-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.intro-box {
    background: #151922;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #ff3b3b;
    margin-bottom: 40px;
    line-height: 1.6;
}

.intro-box p {
    margin-bottom: 10px;
}

/* Grid Layout für die Support-Optionen */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Card Styling */
.support-card {
    background: #151922;
    border: 1px solid #1c222d;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: #eaeaea;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: #ff3b3b;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.support-card i {
    font-size: 3rem;
    color: #ff3b3b;
    margin-bottom: 20px;
}

.support-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.support-card p {
    font-size: 0.95rem;
    color: #a0aec0;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* "Button" innerhalb der Karte */
.btn-fake {
    background: #1c222d;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border: 1px solid #ff3b3b;
    color: #ff3b3b;
    transition: all 0.3s ease;
}

.support-card:hover .btn-fake {
    background: #ff3b3b;
    color: #fff;
}

/* Highlight für die wichtigste Option */
.support-card.highlighted {
    background: linear-gradient(145deg, #151922, #1c222d);
    border: 1px solid rgba(255, 59, 59, 0.3);
}

/* Hall of Fame Sektion */
.hall-of-fame {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #1c222d;
    text-align: center;
}

.section-title {
    margin-bottom: 30px;
}

.section-title i {
    color: #ff3b3b;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Container für die Namen */
.supporter-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* Einzelnes Namens-Badge */
.supporter-badge {
    background: #151922;
    border: 1px solid #1c222d;
    padding: 10px 20px;
    border-radius: 50px; /* Pillen-Form */
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.supporter-badge:hover {
    border-color: #ff3b3b;
    background: #1c222d;
    transform: scale(1.05);
}

.supporter-icon {
    color: #ff3b3b;
    font-size: 0.9rem;
}

.supporter-name {
    font-weight: bold;
    color: #eaeaea;
    font-size: 0.95rem;
}

/* Special Styling für Top-Supporter (VIP) */
.supporter-badge.vip {
    border-color: #ff3b3b;
    box-shadow: 0 0 10px rgba(255, 59, 59, 0.2);
    background: linear-gradient(145deg, #1a1515, #151922);
}

.supporter-badge.vip .supporter-icon {
    color: #ffd700; /* Gold für Kronen */
}

.start-date {
    font-size: 0.85rem;
    color: #718096; /* Ein dezentes Grau */
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.start-date i {
    font-size: 0.8rem;
    color: #718096; /* Icon in der gleichen Farbe wie der Text */
    margin-bottom: 0; /* Reset für das Icon-Margin aus den anderen Sektionen */
}