* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
    'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f1f5fd;;
    overscroll-behavior-y: contain;
    padding-bottom: 80px;
}
a{text-decoration: none;}
.logo{
    width:100%;
    height: auto;
    text-align: center;
    padding: 5px 0;
    font-size: 20px;
    font-weight: bold;
    color: #fc8181;
    background-color: #fff;
    margin-bottom: 1px;
}

/* 第一行样式 */
.header {
    display: flex;
    align-items: center;
    padding: 10px 0;
    background-color: #fff;
}
.avatar2 {
    width: 40px;
    height: 40px;
    overflow: hidden;
    margin-left:10px;
    display: block;
}
.avatar2 iconfont {color: #333;}
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f3f4f1;
    margin-right: 5px;
    overflow: hidden;
    margin-left:5px;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-container {
    flex: 1;
    display: flex;
    align-items: center;
    background-color: #f3f4f1;
    border-radius: 20px;
    padding: 8px 15px;
}

.search-icon {
    color: #a3a3a3;
    margin-right: 10px;
    font-size: 18px;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    color: #a3a3a3;
    font-size: 16px;
    margin-left: 5px;
}

.search-input::placeholder {
    color: #a3a3a3;
}

.history-icon {
    width: 40px; /* 调整为48px */
    height: 40px; /* 调整为48px */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a3a3a3;
    font-size: 24px;
    flex-shrink: 0;
}

/* 第二行导航栏样式 */
.nav-container {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
    background-color: #fff;
}

.nav-container::-webkit-scrollbar {
    display: none;
}

.nav-list {
    display: inline-flex;
    list-style: none;
    padding-right: 25px;
}

.nav-item {
    margin-left: 25px;
    position: relative;
}

.nav-item:last-child {
    margin-right: 0;
}

.nav-link {
    text-decoration: none;
    color: #6a6a6a;
    font-size: 16px;
    padding: 8px 0;
    display: block;
}

.nav-link.active {
    color: #fc8181;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fc8181;
}
/* 内容区域样式 */
.content-area {
    display: none;
    padding: 10px 0;
    border: 1px solid #eee;
    border-radius: 8px;
    animation: fadeIn 0.3s ease;
}

.content-area.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* 轮播图样式 */
.swiper-container {
    width: 96%;
    height: 180px;
    border-radius: 8px;
    margin-bottom: 10px;
    margin-left: 2%;
    overflow: hidden;
    position: relative; /* 添加相对定位 */
}

.swiper-slide {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: white;
    font-weight: bold;
    font-size: 24px;

}

/* 轮播图指示器样式 */
.swiper-pagination-bullet {
    background: white;
    opacity: 0.6;
    z-index: 9;

}

.swiper-pagination-bullet-active {
    background: #fc8181;
    opacity: 1;
}
.swiper-pagination {
    position: absolute; /* 绝对定位在轮播图内部 */
    bottom: 10px !important; /* 距离底部10px */
    left: 0;
    right: 0;
    z-index: 10;
}
.move-content {
    width: 96%;
    margin-left: 2%;
    border-radius: 8px;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* 关键修改：始终从左开始排列 */
    gap: 10px;
    padding: 10px;
}

.item {
    flex: 0 0 calc(33.333% - 7px); /* 固定宽度为1/3 */
    max-width: calc(33.333% - 7px);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    box-sizing: border-box;
}




.item-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden; /* 确保圆角生效 */
}

.item-img img {
    width: 100%;
    height: auto;
    display: block; /* 移除图片底部间隙 */
    object-fit: cover; /* 保持图片比例填充 */
    aspect-ratio: 3/4; /* 设置图片宽高比，如3:4 */
}

