/* 
 * 骐骐项目 - 主样式文件
 * 文件名: style.css
 * 位置: css/style.css
 */

/* 基础样式与重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
}

body {
    background: linear-gradient(135deg, #8b0000 0%, #c62828 50%, #8b0000 100%);
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* 春节装饰背景 */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 90% 40%, rgba(255, 215, 0, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 50% 80%, rgba(255, 215, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

/* 容器样式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(178, 34, 34, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.5);
    border: 5px solid #FFD700;
    position: relative;
    z-index: 1;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* 顶部装饰 */
.top-decoration {
    height: 80px;
    background: linear-gradient(to right, #8b0000, #c62828, #8b0000);
    position: relative;
    overflow: hidden;
}

.top-decoration::before, .top-decoration::after {
    content: "⦻";
    position: absolute;
    top: 10px;
    color: #FFD700;
    font-size: 40px;
    font-family: 'Ma Shan Zheng', cursive;
}

.top-decoration::before {
    left: 50px;
}

.top-decoration::after {
    right: 50px;
}

.lantern {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 80px;
    background: linear-gradient(45deg, #ff0000, #ff6666);
    border-radius: 30px 30px 15px 15px;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.5);
}

.lantern::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #FFD700;
    border-radius: 50%;
}

.lantern::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #FFD700, #ffcc00);
    border-radius: 50%;
    box-shadow: 0 0 20px #FFD700;
}

/* 头部样式 */
header {
    text-align: center;
    padding: 50px 30px 40px;
    background: linear-gradient(to bottom, #8b0000, #c62828);
    position: relative;
    overflow: hidden;
}

header::before {
    content: "新春大吉";
    position: absolute;
    top: 20px;
    left: 20px;
    color: #FFD700;
    font-size: 24px;
    font-family: 'Ma Shan Zheng', cursive;
    transform: rotate(-15deg);
    opacity: 0.8;
}

header::after {
    content: "万事如意";
    position: absolute;
    top: 20px;
    right: 20px;
    color: #FFD700;
    font-size: 24px;
    font-family: 'Ma Shan Zheng', cursive;
    transform: rotate(15deg);
    opacity: 0.8;
}

h1 {
    font-size: 4.5em;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #FFD700, #FFFFFF, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 1;
    letter-spacing: 5px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif; /* 修改为与.subtitle相同的字体 */
}

.subtitle {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto;
    padding: 25px;
    background: rgba(139, 0, 0, 0.7);
    border-radius: 20px;
    border: 3px solid #FFD700;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* 主要内容区域 */
.main-content {
    padding: 40px 30px;
    background: rgba(198, 40, 40, 0.9);
}

section {
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(145deg, #8b0000, #c62828);
    border-radius: 20px;
    border: 3px solid #FFD700;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

section::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

section:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

section:hover::before {
    opacity: 1;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Ma Shan Zheng', cursive;
    position: relative;
    z-index: 1;
}

h3 {
    font-size: 1.8em;
    margin: 25px 0 15px;
    color: #FFD700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #FFD700;
}

/* 私募信息样式 */
.private-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.info-card {
    background: linear-gradient(145deg, #8b0000, #c62828);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #FFD700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.info-card h4 {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.address-box {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 10px;
    font-family: monospace;
    word-break: break-all;
    margin: 15px 0;
    border: 2px dashed #FFD700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.copy-btn {
    background: linear-gradient(45deg, #FFD700, #ffcc00);
    color: #8b0000;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1em;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.copy-btn:hover {
    background: linear-gradient(45deg, #ffcc00, #FFD700);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

.price-text {
    font-size: 2.5em;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight-text {
    color: #FFD700;
    margin-top: 10px;
}

.warning-text {
    color: #FFD700;
}

/* 进度条样式 */
.progress-container {
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 1.2em;
}

.progress-bar {
    height: 35px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 10px;
    position: relative;
    border: 2px solid #FFD700;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #ffcc00, #FFD700);
    width: 0%;
    border-radius: 20px;
    transition: width 1.5s ease;
    position: relative;
}

.mechanism-box {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(145deg, #8b0000, #c62828);
    border-radius: 15px;
    border: 2px solid #FFD700;
}

/* 项目定位网格 */
.position-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.position-item {
    padding: 25px;
    background: linear-gradient(145deg, #8b0000, #c62828);
    border-radius: 15px;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.position-item::before {
    content: "福";
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 80px;
    color: rgba(255, 215, 0, 0.1);
    font-family: 'Ma Shan Zheng', cursive;
    transform: rotate(15deg);
}

.position-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* 核心角色样式 */
.character {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 25px;
    padding: 30px;
    background: linear-gradient(145deg, #8b0000, #c62828);
    border-radius: 20px;
    border: 3px solid #FFD700;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.character::before {
    content: "骐";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 200px;
    color: rgba(255, 215, 0, 0.05);
    font-family: 'Ma Shan Zheng', cursive;
    z-index: 0;
}

.character-icon {
    font-size: 6em;
    color: #FFD700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.character-details {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 1;
}

.character-details ul {
    list-style-type: none;
    padding-left: 0;
}

.character-details li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.1em;
}

.character-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 1.2em;
    font-weight: bold;
}

/* 资金机制网格 */
.mechanism-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.mechanism-item {
    padding: 25px;
    background: linear-gradient(145deg, #8b0000, #c62828);
    border-radius: 15px;
    border: 2px solid #FFD700;
}

.mechanism-item ul {
    margin-top: 15px;
    padding-left: 20px;
}

.mechanism-item li {
    margin-bottom: 10px;
}

/* 表格样式 */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: rgba(139, 0, 0, 0.7);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #FFD700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

th, td {
    padding: 20px;
    text-align: left;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

th {
    background: linear-gradient(45deg, #8b0000, #c62828);
    color: #FFD700;
    font-weight: bold;
    font-size: 1.1em;
}

tr:hover {
    background: rgba(255, 215, 0, 0.1);
}

/* 烟花按钮 */
.firework-btn {
    background: linear-gradient(45deg, #ff0000, #ff6666);
    color: #FFD700;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 30px auto;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.firework-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.firework-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.5);
}

.firework-btn:hover::before {
    left: 100%;
}

/* 社交媒体样式 - 已改为金黄色 */
.social-media {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(145deg, rgba(139, 0, 0, 0.8), rgba(198, 40, 40, 0.8));
    border-radius: 15px;
    border: 2px solid #FFD700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.social-media h3 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.8em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 20px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 120px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #FFD700;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.2) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link i {
    font-size: 2.5em;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.social-link span {
    font-size: 1.2em;
    font-weight: bold;
    transition: color 0.3s ease;
}

/* 所有社交媒体链接都使用金黄色 */
.social-link.twitter,
.social-link.telegram {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(139, 0, 0, 0.3));
    border-color: #FFD700;
}

.social-link.twitter i,
.social-link.telegram i {
    color: #FFD700;
}

.social-link.twitter span,
.social-link.telegram span {
    color: #FFD700;
}

.social-link.twitter:hover,
.social-link.telegram:hover {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.2), rgba(139, 0, 0, 0.4));
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.social-link.twitter:hover i,
.social-link.telegram:hover i {
    transform: scale(1.1);
    color: #ffcc00;
}

.social-link.twitter:hover span,
.social-link.telegram:hover span {
    color: #ffcc00;
}

.social-tip {
    color: #FFD700;
    font-size: 1.1em;
    margin-top: 15px;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 页脚样式 */
footer {
    text-align: center;
    padding: 30px;
    color: #FFD700;
    background: linear-gradient(to top, #8b0000, #c62828);
    border-top: 5px solid #FFD700;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "新春快乐 恭喜发财";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    font-size: 40px;
    color: rgba(255, 215, 0, 0.1);
    font-family: 'Ma Shan Zheng', cursive;
    white-space: nowrap;
}

.footer-main {
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-size: 1.2em;
    margin-bottom: 15px;
}

.footer-blessing {
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-size: 1.1em;
}

.footer-note {
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-top: 15px;
    font-size: 0.9em;
    opacity: 0.9;
}

/* 响应式设计 */
@media (max-width: 768px) {
    h1 { font-size: 3em; }
    h2 { font-size: 2em; }
    .main-content { padding: 20px 15px; }
    section { padding: 20px; }
    .private-info { grid-template-columns: 1fr; }
    .position-grid { grid-template-columns: 1fr; }
    .character { flex-direction: column; text-align: center; }
    th, td { padding: 15px; }
    .top-decoration::before, .top-decoration::after { display: none; }
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .social-link {
        width: 80%;
        max-width: 250px;
    }
    .social-media h3 {
        font-size: 1.5em;
    }
}