/* RESOLV Coin Detail Page Styles */

/* Coin Header Section */
.coin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 0;
    min-height: 300px;
}

.coin-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.coin-basic-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.coin-icon img {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.coin-details h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.coin-symbol {
    font-size: 1.2rem;
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-left: 1rem;
}

.coin-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tag.defi {
    background: #ff6b6b;
}

.tag.stablecoin {
    background: #4ecdc4;
}

.tag.yield {
    background: #45b7d1;
}

.coin-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.current-price {
    font-size: 3rem;
    font-weight: 700;
}

.price-change {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
}

.price-change.positive {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.price-change.negative {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.price-update {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}

.price-update i {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.price-update i:hover {
    transform: rotate(180deg);
}

/* Trading CTA Section */
.trading-cta {
    display: flex;
    justify-content: center;
}

.recommended-exchange h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.exchange-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.exchange-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.exchange-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.exchange-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.promo-code {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.8rem 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
}

.promo-value {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #ffd700;
}

.copy-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.promo-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffd700;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #22c55e;
    color: white;
}

.btn-primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Market Data Section */
.market-data {
    padding: 3rem 0;
    background: #f8fafc;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.3rem;
}

.stat-change {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.stat-change.positive {
    background: #dcfce7;
    color: #22c55e;
}

.stat-change.negative {
    background: #fee2e2;
    color: #ef4444;
}

/* Price Prediction Section */
.price-prediction-section {
    padding: 4rem 0;
    background: white;
}

.prediction-header {
    text-align: center;
    margin-bottom: 3rem;
}

.prediction-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.prediction-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

.quick-predictions {
    margin-bottom: 4rem;
}

.prediction-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.prediction-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.prediction-card:hover {
    transform: translateY(-5px);
}

.prediction-card.premium {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #1e293b;
}

.prediction-timeframe {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.prediction-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.prediction-change {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
}

/* Current Analysis */
.current-analysis {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 3rem;
}

.analysis-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.current-stats h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.stat-value.positive {
    color: #22c55e;
}

.stat-value.greed {
    color: #f59e0b;
}

.stat-value.bullish {
    color: #22c55e;
}

.technical-indicators {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.technical-indicators h4 {
    margin-bottom: 1rem;
    color: #1e293b;
}

.indicator-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.indicator-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.indicator-name {
    font-size: 0.9rem;
    color: #64748b;
}

.indicator-value {
    font-weight: 600;
    color: #1e293b;
}

.prediction-summary {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #22c55e;
}

/* Investment Recommendation */
.investment-recommendation {
    margin-bottom: 3rem;
}

.recommendation-card {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
}

.recommendation-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.recommendation-header i {
    font-size: 2rem;
}

.recommendation-header h3 {
    font-size: 1.5rem;
}

.recommendation-status {
    margin-bottom: 1rem;
}

.status-label {
    font-weight: 600;
}

.status-value.bullish {
    color: #ffd700;
    font-weight: 700;
}

.investment-opportunity {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.investment-opportunity h4 {
    margin-bottom: 1rem;
}

/* Monthly Predictions */
.monthly-predictions {
    margin-bottom: 3rem;
}

.monthly-predictions h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 2rem;
}

.prediction-table-container {
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.prediction-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.prediction-table th {
    background: #1e293b;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.prediction-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.prediction-table tr:nth-child(even) {
    background: #f8fafc;
}

.action-buy {
    background: #22c55e;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.prediction-note {
    font-style: italic;
    color: #64748b;
    line-height: 1.6;
}

/* Project Overview */
.project-overview {
    padding: 4rem 0;
    background: #f8fafc;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
}

.overview-content h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin: 2rem 0 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
}

.feature-list i {
    color: #22c55e;
    margin-top: 0.2rem;
}

.tech-specs {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.spec-label {
    color: #64748b;
}

.spec-value {
    font-weight: 600;
    color: #1e293b;
}

.sidebar-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h3 {
    margin-bottom: 1rem;
    color: #1e293b;
}

.quick-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-stat {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

/* Trading Guide */
.trading-guide {
    padding: 4rem 0;
    background: white;
}

.trading-guide h2 {
    font-size: 2.5rem;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3rem;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.step-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #22c55e;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.step-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    margin: 0;
    color: #1e293b;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-icons a:hover {
    background: #ffd700;
    color: #1e293b;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .coin-info-grid,
    .analysis-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .coin-basic-info {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .prediction-cards {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .guide-steps {
        grid-template-columns: 1fr;
    }
    
    .coin-details h1 {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .prediction-header h2 {
        font-size: 2rem;
    }
}

/* Animation Classes */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.positive {
    color: #22c55e !important;
}

.negative {
    color: #ef4444 !important;
} 

/* Language Selector Styling */
.language-selector {
    background: #2d3748;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lang-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.lang-option {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: #cbd5e1;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateY(-1px);
}

.lang-option.active {
    background: #4f46e5;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

/* Long-term Predictions Styling */
.longterm-predictions {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid #e2e8f0;
}

.year-selector {
    margin-bottom: 2rem;
}

.year-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.year-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    color: #4a5568;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.year-btn:hover {
    border-color: #3182ce;
    background: #f7fafc;
    transform: translateY(-2px);
}

.year-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.year-prediction {
    display: none;
    animation: fadeInPrediction 0.5s ease;
}

.year-prediction.active {
    display: block;
}

@keyframes fadeInPrediction {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Prediction Summary Cards */
.prediction-summary-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    margin: 1.5rem 0;
}

.prediction-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}

.highlight-item h5 {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.price-range {
    font-size: 1.25rem;
    font-weight: bold;
}

.price-range.positive {
    color: #10b981;
}

/* Key Milestones and Analysis */
.key-milestones, .market-analysis {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 1rem;
}

.key-milestones ul {
    list-style: none;
    padding: 0;
}

.key-milestones li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.key-milestones li:last-child {
    border-bottom: none;
}

.analysis-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
}

.metric-label {
    opacity: 0.9;
}

.metric-value {
    font-weight: bold;
}

/* Decade Overview Styling */
.decade-overview {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    margin: 1.5rem 0;
}

.decade-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.decade-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.decade-stat h5 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    opacity: 0.9;
}

.future-scenarios {
    margin-top: 2rem;
}

.scenario {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 1rem 0;
}

.scenario h6 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.scenario ul {
    margin: 0;
    padding-left: 1.5rem;
}

.scenario li {
    margin-bottom: 0.5rem;
}

/* Ultimate Projection Styling */
.ultimate-projection {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    margin: 1.5rem 0;
}

.projection-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
}

.projection-header h5 {
    font-size: 1.5rem;
    margin: 0;
}

.factors-2050 {
    margin: 2rem 0;
}

.factor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.factor-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bitcoin-2050-features {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.bitcoin-2050-features ul {
    margin: 0;
    padding-left: 1.5rem;
}

.bitcoin-2050-features li {
    margin-bottom: 0.75rem;
}

/* Investment Projection Table */
.investment-projection {
    margin-top: 2rem;
}

.projection-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    overflow: hidden;
}

.projection-table th,
.projection-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.projection-table th {
    background: rgba(255, 255, 255, 0.2);
    font-weight: bold;
}

.warning-box {
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid #ffc107;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 2rem;
    color: #ffffff;
}

.warning-box h6 {
    margin-bottom: 1rem;
    color: #ffc107;
}

/* Friend Links Section */
.friend-links-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin-top: 2rem;
}

.friend-links-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #2d3748;
    font-size: 2.5rem;
}

.links-subtitle {
    text-align: center;
    color: #4a5568;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.links-categories {
    max-width: 1200px;
    margin: 0 auto;
}

.link-category {
    margin-bottom: 3rem;
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.link-category h3 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.link-category h3 i {
    color: #667eea;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.friend-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.friend-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.friend-link.featured {
    border-color: #f3ba2f;
    background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
}

.friend-link.featured:hover {
    border-color: #f3ba2f;
    box-shadow: 0 8px 25px rgba(243, 186, 47, 0.3);
}

.link-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.link-icon img {
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
}

.link-info h4 {
    margin: 0 0 0.25rem 0;
    color: #2d3748;
    font-size: 1.1rem;
}

.link-info p {
    margin: 0;
    color: #4a5568;
    font-size: 0.9rem;
}

.promo-tag {
    display: inline-block;
    background: #f3ba2f;
    color: #ffffff;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: bold;
    margin-top: 0.5rem;
}

.link-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.link-disclaimer p {
    margin: 0;
    color: #856404;
    font-size: 0.95rem;
}

.link-disclaimer i {
    color: #f39c12;
    margin-right: 0.5rem;
}

/* Language Selector Responsive */
@media (max-width: 768px) {
    .lang-options {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .lang-option {
        justify-content: center;
        padding: 0.75rem 1rem;
    }
}

/* Additional Responsive Design for New Sections */
@media (max-width: 768px) {
    .year-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .year-btn {
        width: 100%;
        text-align: center;
    }
    
    .prediction-highlights,
    .decade-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .factor-grid {
        grid-template-columns: 1fr;
    }
    
    .analysis-metrics {
        grid-template-columns: 1fr;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .friend-links-section h2 {
        font-size: 2rem;
    }
    
    .projection-table {
        font-size: 0.85rem;
    }
    
    .projection-table th,
    .projection-table td {
        padding: 0.5rem;
    }
    
    .link-category {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .friend-link {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .prediction-summary-card,
    .decade-overview,
    .ultimate-projection {
        padding: 1.5rem;
    }
}