/* Article Hero Section */
.article-hero {
    padding-top: 80px;
    background-color: var(--gray-color);
}

.article-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.article-meta {
    padding: 2rem 0;
}

.meta-tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag i, .tag img {
    margin-left: 0.5rem;
}

.tag-icon {
    width: 20px;
    height: 20px;
}

.coin-tag {
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
}

.source-tag {
    background-color: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.category-tag {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.tag:hover {
    transform: translateY(-2px);
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.article-info {
    display: flex;
    gap: 2rem;
    color: #666;
    font-size: 0.9rem;
}

.article-info span {
    display: flex;
    align-items: center;
}

.article-info i {
    margin-left: 0.5rem;
    color: var(--primary-color);
}

/* Article Content */
.article-content {
    padding: 4rem 0;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block .lead {
    font-size: 1.25rem;
    color: #444;
    margin-bottom: 2rem;
}

.content-block h2 {
    color: var(--dark-color);
    font-weight: 700;
    margin: 2rem 0 1rem;
}

/* Analysis Card */
.analysis-card {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.analysis-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.analysis-header i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-left: 1rem;
}

.analysis-header h3 {
    margin: 0;
    font-weight: 600;
}

.sentiment-indicator {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.indicator-label {
    width: 80px;
    font-weight: 600;
}

.indicator-bar {
    flex-grow: 1;
    height: 8px;
    background-color: #eee;
    border-radius: 4px;
    margin: 0 1rem;
    overflow: hidden;
}

.indicator-bar .progress {
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    transition: width 0.3s ease;
}

.indicator-value {
    font-weight: 600;
    color: var(--primary-color);
}

.key-points {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.key-points h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.key-points ul {
    padding-left: 1.5rem;
    margin-bottom: 0;
}

.key-points li {
    margin-bottom: 0.5rem;
    color: #444;
}

/* FAQs Section */
.faqs-section {
    margin: 3rem 0;
}

.faqs-section h2 {
    margin-bottom: 2rem;
    font-weight: 700;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button {
    padding: 1.25rem;
    font-weight: 600;
    background-color: var(--light-color);
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(255, 107, 0, 0.05);
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: all 0.3s ease;
}

.accordion-body {
    padding: 1.25rem;
    background-color: var(--light-color);
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
}

.share-buttons {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.share-buttons h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.social-buttons {
    display: flex;
    gap: 1rem;
}

.btn-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-twitter {
    background-color: #000;
    color: var(--light-color);
}

.btn-facebook {
    background-color: #1877f2;
    color: var(--light-color);
}

.btn-telegram {
    background-color: #0088cc;
    color: var(--light-color);
}

.btn-linkedin {
    background-color: #0a66c2;
    color: var(--light-color);
}

.btn-social:hover {
    transform: translateY(-2px);
    color: var(--light-color);
}

.price-widget {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.price-widget h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.price-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-change {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 600;
}

.price-change.positive {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.price-change.negative {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Related Posts */
.related-posts {
    background-color: var(--gray-color);
    padding: 4rem 0;
}

.related-post-card {
    background-color: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.related-post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.post-category {
    color: var(--primary-color);
    font-weight: 600;
}

.post-date {
    color: #666;
}

.related-post-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .article-image img {
        height: 300px;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-info {
        flex-direction: column;
        gap: 1rem;
    }

    .meta-tags {
        flex-wrap: wrap;
    }

    .social-buttons {
        justify-content: center;
    }

    .related-post-card {
        margin-bottom: 2rem;
    }
} 