.icp-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.icp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.icp-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 1.8rem;
    position: relative;
}

.icp-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0.8rem auto 0;
    border-radius: 3px;
}

.icp-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

.icp-table tr {
    border-bottom: 1px solid #f0f0f0;
}

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

.icp-table th {
    text-align: left;
    padding: 0.8rem 1rem 0.8rem 1rem;
    width: 120px;
    color: var(--text-secondary);
    font-weight: normal;
    vertical-align: top;
    background-color: #f9f9f9;
    border-right: 1px solid #e0e0e0;
}

.icp-table td {
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.domain-link {
    color: var(--domain-color);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.domain-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: var(--success-color);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.feedback-link {
    color: #ff4757;
    text-decoration: none;
    margin-left: 0.5rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.feedback-link:hover {
    opacity: 0.8;
}

.mascot {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 500;
}

.mascot::before {
    content: '✧･ﾟ: *✧･ﾟ:* ';
    opacity: 0.6;
}

.mascot::after {
    content: ' *:･ﾟ✧*:･ﾟ✧';
    opacity: 0.6;
}

@media (max-width: 768px) {
    .icp-card {
        padding: 1.5rem;
    }

    .icp-table th {
        width: 90px;
        padding-right: 0.5rem;
    }
}