/* AdCow Future Blog - Futuristic Style */
@import url('blog-style.css');

/* Futuristic accents */
.future-article {
    position: relative;
    overflow: hidden;
}

.future-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00f0ff, #ff00ff, #00ff88, #ffff00);
    background-size: 300% 100%;
    animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Prediction boxes */
.prediction-box {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 16px;
    padding: 25px;
    margin: 25px 0;
}

.prediction-box.optimistic {
    border-color: rgba(0, 255, 136, 0.5);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 200, 100, 0.05));
}

.prediction-box.realistic {
    border-color: rgba(255, 200, 0, 0.5);
    background: linear-gradient(135deg, rgba(255, 200, 0, 0.1), rgba(200, 150, 0, 0.05));
}

.prediction-box.pessimistic {
    border-color: rgba(255, 100, 100, 0.5);
    background: linear-gradient(135deg, rgba(255, 100, 100, 0.1), rgba(200, 50, 50, 0.05));
}

.prediction-box h4 {
    margin: 0 0 10px 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00f0ff;
}

.prediction-box.optimistic h4 { color: #00ff88; }
.prediction-box.realistic h4 { color: #ffc800; }
.prediction-box.pessimistic h4 { color: #ff6464; }

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
    margin: 30px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #00f0ff, #ff00ff);
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
    padding-left: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00f0ff;
    box-shadow: 0 0 10px #00f0ff;
}

.timeline-year {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.1rem;
    color: #00f0ff;
    margin-bottom: 5px;
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.stat-number {
    font-family: 'Unbounded', sans-serif;
    font-size: 2rem;
    color: #00f0ff;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 5px;
}

/* Quote box */
.future-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-white);
    text-align: center;
    padding: 30px;
    margin: 30px 0;
    border-left: none;
    position: relative;
}

.future-quote::before,
.future-quote::after {
    content: '"';
    font-size: 4rem;
    color: rgba(0, 240, 255, 0.3);
    position: absolute;
    font-family: Georgia, serif;
}

.future-quote::before {
    top: -10px;
    left: 10px;
}

.future-quote::after {
    bottom: -30px;
    right: 10px;
}

.future-quote cite {
    display: block;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--text-gray);
    margin-top: 15px;
}

/* Emoji indicators */
.emoji-big {
    font-size: 3rem;
    text-align: center;
    margin: 20px 0;
}

/* Comparison table */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.compare-table th {
    background: rgba(0, 240, 255, 0.2);
    padding: 15px;
    text-align: left;
    font-family: 'Unbounded', sans-serif;
}

.compare-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-table tr:hover td {
    background: rgba(255, 255, 255, 0.05);
}

/* Fun badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 2px;
}

.badge-hot { background: #ff4757; color: white; }
.badge-new { background: #00f0ff; color: black; }
.badge-soon { background: #ffc800; color: black; }
.badge-future { background: #ff00ff; color: white; }

/* Article hero image */
.article-hero {
    width: 100%;
    max-height: 500px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 16px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.article-hero img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.article-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(0, 240, 255, 0.1) 50%, transparent 60%);
    animation: shine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Related Articles */
.related-articles { margin: 40px 0; padding: 30px; background: #1a1a2e; border-radius: 12px; }
.related-articles h3 { margin: 0 0 20px 0; font-size: 1.2rem; color: #ff6b35; }
.related-grid { display: flex; gap: 15px; flex-wrap: wrap; }
.related-card { padding: 15px 20px; background: #16213e; border-radius: 8px; color: #fff; text-decoration: none; transition: background 0.2s; }
.related-card:hover { background: #1f4068; }