.item-title {
    font-size: 14px;
    color: #333;
    text-align: center;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 限制两行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.move-subnav{
    width:98%;
    height: auto;
    margin-top: 10px;
    font-size: 18px;
    color: #333;
    padding: 0 1%;

}
.move-subnav a{color: #333; text-decoration: none;}
.move-subnav span{float: right;}

/* 底部导航样式 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

.nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333; /* 默认黑色 */
    font-size: 12px;
    flex: 1;
    height: 100%;
}

.nav-btn i {
    font-size: 24px;
    margin-bottom: 4px;
}

.nav-btn.active {
    color: #fc8181; /* 选中状态粉色 */
}

/* 筛选模块容器 */
.filter-container {
    width:96%;
    height: auto;
    margin-left: 2%;
    background-color: white;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* 筛选条件组 */
.filter-group {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start; /* 确保标题和选项对齐 */
}

/* 筛选条件标题 */
.filter-title {
    width: 70px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
    flex-shrink: 0;
    padding-top: 8px;
    position: sticky;
    left: 0;
    background: white; /* 防止滚动时文字重叠 */
    z-index: 1;
}

/* 筛选选项容器 - 修改为横向滚动 */
.filter-options {
    flex: 1;
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 10px; /* 给滚动条留空间 */
    -webkit-overflow-scrolling: touch; /* iOS平滑滚动 */
}

/* 移除多行布局的特殊样式 */
.filter-options.multi-line {
    margin-left: 0;
    padding-left: 0;
}

/* 筛选选项样式 */
.filter-option {
    padding: 8px 15px;
    background-color: #f5f5f5;
    border-radius: 16px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0; /* 防止选项被压缩 */
}

/* 选中状态 */
.filter-option.selected {
    background-color: #fc8181;
    color: white;
}

/* 隐藏滚动条（可选） */
.filter-options::-webkit-scrollbar {
    height: 4px;
    /*display: none; !* 如果需要完全隐藏滚动条 *!*/
}

.filter-options::-webkit-scrollbar-thumb {
    background: #fc8181;
    border-radius: 2px;
}


/* 电影展示模块 */
.movie-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    padding: 20px;
    margin-bottom: 10px;
    margin-top:10px;
}

/* 电影海报 */
.movie-poster {
    width: 120px;
    height: 180px;
    margin-right: 20px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 电影信息区域 */
.movie-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 电影标题 */
.movie-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

/* 评分 */
.movie-rating {
    color: #4CAF50; /* 绿色 */
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.movie-rating .star {
    color: #FFC107;
    margin-right: 5px;
}

/* 主演和导演 */
.movie-cast, .movie-director {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.movie-cast span, .movie-director span {
    color: #333;
    font-weight: 500;
}

/* 按钮区域 */
.movie-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.action-btn {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.2s;
}

.play-btn {
    background-color: #fc8181;
    color: white;
}

.play-btn:hover {
    background-color: #ff7ea5;
}

.favorite-btn {
    background-color: #f0f0f0;
    color: #666;
}

.favorite-btn:hover {
    background-color: #e0e0e0;
}
/* 滑动门集数列表模块 */
.episode-tabs {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.tab-header {
    display: flex;
    border-bottom: 1px solid #eee;
}

.tab-title {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    font-size: 16px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.tab-title.active {
    color: #fc8181;
}

.tab-title.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 3px;
    background-color: #fc8181;
    border-radius: 3px;
}

.tab-content {
    display: none;
    padding: 15px;
}

.tab-content.active {
    display: block;
}

.episode-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 12px;
}
.episode-container a .active {
    background-color: #fc8181;
    color: #fff;
}
.episode-container a .active:after {
    background-color: #fc8181;
}

.episode-item {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 8px 5px;
    text-align: center;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}

.episode-item:hover {
    border-color: #fc8181;
    color: #fc8181;
}
/* 剧情介绍模块 */
.plot-section {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    margin-top: 10px;
}

.section-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    padding-bottom: 12px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.section-title i {
    color: #fc8181;
    margin-right: 8px;
    font-size: 20px;
}

.plot-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    text-align: justify;
}

/* 猜你喜欢模块 */
.recommend-movies {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.recommend-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.recommend-poster {
    width: 100%;
    height: 0;
    padding-bottom: 150%;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
    position: relative;
}

.recommend-poster img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recommend-name {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}
/* 通用卡片样式 */
.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    margin-top: 10px;
}
/* 播放器模块 */
.player-section {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.player-container {
    width: 100%;
    /*aspect-ratio: 16/9; !* 16:9播放器比例 *!*/
    /*background-color: #000;*/
    /*border-radius: 8px;*/
    /*overflow: hidden;*/
    margin-bottom: 15px;
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    /*color: white;*/
}

.player-placeholder {
    /*font-size: 18px;*/
    /*color: #999;*/
}

.video-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
    text-align: center;
}

.video-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    color: #666;
}

.video-meta span {
    color: #333;
    font-weight: 500;
}
/* 顶部导航栏 */
.history-header {
    position: sticky;
    top: 0;
    background-color: white;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    z-index: 100;
}

.back-btn {
    font-size: 20px;
    color: #333;
    margin-right: 10px;
    display: flex;
    align-items: center;
}
.back-btn2 {
    flex: 1;
    display: flex;
    font-size: 20px;
    color: #333;
    margin-right: 10px;
    align-items: center;
}


.history-title {
    flex: 1;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

/* 历史记录列表 */
.history-container {
    padding: 10px;
}

.history-item {
    background-color: white;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    display: flex;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.history-poster {
    width: 80px;
    height: 120px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 12px;
}

.history-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.history-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.history-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.history-episode {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    /* 限制行数 */
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 限制显示3行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5; /* 设置合适的行高 */
    max-height: 4.5em; /* 3行 * 1.5行高 = 4.5em */
    word-wrap: break-word;    /* 允许长单词换行 */
    word-break: break-all;    /* 更激进的分词方式 */
    overflow-wrap: break-word; /* 现代标准属性 */
}

.history-play-btn {
    align-self: flex-start;
    padding: 6px 12px;
    background-color: #fc8181;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.history-play-btn:hover {
    background-color: #ff8cad;
}

/* 顶部标题 */
.profile-header {
    background-color: white;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

.profile-title {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    padding:10px 0;
}

/* 用户信息区域 */
.user-section {
    position: relative;
    margin: 0 10px 30px; /* 增加下边距为白色div留空间 */
}

.user-info {
    background-color: #f2f2f2;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-bottom: 30px; /* 为白色div留出空间 */
}

/* 调整后的白色div */
.auth-panel {
    position: absolute;
    bottom: -120px; /* 只覆盖底部20px */
    left: 15px;
    right: 15px;
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 2;
    height: auto; /* 固定高度 */
}

.auth-banner {
    width: 100%;
    height: 60px; /* 减少高度 */
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
}

.auth-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.auth-btn {
    flex: 1;
    padding: 8px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.2s;
    text-align: center;
}

.login-btn {
    background-color: #f0f0f0;
    color: #666;
}

.register-btn {
    background-color: #fc8181;
    color: white;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-detail {
    flex: 1;
}

.user-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.user-role {
    font-size: 14px;
    color: #666;
}

/* 菜单项 */
.menu-container {
    padding: 0 10px;
    margin-top: 160px; /* 调整间距 */
}

.menu-item {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.menu-icon {
    font-size: 20px;
    color: #fc8181;
    margin-right: 12px;
    width: 24px;
    text-align: center;
}

.menu-text {
    flex: 1;
    font-size: 16px;
    color: #333;
    margin-left: 15px;
}

.menu-arrow {
    font-size: 16px;
    color: #999;
}

/* 顶部标题 */
.register-header {
    background-color: white;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    border-radius: 10px;
}

.register-title {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.back-btn {
    position: absolute;
    left: 15px;
    font-size: 20px;
    color: #333;
    text-decoration: none;
}

/* 注册表单 */
.register-container {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: #fc8181;
    outline: none;
}

.captcha-group {
    display: flex;
    gap: 10px;
}

.captcha-input {
    flex: 1;
}

.captcha-btn {
    padding: 0 15px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 8px;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.captcha-btn:hover {
    background-color: #e0e0e0;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #fc8181;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #ff8cad;
}

.login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.login-link a {
    color: #fc8181;
    text-decoration: none;
}
/* 顶部标题 */
.login-header {
    background-color: white;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    border-radius: 10px;
}

.login-title {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}


/* 登录表单 */
.login-container {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.forgot-password {
    text-align: right;
    margin-top: 10px;
}

.forgot-password a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
}

.register-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.register-link a {
    color: #fc8181;
    text-decoration: none;
}
.pagination-container {
    margin: 20px auto;
    text-align: center;
    padding: 0 15px;
}
.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-left: 0;
    margin: 20px 0;
    list-style: none;
}
.pagination > li {
    margin: 3px;
}
.pagination > li > a,
.pagination > li > span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    font-size: 14px;
    color: #fc8181;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #fc8181;
    border-radius: 18px;
    transition: all 0.3s ease;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    color: #fff;
    background-color: #fc8181;
    border-color: #fc8181;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    color: #fff;
    background-color: #fc8181;
    border-color: #fc8181;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
    color: #ccc;
    background-color: #fff;
    border-color: #eee;
}
.contact-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h1 {
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-header p {
    color: #666;
    font-size: 16px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #fc8181;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 158, 187, 0.2);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #fc8181;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-info p {
    color: #666;
    font-size: 16px;
    margin-bottom: 12px;
}

.contact-link {
    display: inline-block;
    padding: 8px 16px;
    background: #fc8181;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.contact-link:hover {
    background: #ff7ba9;
}

.contact-note {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.contact-note p {
    color: #888;
    font-size: 14px;
}



