/* Radio Musicstar Astrocheck Styles */
.rma-astro-container {
    max-width: 1000px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
}

/* Grid für die Sternzeichen-Auswahl */
.rma-sign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.rma-sign-card {
    background: linear-gradient(135deg, #6b11ff 0%, #b827fc 100%);
    color: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(107, 17, 255, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rma-sign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(107, 17, 255, 0.5);
    color: #fff;
}

.rma-sign-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.rma-sign-card h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

/* Detailansicht */
.rma-detail-view {
    background: #f9f9fb;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.rma-back-btn {
    display: inline-block;
    margin-bottom: 20px;
    color: #6b11ff;
    text-decoration: none;
    font-weight: 600;
}

.rma-back-btn:hover {
    text-decoration: underline;
}

.rma-detail-view h2 {
    color: #1a1a1a;
    font-size: 28px;
    margin-bottom: 20px;
}

.rma-intro-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-left: 4px solid #6b11ff;
    border-radius: 0 8px 8px 0;
}

/* Kategorien (Lust & Liebe, etc.) */
.rma-category-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.rma-cat-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.rma-cat-item h4 {
    margin-top: 0;
    color: #6b11ff;
    font-size: 18px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

.rma-cat-item p {
    margin-bottom: 0;
    line-height: 1.5;
    color: #555;
}