:root {
    --bg-color: #0a0a0a;
    --text-main: #ededed;
    --text-light: #a0a0a0;
    --border-color: #2a2a2a;
    --card-bg: #121212;
    --accent-color: #ffffff;
    --disclaimer-bg: #1f1a00;
    --disclaimer-text: #ffd700;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Blog Intro */
.blog-intro {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.intro-text h1 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.intro-text .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Home Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.project-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-main);
    transition: transform 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: #4a4a4a;
}

.card-image-container {
    height: 180px;
    width: 100%;
    background-color: #222;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info {
    padding: 20px;
}

.status-badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 8px;
    display: inline-block;
}

.card-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Project Detail View */
.back-link {
    color: var(--text-light);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 30px;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--accent-color);
}

.project-hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}

.project-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.disclaimer {
    background-color: var(--disclaimer-bg);
    color: var(--disclaimer-text);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-bottom: 40px;
    border-left: 3px solid var(--disclaimer-text);
}

.project-section {
    margin-bottom: 40px;
}

.project-section h2 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--border-color);
}

.project-section p {
    color: #cccccc;
}

.project-section ul {
    padding-left: 20px;
    color: #cccccc;
}

.project-section li {
    margin-bottom: 8px;
}

/* General */
hr {
    border: 0;
    height: 1px;
    background: var(--border-color);
    margin: 60px 0 40px;
}

footer {
    text-align: center;
    padding-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.8rem;
    text-decoration: none;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .blog-intro {
        flex-direction: column;
        text-align: center;
    }
}
/* YouTube Video Container (16:9 Aspect Ratio) */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    background-color: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Make strong text pop against the dark background */
strong {
    color: #ffffff; /* Brilliant white */
    font-weight: 600;
}