:root {
    --primary-color: #d5346f; /* Pepper Pink/Red */
    --primary-hover: #b42456;
    --bg-dark: #000000;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #aaaaaa;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: hidden;
}

/* Header */
header {
    background-color: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 1px;
}
.logo span {
    color: var(--primary-color);
}
.header-tagline {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 600px) {
    header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 8px;
    }
    .header-tagline {
        font-size: 12px;
    }
}

/* Footer */
footer {
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    text-align: center;
    margin-top: auto;
}
.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--text-main);
    text-decoration: underline;
}
.copyright {
    font-size: 11px;
    color: #666666;
}

/* Blog Listing Specific Styles */
.blog-hero {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: radial-gradient(circle at center, rgba(213, 52, 111, 0.08) 0%, transparent 60%);
    animation: driftBg 15s ease infinite alternate;
}

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

.blog-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #ffffff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.blog-hero p {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto 30px auto;
}

.search-container {
    max-width: 500px;
    margin: 0 auto 30px auto;
    position: relative;
}

.search-input {
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 14px 24px;
    padding-right: 50px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(213, 52, 111, 0.2);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.categories-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.category-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-pill:hover, .category-pill.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-main);
    box-shadow: 0 4px 10px rgba(213, 52, 111, 0.2);
}

/* Card Grid Layout */
.blog-container {
    max-width: 1200px;
    width: 90%;
    margin: 60px auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .blog-hero h1 {
        font-size: 32px;
    }
    .blog-hero p {
        font-size: 15px;
    }
}

/* Article Card */
.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(213, 52, 111, 0.3);
    box-shadow: 0 12px 40px rgba(213, 52, 111, 0.15);
}

.card-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(213, 52, 111, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    position: relative;
    overflow: hidden;
}

.card-image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(213, 52, 111, 0.1) 0%, transparent 60%);
}

.card-image-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.15);
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 500;
}

.card-category {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--text-main);
    line-height: 1.3;
}

.card-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.card-btn {
    align-self: flex-start;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
    margin-top: auto;
}

.card-btn:hover {
    color: var(--text-main);
}

.card-btn svg {
    transition: transform 0.2s ease;
}

.card-btn:hover svg {
    transform: translateX(4px);
}

/* Article Page Layout */
.article-header {
    background: linear-gradient(180deg, rgba(213, 52, 111, 0.05) 0%, transparent 100%);
    padding: 80px 20px 40px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.article-meta-header {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.article-meta-header .category {
    color: var(--primary-color);
}

.article-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 700;
    max-width: 850px;
    margin: 0 auto 20px auto;
    color: #ffffff;
    line-height: 1.25;
}

.article-header .subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 30px;
    }
    .article-header .subtitle {
        font-size: 15px;
    }
}

.article-container {
    max-width: 800px;
    width: 90%;
    margin: 50px auto;
}

.article-content {
    font-size: 16px;
    line-height: 1.85;
    color: #dcdcdc;
}

.article-content p {
    margin-bottom: 25px;
}

.article-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 45px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
    line-height: 1.3;
}

.article-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 35px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-content ul, .article-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
}

/* Pull Quotes */
.pull-quote {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    color: #ffffff;
    border-left: 3px solid var(--primary-color);
    padding: 10px 0 10px 25px;
    margin: 40px 0;
    background: linear-gradient(90deg, rgba(213, 52, 111, 0.05) 0%, transparent 100%);
    border-radius: 0 8px 8px 0;
}

/* Highlight Cards */
.highlight-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 25px;
    margin: 40px 0;
}

.highlight-card h4 {
    margin-top: 0;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: var(--primary-color);
}

.highlight-card p:last-child {
    margin-bottom: 0;
}

/* Privacy/Trust Banner */
.privacy-callout {
    background: linear-gradient(135deg, rgba(213, 52, 111, 0.12) 0%, rgba(0, 0, 0, 0.2) 100%);
    border: 1px solid rgba(213, 52, 111, 0.2);
    border-radius: 16px;
    padding: 35px;
    margin: 60px 0;
    display: flex;
    gap: 25px;
    align-items: center;
}

.privacy-callout-icon {
    background: rgba(213, 52, 111, 0.15);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

.privacy-callout-body h3 {
    margin: 0 0 8px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.privacy-callout-body p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .privacy-callout {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
    }
}

/* FAQs Section */
.faq-section {
    margin: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 50px;
}

.faq-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 20px;
    transition: background 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.faq-answer {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Related Articles Block */
.related-articles-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 50px;
    margin-bottom: 60px;
}

.related-articles-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 35px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 600px) {
    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* CTA Banner Card */
.cta-banner {
    background: linear-gradient(135deg, rgba(213, 52, 111, 0.25) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(213, 52, 111, 0.35);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin: 60px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(213, 52, 111, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.cta-banner h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto 30px auto;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: var(--text-main);
    border: none;
    border-radius: 8px;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.cta-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(213, 52, 111, 0.4);
}

.cta-btn svg {
    transition: transform 0.2s ease;
}

.cta-btn:hover svg {
    transform: translateX(4px);
}
