@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');
:root {
    --tech-bg: #0b0f19;
    --tech-text: #f3f4f6;
    --tech-text-muted: #9ca3af;
    --tech-surface: #111827;
    --tech-surface-hover: #1f2937;
    --tech-border: #1f2937;
    --tech-border-hover: #374151;
    --tech-primary: #10b981;
    --tech-primary-light: rgba(16, 185, 129, 0.15);
    --tech-primary-dark: #065f46;
    --tech-accent: #06b6d4;
    --tech-accent-glow: rgba(6, 182, 212, 0.15);
    --tech-heading-font: 'Outfit', sans-serif;
    --tech-body-font: 'Inter', sans-serif;
}
.tech-body {
    font-family: var(--tech-body-font);
    background-color: var(--tech-bg);
    color: var(--tech-text);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.tech-body * { box-sizing: border-box; margin: 0; padding: 0; }
.tech-body a { text-decoration: none; color: inherit; transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); }
.tech-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.tech-header {
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--tech-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.tech-header-inner { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; }
.tech-logo-wrap { display: flex; align-items: center; gap: 10px; }
.tech-logo-img { height: 40px; width: auto; object-fit: contain; border-radius: 8px; }
.tech-logo-text {
    font-family: var(--tech-heading-font);
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--tech-primary) 0%, var(--tech-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}
.tech-nav ul { list-style: none; display: flex; gap: 24px; }
.tech-nav a {
    font-family: var(--tech-heading-font);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--tech-text-muted);
    padding: 6px 0;
    position: relative;
}
.tech-nav a:hover { color: var(--tech-text); }
.tech-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--tech-accent);
    transition: width 0.25s ease;
}
.tech-nav a:hover::after { width: 100%; }
.tech-header-subscribe { display: flex; align-items: center; gap: 10px; }
.tech-header-subscribe input {
    background: var(--tech-surface);
    border: 1px solid var(--tech-border);
    padding: 8px 14px;
    border-radius: 6px;
    color: var(--tech-text);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.25s ease;
}
.tech-header-subscribe input:focus { border-color: var(--tech-accent); }
.tech-header-subscribe button {
    background: linear-gradient(135deg, var(--tech-primary) 0%, var(--tech-accent) 100%);
    color: #0b0f19;
    border: none;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 9px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.25s ease, transform 0.2s ease;
}
.tech-header-subscribe button:hover { opacity: 0.9; transform: translateY(-1px); }
.tech-hero-section { padding: 40px 0; }
.tech-hero-grid { display: grid; grid-template-columns: 2.2fr 1.1fr; gap: 30px; }
.tech-hero-featured-card {
    background: var(--tech-surface);
    border: 1px solid var(--tech-border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.tech-hero-featured-card:hover {
    transform: translateY(-4px);
    border-color: var(--tech-accent);
    box-shadow: 0 10px 30px rgba(6,182,212,0.15);
}
.tech-hero-featured-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; position: relative; }
.tech-hero-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.tech-hero-featured-card:hover .tech-hero-featured-img img { transform: scale(1.03); }
.tech-hero-featured-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.tech-category-tag {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.tech-tag-green { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.tech-tag-cyan { background: rgba(6, 182, 212, 0.15); color: #06b6d4; }
.tech-hero-featured-title { font-family: var(--tech-heading-font); font-size: 1.85rem; font-weight: 800; line-height: 1.3; margin-bottom: 12px; color: var(--tech-text); }
.tech-hero-featured-title a:hover { color: var(--tech-accent); }
.tech-hero-featured-desc { font-size: 0.95rem; color: var(--tech-text-muted); line-height: 1.6; margin-bottom: 20px; }
.tech-meta-row { display: flex; align-items: center; gap: 12px; font-size: 0.8rem; color: var(--tech-text-muted); }
.tech-hero-right-col { display: flex; flex-direction: column; gap: 20px; }
.tech-hero-small-card {
    background: var(--tech-surface);
    border: 1px solid var(--tech-border);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    gap: 15px;
    padding: 12px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.tech-hero-small-card:hover { transform: translateY(-2px); border-color: var(--tech-accent); }
.tech-hero-small-img { width: 100px; height: 75px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.tech-hero-small-img img { width: 100%; height: 100%; object-fit: cover; }
.tech-hero-small-content { display: flex; flex-direction: column; justify-content: center; }
.tech-hero-small-title { font-family: var(--tech-heading-font); font-size: 0.95rem; font-weight: 700; line-height: 1.4; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tech-hero-small-title a:hover { color: var(--tech-accent); }
.tech-popular-section { padding: 40px 0; border-top: 1px solid var(--tech-border); }
.tech-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.tech-section-title { font-family: var(--tech-heading-font); font-size: 1.75rem; font-weight: 800; color: var(--tech-text); }
.tech-popular-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.tech-popular-list { display: flex; flex-direction: column; gap: 15px; }
.tech-popular-list-item { display: flex; align-items: center; gap: 15px; padding: 10px; }
.tech-bottom-section { padding: 50px 0; border-top: 1px solid var(--tech-border); }
.tech-main-sidebar-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.tech-main-feed-col { display: flex; flex-direction: column; gap: 30px; }
.tech-feed-title { font-family: var(--tech-heading-font); font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; border-bottom: 2px solid var(--tech-border); padding-bottom: 10px; }
.tech-feed-item-card { background: var(--tech-surface); border: 1px solid var(--tech-border); border-radius: 12px; overflow: hidden; transition: transform 0.25s ease, border-color 0.25s ease; }
.tech-feed-item-card:hover { transform: translateY(-3px); border-color: var(--tech-primary); }
.tech-feed-item-img { width: 100%; height: 280px; overflow: hidden; }
.tech-feed-item-img img { width: 100%; height: 100%; object-fit: cover; }
.tech-feed-item-body { padding: 20px; }
.tech-feed-item-title { font-family: var(--tech-heading-font); font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.tech-feed-item-title a:hover { color: var(--tech-primary); }
.tech-feed-item-desc { color: var(--tech-text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.tech-sidebar-col { display: flex; flex-direction: column; gap: 30px; }
.tech-sidebar-widget { background: var(--tech-surface); border: 1px solid var(--tech-border); padding: 24px; border-radius: 12px; }
.tech-widget-title { font-family: var(--tech-heading-font); font-size: 1.2rem; font-weight: 800; margin-bottom: 20px; padding-bottom: 8px; border-bottom: 2px solid var(--tech-border); }
.tech-author-widget-body { display: flex; flex-direction: column; align-items: center; text-align: center; }
.tech-author-avatar { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; border: 3px solid var(--tech-accent); margin-bottom: 16px; }
.tech-author-widget-name { font-family: var(--tech-heading-font); font-size: 1.15rem; font-weight: 800; color: var(--tech-accent); margin-bottom: 4px; }
.tech-author-widget-title { font-size: 0.75rem; text-transform: uppercase; font-weight: 700; color: var(--tech-text-muted); margin-bottom: 14px; letter-spacing: 0.5px; }
.tech-author-widget-bio { font-size: 0.85rem; color: var(--tech-text-muted); line-height: 1.5; }
.tech-sidebar-categories-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.tech-sidebar-cat-link { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; background: var(--tech-bg); border: 1px solid var(--tech-border); border-radius: 6px; font-family: var(--tech-heading-font); font-weight: 600; font-size: 0.9rem; }
.tech-sidebar-cat-link:hover { border-color: var(--tech-accent); color: var(--tech-accent); }
.tech-sidebar-cat-count { background: var(--tech-border); font-size: 0.75rem; padding: 2px 8px; border-radius: 10px; color: var(--tech-text); }
.tech-sidebar-cat-link:hover .tech-sidebar-cat-count { background: var(--tech-accent); color: #0b0f19; }
.tech-article-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; padding: 30px 0; }
.tech-article-wrap { background: var(--tech-surface); border: 1px solid var(--tech-border); padding: 30px; border-radius: 12px; }
.tech-article-title { font-family: var(--tech-heading-font); font-size: 2.2rem; font-weight: 800; line-height: 1.25; margin-bottom: 20px; color: #ffffff; }
.tech-article-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid var(--tech-border); }
.tech-meta-author-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--tech-accent); }
.tech-article-img { width: 100%; max-height: 500px; object-fit: cover; border-radius: 10px; margin-bottom: 25px; }
.tech-article-content { font-size: 1.05rem; line-height: 1.75; color: #e5e7eb; }
.tech-article-content h2, .tech-article-content h3 { font-family: var(--tech-heading-font); margin-top: 30px; margin-bottom: 15px; color: #ffffff; }
.tech-article-content p { margin-bottom: 20px; }
.tech-article-content ul, .tech-article-content ol { margin-bottom: 20px; padding-left: 20px; }
.tech-silo-link { background: var(--tech-surface-hover); border-left: 4px solid var(--tech-accent); padding: 12px 18px; border-radius: 0 8px 8px 0; margin: 25px 0; }
.tech-silo-link strong { color: var(--tech-accent); }
.tech-author-box { display: flex; gap: 20px; background: var(--tech-surface-hover); border: 1px solid var(--tech-border); padding: 24px; border-radius: 10px; margin-top: 40px; }
.tech-author-box img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; border: 2px solid var(--tech-accent); }
.tech-author-name { font-family: var(--tech-heading-font); font-size: 1.2rem; font-weight: 800; color: var(--tech-accent); }
.tech-author-title { font-size: 0.8rem; text-transform: uppercase; font-weight: 700; color: var(--tech-text-muted); margin-bottom: 10px; }
.tech-author-bio { font-size: 0.9rem; color: var(--tech-text-muted); }
.tech-related { margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--tech-border); }
.tech-related h3 { font-family: var(--tech-heading-font); font-size: 1.4rem; font-weight: 800; margin-bottom: 20px; }
.tech-related ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.tech-related a { color: var(--tech-accent); }
.tech-related a:hover { color: var(--tech-primary); text-decoration: underline; }
.tech-breadcrumb { font-size: 0.85rem; color: var(--tech-text-muted); margin-bottom: 20px; }
.tech-breadcrumb a:hover { color: var(--tech-accent); }
.tech-footer { background: #060911; border-top: 1px solid var(--tech-border); padding: 60px 0 30px; margin-top: 60px; }
.tech-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
.tech-footer-brand p { color: var(--tech-text-muted); font-size: 0.9rem; margin-top: 14px; line-height: 1.6; }
.tech-footer-logo-text { font-family: var(--tech-heading-font); font-size: 1.5rem; font-weight: 800; color: #ffffff; letter-spacing: -0.5px; }
.tech-footer-col-title { font-family: var(--tech-heading-font); font-size: 1rem; font-weight: 800; color: #ffffff; margin-bottom: 20px; display: block; text-transform: uppercase; letter-spacing: 0.5px; }
.tech-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.tech-footer-col a { color: var(--tech-text-muted); font-size: 0.9rem; }
.tech-footer-col a:hover { color: var(--tech-accent); }
.tech-footer-bottom { border-top: 1px solid var(--tech-border); padding-top: 30px; text-align: center; font-size: 0.85rem; color: var(--tech-text-muted); }
.tech-legal-wrap { background: var(--tech-surface); border: 1px solid var(--tech-border); padding: 40px; max-width: 800px; margin: 0 auto; border-radius: 12px; }
.tech-legal-wrap h1 { font-family: var(--tech-heading-font); font-size: 2.5rem; font-weight: 800; margin-bottom: 25px; border-bottom: 1px solid var(--tech-border); padding-bottom: 12px; color: #ffffff; }
.tech-legal-wrap h2 { font-family: var(--tech-heading-font); font-size: 1.45rem; font-weight: 850; margin: 30px 0 15px; color: #ffffff; }
.tech-legal-wrap p { margin-bottom: 20px; font-size: 1rem; color: var(--tech-text-muted); }
@media (max-width: 992px) {
    .tech-hero-grid { grid-template-columns: 1fr; }
    .tech-popular-grid { grid-template-columns: 1fr; }
    .tech-main-sidebar-layout { grid-template-columns: 1fr; }
    .tech-article-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .tech-header-inner { flex-direction: column; gap: 15px; text-align: center; }
    .tech-nav ul { justify-content: center; flex-wrap: wrap; gap: 15px; }
    .tech-header-subscribe { width: 100%; justify-content: center; }
    .tech-footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .tech-article-wrap { padding: 20px; }
    .tech-hero-featured-title { font-size: 1.5rem; }
}
