/* style.css */
:root {
    --primary-color: #0070d1; /* PS Vita Blue */
    --secondary-color: #00a8e0;
    --bg-color: #121212;
    --card-bg: #1e1e1e;
    --text-color: #e0e0e0;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

body { background-color: var(--bg-color); color: var(--text-color); line-height: 1.6; }

/* Navigation */
nav { background: rgba(0,0,0,0.9); padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid var(--primary-color); position: sticky; top: 0; z-index: 1000; }
.logo { font-size: 1.5rem; font-weight: bold; color: #fff; text-transform: uppercase; letter-spacing: 2px; }
.logo span { color: var(--secondary-color); }
.nav-links a { color: #fff; text-decoration: none; margin-left: 20px; transition: 0.3s; }
.nav-links a:hover { color: var(--secondary-color); }

/* Hero Section */
.hero { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1552820728-8b83bb6b773f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'); background-size: cover; background-position: center; height: 60vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 20px; }
.hero h1 { font-size: 3rem; margin-bottom: 10px; }
.hero p { font-size: 1.2rem; margin-bottom: 20px; max-width: 600px; }
.btn { background: var(--primary-color); color: white; padding: 10px 25px; text-decoration: none; border-radius: 5px; font-weight: bold; transition: 0.3s; }
.btn:hover { background: var(--secondary-color); }

/* Content Grid */
.container { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
.section-title { border-left: 5px solid var(--secondary-color); padding-left: 15px; margin-bottom: 20px; font-size: 1.8rem; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.card { background: var(--card-bg); border-radius: 8px; overflow: hidden; transition: transform 0.3s; box-shadow: 0 4px 6px rgba(0,0,0,0.3); }
.card:hover { transform: translateY(-5px); }
.card-img { height: 180px; background-color: #333; display: flex; align-items: center; justify-content: center; color: #555; }
.card-content { padding: 20px; }
.card-title { font-size: 1.2rem; margin-bottom: 10px; color: var(--secondary-color); }
.card-meta { font-size: 0.8rem; color: #888; margin-bottom: 10px; }

/* Footer */
footer { background: #0a0a0a; padding: 20px; text-align: center; margin-top: 50px; border-top: 1px solid #333; }
footer p { color: #666; font-size: 0.9rem; }

/* Mobile */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .nav-links { display: none; } /* Simplicity for this demo */
}