.race-growth-container {
    padding: 24px;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeIn 0.4s ease;
}

.module-header {
    text-align: center;
    margin-bottom: 32px;
}

.module-title {
    font-size: 24px;
    color: var(--text-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: 2px;
}

.module-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
    background: rgba(212, 168, 83, 0.08);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(212, 168, 83, 0.2);
}

.race-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .race-cards {
        grid-template-columns: 1fr;
    }
}

.race-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.race-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.race-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.race-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.race-human .race-name { color: #f39c12; }
.race-immortal .race-name { color: #3498db; }
.race-demon .race-name { color: #e74c3c; }

.race-feature {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.growth-table-wrapper {
    background: var(--bg-surface);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(212, 168, 83, 0.15);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.growth-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.growth-table th, .growth-table td {
    padding: 16px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.growth-table th {
    background: rgba(212, 168, 83, 0.1);
    color: var(--text-gold);
    font-weight: 600;
    letter-spacing: 1px;
}

.growth-table tr:last-child td {
    border-bottom: none;
}

.growth-table tbody tr {
    transition: background 0.2s ease;
}

.growth-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.attr-name {
    font-weight: bold;
    color: var(--text-primary);
}

.val-high {
    color: #e74c3c;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(231, 76, 60, 0.3);
}

.val-mid {
    color: #f39c12;
    font-weight: bold;
}

.val-low {
    color: #3498db;
}

.val-common {
    color: var(--text-secondary);
    font-size: 13px;
}

.extra-info {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
    text-align: center;
}

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