<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<title>SpacePluto · Cosmic Blog</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,600;14..32,700;14..32,800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #03050b;
font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
color: #eef2ff;
line-height: 1.5;
scroll-behavior: smooth;
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #0a0e1a;
}
::-webkit-scrollbar-thumb {
background: #3b4b6e;
border-radius: 12px;
}
::-webkit-scrollbar-thumb:hover {
background: #5f7fbf;
}
.stars-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -2;
background: radial-gradient(ellipse at 20% 30%, #0a0f1c, #02040c);
overflow: hidden;
}
.stars-bg::before,
.stars-bg::after {
content: "";
position: absolute;
width: 100%;
height: 100%;
background-image:
radial-gradient(2px 2px at 15% 60%, rgba(255,255,245,0.8), rgba(0,0,0,0)),
radial-gradient(1px 1px at 72% 18%, rgba(255,240,210,0.7), rgba(0,0,0,0)),
radial-gradient(3px 1px at 34% 88%, #ffffff30, rgba(0,0,0,0)),
radial-gradient(1px 1px at 91% 43%, #f5e6d3, rgba(0,0,0,0));
background-repeat: no-repeat;
background-size: 200px 200px, 300px 300px, 400px 400px, 250px 250px;
opacity: 0.6;
animation: starDrift 80s linear infinite;
}
.stars-bg::after {
background-image:
radial-gradient(1.5px 1.5px at 8% 92%, #ffe6b3, rgba(0,0,0,0)),
radial-gradient(2px 2px at 44% 15%, #fff0d0, rgba(0,0,0,0)),
radial-gradient(1px 1px at 68% 77%, #f0eefc, rgba(0,0,0,0)),
radial-gradient(2px 1px at 27% 45%, #cbd5ff, rgba(0,0,0,0));
background-repeat: no-repeat;
background-size: 280px 280px, 350px 350px, 220px 220px, 300px 300px;
opacity: 0.5;
animation: starDriftReverse 95s linear infinite;
}
@keyframes starDrift {
0% { transform: translate(0, 0);}
100% { transform: translate(40px, 30px);}
}
@keyframes starDriftReverse {
0% { transform: translate(0, 0);}
100% { transform: translate(-35px, 45px);}
}
.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 28px;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
padding: 28px 0 20px;
border-bottom: 1px solid rgba(72, 97, 143, 0.3);
backdrop-filter: blur(2px);
}
.logo {
display: flex;
align-items: center;
gap: 12px;
font-weight: 800;
font-size: 1.8rem;
letter-spacing: -0.02em;
background: linear-gradient(135deg, #FFFFFF, #b9d0ff);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.logo i {
background: none;
-webkit-background-clip: unset;
background-clip: unset;
color: #ddb6ff;
font-size: 2rem;
}
.nav-links {
display: flex;
gap: 2rem;
align-items: center;
flex-wrap: wrap;
}
.nav-links a {
text-decoration: none;
color: #cddcff;
font-weight: 500;
transition: 0.2s;
font-size: 1rem;
}
.nav-links a:hover {
color: white;
text-shadow: 0 0 6px #a0c0ff;
}
.btn-outline-light {
border: 1px solid #8ca9ff;
padding: 8px 20px;
border-radius: 40px;
background: rgba(20, 28, 44, 0.6);
backdrop-filter: blur(4px);
font-weight: 600;
}
.btn-outline-light:hover {
background: #2f3b6e;
border-color: #c7dcff;
}
.blog-header {
margin: 48px 0 32px;
text-align: center;
}
.blog-header h1 {
font-size: 3.2rem;
font-weight: 800;
background: linear-gradient(120deg, #ffffff, #b3caff, #dbb9ff);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
margin-bottom: 16px;
}
.blog-header p {
color: #b9c8ff;
font-size: 1.2rem;
max-width: 650px;
margin: 0 auto;
}
.featured-article {
background: linear-gradient(125deg, #0b1022, #030617);
border-radius: 48px;
padding: 40px 32px;
margin: 35px 0 30px;
border: 1px solid #25345e;
transition: transform 0.2s;
}
.featured-article:hover {
transform: translateY(-4px);
border-color: #7b9eff;
}
.featured-badge {
background: rgba(123, 158, 255, 0.2);
display: inline-block;
padding: 4px 16px;
border-radius: 40px;
font-size: 0.8rem;
color: #aec5ff;
margin-bottom: 16px;
}
.featured-article h2 {
font-size: 2rem;
margin-bottom: 12px;
}
.featured-article h2 a {
color: white;
text-decoration: none;
}
.featured-article h2 a:hover {
text-decoration: underline;
}
.article-meta {
display: flex;
gap: 24px;
color: #98abdd;
font-size: 0.85rem;
margin: 12px 0 16px;
}
.article-excerpt {
color: #cfddff;
margin: 16px 0;
line-height: 1.6;
}
.read-more-btn {
display: inline-flex;
align-items: center;
gap: 8px;
color: #acc6ff;
font-weight: 600;
text-decoration: none;
margin-top: 8px;
}
.read-more-btn:hover {
color: white;
gap: 12px;
}
.articles-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 32px;
margin: 40px 0 50px;
}
.article-card {
background: rgba(12, 18, 32, 0.7);
backdrop-filter: blur(12px);
border-radius: 32px;
padding: 28px;
border: 1px solid rgba(98, 138, 212, 0.3);
transition: all 0.25s ease;
}
.article-card:hover {
border-color: #87a6f0;
transform: translateY(-6px);
background: rgba(18, 26, 48, 0.85);
}
.article-icon {
font-size: 2.2rem;
color: #b2c9ff;
margin-bottom: 16px;
}
.article-card h3 {
font-size: 1.5rem;
margin-bottom: 12px;
}
.article-card h3 a {
color: white;
text-decoration: none;
}
.article-card h3 a:hover {
color: #b2c9ff;
}
.card-meta {
font-size: 0.8rem;
color: #98abdd;
margin-bottom: 12px;
}
.card-excerpt {
color: #cbdaf5;
margin: 12px 0;
font-size: 0.95rem;
}
.section-title {
font-size: 1.8rem;
font-weight: 700;
margin: 40px 0 20px 0;
position: relative;
display: inline-block;
}
.section-title:after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 60%;
height: 3px;
background: linear-gradient(90deg, #7b9eff, #312e5e, transparent);
border-radius: 3px;
}
footer {
border-top: 1px solid #1f2a46;
padding: 40px 0 30px;
margin-top: 40px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 30px;
}
.footer-col p {
color: #8a9bcf;
max-width: 260px;
}
.social-links a {
color: #adc0f0;
margin-right: 22px;
font-size: 1.4rem;
transition: 0.2s;
}
.social-links a:hover {
color: white;
}
.footer-links {
display: flex;
gap: 48px;
}
.footer-links div a {
display: block;
color: #bbceff;
text-decoration: none;
margin-bottom: 12px;
font-size: 0.9rem;
}
.footer-links div a:hover {
color: white;
}
.copyright {
text-align: center;
padding: 20px 0 10px;
font-size: 0.8rem;
color: #5e6f9b;
}
@media (max-width: 720px) {
.navbar {
flex-direction: column;
gap: 20px;
}
.blog-header h1 {
font-size: 2.2rem;
}
.featured-article h2 {
font-size: 1.5rem;
}
.articles-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<div class="stars-bg"></div>
<div class="container">
<nav class="navbar">
<div class="logo">
<i class="fas fa-globe-asia"></i>
<span>SPACEPLUTO</span>
</div>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="blog.html">Blog</a>
<a href="services.html">Services</a>
<a href="observations.html">Observations</a>
<a href="contact.html" class="btn-outline-light">Contact</a>
</div>
</nav>
<div class="blog-header">
<h1><i class="fas fa-newspaper"></i> Cosmic Chronicles</h1>
<p>Deep space discoveries, astrophotography insights, and the latest from the edge of the Solar System</p>
</div>
<!-- FEATURED ARTICLE (Pluto) -->
<div class="featured-article">
<div class="featured-badge"><i class="fas fa-star-of-life"></i> FEATURED</div>
<h2><a href="pluto-article.html">🌌 Pluto: The Planet That Keeps Surprising Us</a></h2>
<div class="article-meta">
<span><i class="far fa-calendar-alt"></i> May 24, 2026</span>
<span><i class="fas fa-user-astronaut"></i> Dr. Elena K.</span>
<span><i class="far fa-comment"></i> 7 comments</span>
</div>
<p class="article-excerpt">New images from New Horizons reveal cryovolcanoes and possible organic molecules on Pluto's surface. How does this change our view of the outer Solar System? The latest data suggests geological activity within the last 100 million years — incredibly recent in planetary terms. Could Pluto be hiding a subsurface ocean? Read the full analysis from the SpacePluto team...</p>
<a href="pluto-article.html" class="read-more-btn">Read full article <i class="fas fa-arrow-right"></i></a>
</div>
<h2 class="section-title"><i class="fas fa-pen-fancy"></i> Latest Articles</h2>
<div class="articles-grid">
<!-- Article 1: Dark Side of the Moon -->
<div class="article-card">
<div class="article-icon"><i class="fas fa-moon"></i></div>
<h3><a href="dark-side-moon.html">The Dark Side of the Moon</a></h3>
<div class="card-meta"><i class="far fa-calendar-alt"></i> May 18, 2026 • Dr. Mark T.</div>
<p class="card-excerpt">Artemis missions, lunar bases, and what the far side of our satellite hides. The South Pole-Aitken basin, water ice in permanent shadows, and the future of lunar industry — from mining to off-world manufacturing. Plus, why the "dark side" isn't actually dark.</p>
<a href="dark-side-moon.html" class="read-more-btn">Read more <i class="fas fa-arrow-right"></i></a>
</div>
<!-- Article 2: Exoplanets -->
<div class="article-card">
<div class="article-icon"><i class="fas fa-globe-americas"></i></div>
<h3><a href="exoplanets.html">Exoplanets: New Worlds Discovered</a></h3>
<div class="card-meta"><i class="far fa-calendar-alt"></i> May 10, 2026 • Dr. Sofia R.</div>
<p class="card-excerpt">5 potentially habitable worlds discovered in the habitable zone of K-type stars. How close are they to Earth? JWST spectroscopy reveals water vapor, methane, and complex organic hazes. Are we closer than ever to finding life beyond Earth?</p>
<a href="exoplanets.html" class="read-more-btn">Read more <i class="fas fa-arrow-right"></i></a>
</div>
<!-- Article 3: Space Weather 2026 -->
<div class="article-card">
<div class="article-icon"><i class="fas fa-sun"></i></div>
<h3><a href="space-weather.html">Space Weather 2026</a></h3>
<div class="card-meta"><i class="far fa-calendar-alt"></i> May 3, 2026 • Alex P.</div>
<p class="card-excerpt">The solar maximum is breaking records — how does this affect satellites and ground communications? Solar flares, geomagnetic storms, auroras at lower latitudes. Forecasts and tips to protect your electronics. Coming soon!</p>
<a href="space-weather.html" class="read-more-btn">Read more <i class="fas fa-arrow-right"></i></a>
</div>
</div>
<footer>
<div class="footer-col">
<div class="logo" style="justify-content: flex-start; margin-bottom: 12px;">
<i class="fas fa-globe-asia"></i>
<span>SPACEPLUTO</span>
</div>
<p>Beyond the boundaries of the Solar System — science, imagination, and discovery. Your portal to the cosmos.</p>
<div class="social-links" style="margin-top: 18px;">
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-youtube"></i></a>
<a href="#"><i class="fab fa-github"></i></a>
</div>
</div>
<div class="footer-links">
<div>
<a href="blog.html">Blog</a>
<a href="services.html">Services</a>
<a href="team.html">Team</a>
</div>
<div>
<a href="privacy.html">Privacy Policy</a>
<a href="terms.html">Terms & Conditions</a>
<a href="contact.html">Contact</a>
</div>
</div>
</footer>
<div class="copyright">
<i class="far fa-copyright"></i> 2026 SpacePluto — Cosmic Hub. Inspired by distant worlds.
</div>
</div>
</body>
</html>