/* Cryptocurrency Token Page Styles */

/* Hero Section */
.crypto-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 60px 0 40px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.crypto-hero-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.hero-info {
    flex: 1;
}

.hero-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1c2025;
    margin: 0 0 8px 0;
}

.hero-info .symbol {
    color: #64748b;
    font-size: 2rem;
}

.crypto-rank {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

.price-section {
    text-align: right;
}

.current-price {
    font-size: 3rem;
    font-weight: 700;
    color: #1c2025;
    line-height: 1;
}

.price-change {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 8px;
}

.price-change.positive {
    color: #059669;
}

.price-change.negative {
    color: #dc2626;
}

/* Key Metrics */
.key-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.metric-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.1);
    border: 1px solid #e4e7ec;
}

.metric-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 8px;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1c2025;
}

/* About Section */
.about-crypto {
    background: #ffffff;
    padding: 60px 0;
}

.about-crypto h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1c2025;
    margin-bottom: 24px;
}

.about-crypto p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
    max-width: 800px;
}

.key-facts {
    margin-top: 40px;
}

.key-facts h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1c2025;
    margin-bottom: 20px;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.fact-item {
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 1rem;
    color: #475569;
}

.fact-item strong {
    color: #1c2025;
}

/* Price Analysis */
.price-analysis {
    background: #f8fafc;
    padding: 60px 0;
}

.price-analysis h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1c2025;
    margin-bottom: 40px;
    text-align: center;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.analysis-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.1);
}

.analysis-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1c2025;
    margin-bottom: 16px;
}

.analysis-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
}

/* FAQ Section */
.crypto-faq {
    background: #ffffff;
    padding: 80px 0;
}

.crypto-faq h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1c2025;
    margin-bottom: 40px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.faq-item {
    background: #f8fafc;
    padding: 32px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1c2025;
    margin-bottom: 16px;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
}

/* Related Section */
.related-crypto {
    background: #f8fafc;
    padding: 60px 0;
}

.related-crypto h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1c2025;
    margin-bottom: 12px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 32px;
}

.view-all {
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: #f59e0b;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f79009;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .crypto-hero {
        padding: 40px 0 30px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .crypto-hero-logo {
        width: 64px;
        height: 64px;
    }

    .hero-info h1 {
        font-size: 2rem;
    }

    .current-price {
        font-size: 2rem;
    }

    .price-section {
        text-align: center;
    }

    .key-metrics {
        grid-template-columns: 1fr;
    }

    .about-crypto,
    .price-analysis,
    .crypto-faq {
        padding: 40px 0;
    }

    .analysis-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-info h1 {
        font-size: 1.5rem;
    }

    .current-price {
        font-size: 1.75rem;
    }

    .facts-grid {
        grid-template-columns: 1fr;
    }
}

