/* 通用样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 背景样式 */
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    background: linear-gradient(135deg, #e0f7fa, #80deea);
    color: #333;
    padding: 20px;
}

/* 主容器 */
.container {
    width: 100%;
    max-width: 800px;
    text-align: center;
    margin-bottom: 20px;
}

/* 个人信息卡片 */
.profile-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* 头像 */
.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #80deea;
}

/* 名字 */
.name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

/* 发布平台卡片 */
.platform-card {
    background: #f5f5f5;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.platform-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

/* 平台列表 */
.platform-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

/* 单个平台项 */
.platform-item {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    color: #ffffff;
    width: 60%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* 平台颜色 */
.personal-site {
    background: #8bc34a; /* 浅绿色 */
}

.bilibili {
    background: #00a1d6; /* 蓝色 */
}

.xigua {
    background: #fa541c; /* 橙色 */
}

.toutiao {
    background: #fa541c; /* 橙色 */
}

.douyin {
    background: #6a0dad; /* 紫色 */
}

.xiaohongshu {
    background: #e91e63; /* 红色 */
}

.youtube {
    background: #ff0000; /* 深红色 */
}

/* 页脚样式 */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}