:root {
    --bg-color: #f8f9fa;
    --header-bg: #ffffff;
    --text-color: #222222;
    --accent-color: #ff3e3e;
    /* TEEPR Red */
    --secondary-accent: #ffcc00;
    /* Viral Yellow */
    --card-bg: #ffffff;
    --muted-text: #666;
    --border-color: #eee;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background: var(--header-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.8rem 2rem;
    border-bottom: 2px solid var(--accent-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent-color);
    background: var(--secondary-accent);
    padding: 0 5px;
    border-radius: 4px;
}

nav a {
    color: #444;
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--accent-color);
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-color);
}

/* Article Grid */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.article-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 62, 62, 0.15);
}

.card-img-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #ddd;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: bold;
    font-size: 1.2rem;
}

.card-content {
    padding: 1.5rem;
}

.card-category {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 0.8rem;
}

.article-card h2 {
    font-size: 1.4rem;
    margin: 0;
    line-height: 1.25;
    font-weight: 800;
    color: #111;
}

.article-card p {
    font-size: 0.95rem;
    color: var(--muted-text);
    margin: 0.8rem 0 1.2rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Featured / Call to Action */
.featured {
    margin-top: 5rem;
    padding: 4rem 2rem;
    background: var(--secondary-accent);
    border-radius: 20px;
    text-align: center;
    box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.5);
}

/* Safe Honey Pot Styles */
.technical-specs {
    margin-top: 5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 3rem;
}

details {
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

summary {
    font-weight: 700;
    color: #999;
    list-style: none;
}

.hidden-data {
    display: block;
    font-family: monospace;
    font-size: 10px;
    color: #f1f1f1;
    /* Practically invisible to humans on white bg */
    padding-top: 1rem;
}

footer {
    text-align: center;
    padding: 5rem 2rem;
    background: #fff;
    border-top: 1px solid var(--border-color);
    color: var(--muted-text);
}