* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #000;
    background: #ffffff;
    min-height: 100vh;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.header {
    text-align: center;
    color: #1f2d3d;
    margin-bottom: 50px;
    animation: fadeInDown 1s ease-out;
}
.header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.header p {
    font-size: 1.3rem;
    opacity: 0.9;
}
.section {
    background: #ffffff;
    color: #222;
    
    background: rgba(255, 255, 255, 0.95);
    margin: 30px 0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(139, 115, 85, 0.2);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(160, 130, 109, 0.2);
}
.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(139, 115, 85, 0.25);
}
.profile-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}
.profile-image {
    width: 250px;
    height: 300px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #8B7355;
    border: 3px solid #D4B996;
    flex-shrink: 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.3);
    overflow: hidden;
}
.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.profile-content h2 {
    font-size: 2.5rem;
    color: #654321;
    margin-bottom: 20px;
    position: relative;
}
.profile-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #8B7355, #D4B996);
    border-radius: 2px;
}
.profile-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000;
    margin-bottom: 15px;
}
.achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
.achievement-item {
    background: linear-gradient(45deg, #A0826D, #8B7355);
    color: #000;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    animation: slideInUp 1s ease-out;
}
.stock-analysis-section {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-direction: row-reverse;
    margin: 40px 0;
}
.stock-charts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
}
.chart-item {
    width: 300px;
    height: 180px;
    background: linear-gradient(45deg, #D4B996, #A0826D);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: bold;
    animation: chartPulse 3s infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
}
.chart-item:hover {
    transform: scale(1.05);
}
.chart-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.market-insights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}
.insight-card {
    background: #ffffff;
    border: 1px solid #cde6cd;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(139, 115, 85, 0.15);
    transition: transform 0.3s ease;
    border-left: 5px solid #8B7355;
}
.insight-card:hover {
    transform: translateY(-10px);
}
.insight-card h3 {
    color: #654321;
    margin-bottom: 15px;
    font-size: 1.3rem;
}
.book-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
}
.book-covers {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}
.book-cover {
    width: 120px;
    height: 160px;
    background: linear-gradient(45deg, #A0826D, #8B7355);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.9rem;
    text-align: center;
    padding: 10px;
    box-shadow: 0 10px 20px rgba(139, 115, 85, 0.4);
    animation: bookFloat 4s ease-in-out infinite;
}
.book-cover:nth-child(2) {
    animation-delay: -2s;
}
.media-appearances {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}
.media-item {
    background: #ffffff;
    color: #000;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    animation: slideInUp 1s ease-out;
}
.story-card::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}
.feature-card {
    background: #ffffff;
    border: 1px solid #cde6cd;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    background: #ffffff;
    color: #000;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    animation: slideInUp 1s ease-out;
}
.feature-card:hover {
    transform: scale(1.05);
}
.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}
.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.cta-section {
    text-align: center;
    background: #ffffff;
    color: #000;
    padding: 50px;
    border-radius: 20px;
    margin: 50px 0;
}
.cta-button {
    display: inline-block;
    background: white;
    color: #8B7355;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 20px 10px;
    animation: bounce 2s infinite;
}
.cta-button {
        box-shadow: 0 5px 15px rgba(243, 156, 18, 0.6);
    }
    .cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.4);
}
.highlight {
    background: linear-gradient(45deg, #DAA520, #B8860B);
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}
/* Breadcrumb Navigation */
.breadcrumb a {
    color: #8B7355;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
/* FAQ Section */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes chartPulse {
    0%, 100% {
        opacity: 1;
        transform: rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: rotate(2deg);
    }
}
@keyframes bookFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
@media (max-width: 768px) {
    .profile-section,
    .stock-analysis-section,
    .book-section {
        flex-direction: column;
        text-align: center;
    }
    .header h1 {
        font-size: 2rem;
    }
    .section {
    background: #ffffff;
    color: #222;
    
        padding: 20px;
    }
    .profile-image {
        width: 200px;
        height: 240px;
    }
    .chart-item {
        width: 100%;
        max-width: 300px;
    }
}
.floating-button-container {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
    pointer-events: none;
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.floating-button {
        position: relative;
        background: linear-gradient(45deg, #3a802f, #4fa745);
        color: #000;
        padding: 18px 36px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 800;
        font-size: 20px;
        box-shadow: 0 10px 25px rgba(79, 167, 69, 0.4);
        display: flex;
        align-items: center;
        gap: 12px;
        animation: breathing 2s infinite;
        transition: all 0.3s ease;
        white-space: nowrap;
        pointer-events: auto;
    }
.floating-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(139, 115, 85, 0.6);
}
.floating-button .icon {
    font-size: 24px;
}
@media (max-width: 768px) {
    .floating-button-container {
        bottom: 20px;
    }
    .floating-button {
        position: relative;
        background: linear-gradient(45deg, #3a802f, #4fa745);
        color: #000;
        padding: 18px 36px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 800;
        font-size: 20px;
        box-shadow: 0 10px 25px rgba(79, 167, 69, 0.4);
        display: flex;
        align-items: center;
        gap: 12px;
        animation: breathing 2s infinite;
        transition: all 0.3s ease;
        white-space: nowrap;
        pointer-events: auto;
    }
}
@media (max-width: 480px) {
    .floating-button {
        position: relative;
        background: linear-gradient(45deg, #3a802f, #4fa745);
        color: #000;
        padding: 18px 36px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 800;
        font-size: 20px;
        box-shadow: 0 10px 25px rgba(79, 167, 69, 0.4);
        display: flex;
        align-items: center;
        gap: 12px;
        animation: breathing 2s infinite;
        transition: all 0.3s ease;
        white-space: nowrap;
        pointer-events: auto;
    }
    .floating-button .icon {
        font-size: 18px;
    }
}

@keyframes breathing {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

@media (min-width: 769px) {
    .floating-button-container {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .floating-button-container {
        display: flex !important;
    }
}

.cta-box {
    background: #ffffff;
    border: 2px solid #cde6cd;
    border-radius: 15px;
    padding: 25px 30px;
    margin-top: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.8;
}

.cta-box h4 {
    font-weight: bold;
    margin-bottom: 15px;
}

.cta-box .checklist {
    margin-left: 10px;
}

.cta-box .checklist p {
    margin: 8px 0;
    color: #000;
}

/* 强化底部按钮颜色 */
.floating-button {
    background: linear-gradient(45deg, #ff5722, #ff9800);
    color: #fff;
    box-shadow: 0 10px 25px rgba(255, 87, 34, 0.4);
}

.floating-button:hover {
    background: linear-gradient(45deg, #e64a19, #fb8c00);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.5);
}
