/* ================= VARIABLES ================= */
:root {
    --primary: #00e676; 
    --primary-glow: rgba(0, 230, 118, 0.4);
    --secondary: #69f0ae;
    --accent: #ff3d00;
    --bg-dark: #050505;
    --surface: rgba(30, 30, 35, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 16px;
}

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

body {
    font-family: "Outfit", sans-serif;
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 230, 118, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(41, 98, 255, 0.08) 0%, transparent 40%);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

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

/* ================= HEADER ================= */
header {
    position: fixed; top: 0; width: 100%; z-index: 1000; padding: 20px 0;
    background: rgba(5, 5, 5, 0.8); backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.logo {
    display: flex; align-items: center; gap: 10px; font-size: 1.5rem;
    font-weight: 800; letter-spacing: -1px;
}
.logo i { color: var(--primary); }
.logo span { 
    background: linear-gradient(90deg, #fff, var(--primary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* CSP FIX: Added class for logo image */
.logo-img {
    height: 40px; 
    width: auto;
}

nav ul { display: flex; gap: 30px; }
nav a { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
nav a:hover { color: var(--primary); }

.cta-button {
    background: var(--primary); color: #000; border: none; padding: 10px 25px;
    border-radius: 50px; font-weight: 700; font-family: "Outfit", sans-serif;
    cursor: pointer; transition: var(--transition); box-shadow: 0 0 15px rgba(0, 230, 118, 0.2);
    font-size: 0.9rem;
}
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 0 25px var(--primary-glow); }

/* ================= BLOG HEADER ================= */
.blog-header {
    padding: 80px 0 50px; text-align: center;
    border-bottom: 1px solid var(--glass-border);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0, 230, 118, 0.05) 100%);
}

.blog-header h1 {
    font-size: 3rem; font-weight: 800; margin-bottom: 20px;
    line-height: 1.1; letter-spacing: -1px; color: #fff;
}

.blog-meta {
    display: flex; justify-content: center; gap: 20px; margin-bottom: 30px;
    color: var(--primary); font-family: "JetBrains Mono", monospace; font-size: 0.85rem;
}
.blog-meta span { display: flex; align-items: center; gap: 8px; }

.blog-excerpt {
    max-width: 700px; margin: 0 auto; font-size: 1.2rem; color: var(--text-muted);
}

/* ================= CONTENT STYLES ================= */
.blog-content { padding: 60px 0; }

h2 {
    font-size: 2rem; color: #fff; margin-top: 60px; margin-bottom: 25px;
    font-weight: 700; border-left: 4px solid var(--primary); padding-left: 20px;
}

h3 {
    font-size: 1.4rem; color: var(--secondary); margin-top: 40px; margin-bottom: 15px;
    font-family: "JetBrains Mono", monospace;
}

p { color: #ccc; margin-bottom: 20px; font-size: 1.05rem; line-height: 1.8; }

.quote-box {
    background: rgba(0, 230, 118, 0.05);
    border: 1px solid rgba(0, 230, 118, 0.2);
    padding: 30px; border-radius: var(--radius); margin: 40px 0;
    position: relative;
}
.quote-box p { margin: 0; color: #fff; font-style: italic; font-size: 1.2rem; }
.quote-box::before {
    content: '\f10d'; font-family: "Font Awesome 7 Free"; font-weight: 900;
    position: absolute; top: -15px; left: 20px; 
    background: var(--bg-dark); padding: 0 10px; color: var(--primary);
}

.blog-image-wrapper {
    width: 100%; height: 300px; margin: 40px 0;
    background: rgba(30, 30, 35, 0.5);
    border: 1px solid var(--glass-border); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; color: var(--primary); position: relative; overflow: hidden;
}
.blog-image-wrapper::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 230, 118, 0.05) 3px);
    pointer-events: none;
}

.key-points { margin: 30px 0; border: 1px solid var(--glass-border); border-radius: var(--radius); background: var(--surface); padding: 20px; }
.key-points li {
    padding: 15px; border-bottom: 1px solid var(--glass-border);
    display: flex; gap: 15px; align-items: start; color: #ddd;
}
.key-points li:last-child { border-bottom: none; }
.key-points li i { color: var(--primary); margin-top: 5px; }
.key-points strong { color: #fff; font-family: "JetBrains Mono", monospace; }

/* ================= CRYPTO SPECIFIC ================= */
.crypto-icons {
    display: flex; justify-content: center; gap: 30px; margin: 40px 0; flex-wrap: wrap;
}

.crypto-icon {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    background: rgba(30, 30, 35, 0.8); border: 1px solid var(--glass-border);
    padding: 25px; border-radius: var(--radius); min-width: 150px;
    transition: var(--transition);
}
.crypto-icon:hover { border-color: var(--primary); transform: translateY(-5px); }

.crypto-icon i { font-size: 2.5rem; color: #fff; }
.crypto-icon span { font-family: "JetBrains Mono", monospace; color: var(--primary); }

/* ================= RELATED ================= */
.related-articles {
    margin-top: 80px; padding-top: 50px; border-top: 1px solid var(--glass-border);
}
.articles-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 30px;
}
.article-card {
    background: var(--surface); border: 1px solid var(--glass-border);
    padding: 30px; border-radius: var(--radius); transition: var(--transition);
}
.article-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.article-card h3 { font-size: 1.2rem; margin-top: 0; color: #fff; font-family: "Outfit", sans-serif; }
.read-more { color: var(--primary); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 5px; }

/* ================= FOOTER ================= */
footer {
    background: #000; border-top: 1px solid var(--glass-border);
    padding: 80px 0 0; margin-top: 0;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; padding-bottom: 60px; max-width: 1200px; margin: 0 auto; padding-left: 20px; padding-right: 20px;}
.footer-column h3 { font-size: 1.1rem; margin-bottom: 20px; color: #fff; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul li a { color: var(--text-muted); font-size: 0.9rem; }
.footer-column ul li a:hover { color: var(--primary); }
.copyright { text-align: center; padding: 30px 0; border-top: 1px solid rgba(255,255,255,0.05); color: #555; font-size: 0.8rem; }

/* Disclaimer Bar - Compacted version of original style */
.medical-disclaimer-bar {
    background-color: #08080a; /* Darker variant of #1a1a1f to blend with #000 footer */
    color: #666; /* Subtler gray than #888 */
    padding: 10px 0; /* Reduced from 20px */
    border-top: 1px solid var(--glass-border); /* Matching theme border */
    text-align: center;
    font-size: 0.65rem; /* Reduced from 0.75rem */
    line-height: 1.2;
}

.medical-disclaimer-bar strong {
    color: var(--accent); /* Maintains Vivid Orange/Red */
    display: inline; /* Changed from block to remove the line break */
    margin-right: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
@media (max-width: 768px) {
    .blog-header h1 { font-size: 2rem; }
    .header-container nav { display: none; }
}