﻿:root {
    --navy: #0a1b3d;
    --navy-dark: #08142e;
    --accent-warm: #ff9b3d;
    --accent-cool: #35a8ff;
    --accent: #ff8c32;
    --text: #1b1f24;
    --muted: #5f6770;
    --border: rgba(0, 0, 0, 0.08);
    --accent-gradient: linear-gradient(135deg, #ff9b3d, #35a8ff);
    --accent-soft: linear-gradient(135deg, rgba(255, 155, 61, 0.2), rgba(53, 168, 255, 0.2));
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background: #eaf0f6;
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--text);
    background: #eef2f6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: radial-gradient(1200px 800px at 12% 12%, rgba(53, 168, 255, 0.16), transparent 60%),
                radial-gradient(1200px 800px at 85% 18%, rgba(255, 169, 96, 0.22), transparent 60%),
                linear-gradient(135deg, #eef2f6 0%, #e2eaf5 35%, #f6f1d8 60%, #f6c594 78%, #f29054 100%);
    background-size: 240% 240%;
    animation: gradientFlow 28s ease infinite;
    pointer-events: none;
}
@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
a { text-decoration: none; color: inherit; }
header {
    background: rgba(10, 27, 61, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.container { width: min(1100px, 92%); margin: 0 auto; }
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Exo 2", sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #f6f7f9;
}
.brand-badge {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--accent-gradient);
    color: #0a1b3d;
    display: grid;
    place-items: center;
    font-weight: 700;
}
.nav-links {
    display: flex;
    gap: 14px;
    align-items: center;
}
.nav-links a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #c7cdd4;
    padding: 8px 10px;
    border-radius: 10px;
}
.nav-links a:hover { color: #fff; background: var(--accent-soft); }
.burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(34,40,48,0.7);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.burger span,
.burger span::before,
.burger span::after {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    position: relative;
    transition: transform .2s ease, opacity .2s ease;
}
.burger span::before,
.burger span::after {
    content: "";
    position: absolute;
    left: 0;
}
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
.burger.active span { background: transparent; }
.burger.active span::before { transform: translateY(7px) rotate(45deg); }
.burger.active span::after { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 0 0 16px;
    width: min(1100px, 92%);
    margin: 0 auto;
}
.mobile-menu a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #c7cdd4;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
}
.mobile-menu a:hover { color: #fff; background: var(--accent-soft); }
@media(max-width:860px){.nav-links{display:none;} .burger{display:flex;} .mobile-menu.open{display:flex;}}
main { flex: 1 0 auto; width: min(1100px, 92%); margin: 0 auto; padding: 40px 0; }
h1 {
    font-family: "Exo 2", sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    margin-bottom: 16px;
}
p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0 0 14px; }
.lead { color: var(--muted); margin-bottom: 28px; }
.card,
.content,
.post {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    padding: 20px;
}
.content h1 { font-family: "Exo 2", sans-serif; font-size: clamp(26px, 3vw, 34px); margin-bottom: 16px; }
.content h2 { margin: 18px 0 10px; font-size: 18px; }
.content p { color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.card h2 { font-size: 18px; font-family: "Exo 2", sans-serif; }
.card p { color: var(--muted); font-size: 14px; line-height: 1.5; }
.card a.more {
    margin-top: auto;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.card { min-height: 180px; display: flex; flex-direction: column; gap: 10px; }
.pagination { display: flex; gap: 10px; justify-content: center; align-items: center; margin-top: 28px; flex-wrap: wrap; }
.pagination a, .pagination span { padding: 8px 12px; border-radius: 10px; border: 1px solid rgba(0,0,0,0.12); font-size: 12px; color: var(--muted); }
.pagination a.active { background: var(--accent-soft); color: #111; border-color: rgba(53,168,255,0.4); }
.post img { max-width: 100%; border-radius: 14px; margin: 10px 0 16px; display: block; }
footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0 34px;
    color: #c7cdd4;
    font-size: 12px;
    text-align: center;
    background: #050b17;
}
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 10px; }
.footer-copy { margin-top: 10px; }



.blog-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.blog-card { background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; }
.blog-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.blog-card-body { padding: 16px; }
.blog-card h2 { font-family: "Exo 2", sans-serif; margin-bottom: 8px; font-size: 20px; }
.blog-meta { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.article-cover { width: 100%; border-radius: 18px; margin-bottom: 18px; }
.content ul { margin: 0 0 14px 18px; color: var(--muted); }
.content li { margin-bottom: 8px; }
@media (max-width: 860px){ .blog-grid { grid-template-columns: 1fr; } }

.hp-field{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;}

.blog-hero-slider { position: relative; margin-bottom: 22px; border-radius: 18px; overflow: hidden; border: 1px solid rgba(0,0,0,0.1); }
.blog-hero-track { display: flex; transition: transform .45s ease; }
.blog-hero-slide { min-width: 100%; position: relative; }
.blog-hero-slide img { width: 100%; height: 360px; object-fit: cover; display: block; }
.blog-hero-slide figcaption { position: absolute; left: 16px; bottom: 16px; padding: 8px 12px; border-radius: 10px; background: rgba(5,11,23,0.7); color: #fff; font-weight: 600; }
.blog-hero-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; border: none; background: rgba(5,11,23,0.75); color: #fff; font-size: 24px; cursor: pointer; }
.blog-hero-btn.prev { left: 12px; }
.blog-hero-btn.next { right: 12px; }


