/* THEME 12: PREMIUM FINTECH DARK STYLE */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg-main: #000000;
  --bg-card: rgba(20, 20, 20, 0.6); /* Полупрозрачный темно-серый */
  --bg-header: rgba(0, 0, 0, 0.8);
  --accent: #00F0FF; /* Электрический циан */
  --text-main: #FFFFFF;
  --text-gray: #888888;
  --border-color: rgba(255, 255, 255, 0.08); /* Очень тонкие линии */
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --shadow-sm: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

body { 
  font-family: var(--font-main); 
  background-color: var(--bg-main);
  /* Абстрактное красивое свечение на фоне (как на референсах финтеха) */
  background-image: radial-gradient(circle at 0% 0%, rgba(0, 240, 255, 0.15) 0%, transparent 40%),
                    radial-gradient(circle at 100% 100%, rgba(153, 51, 255, 0.1) 0%, transparent 40%);
  background-attachment: fixed;
  color: var(--text-gray); 
  line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; 
}

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
a:hover { color: #FFFFFF; }

h1, h2, h3, h4 { color: var(--text-main); font-family: var(--font-heading); font-weight: 500; letter-spacing: -0.02em; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 30px; width: 100%; }

.site-header { 
  background: var(--bg-header); 
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color); 
  position: sticky; top: 0; z-index: 100; 
}
.header-top { display: flex; justify-content: space-between; align-items: center; padding: 25px 30px; max-width: 1200px; margin: 0 auto; }
.logo { font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: 2px; text-transform: uppercase; }

.header-nav { display: none; } /* Минимализм: убираем нижнюю полосу меню */
.header-top::after {
  content: 'Platform \00a0\00a0\00a0 Solutions \00a0\00a0\00a0 Enterprise \00a0\00a0\00a0 Resources';
  font-size: 0.9rem; font-weight: 400; color: var(--text-main); position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links { display: none; }

.bottom-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; margin: 80px 0; }

.post-thumb-card { 
  position: relative; background: var(--bg-card); 
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color); 
  border-radius: 20px; 
  display: flex; flex-direction: column; justify-content: space-between; 
  padding: 40px 30px; transition: all 0.4s ease; 
  box-shadow: var(--shadow-sm); 
  min-height: 320px; 
}
.post-thumb-card:hover { 
  transform: translateY(-5px); 
  background: rgba(30, 30, 30, 0.7);
  border-color: rgba(0, 240, 255, 0.3); 
}

.cat-badge { 
  background: rgba(255, 255, 255, 0.05); 
  color: var(--text-main); padding: 6px 14px; font-size: 0.75rem; font-weight: 500; 
  border: 1px solid var(--border-color); border-radius: 30px; 
  display: inline-block; margin-bottom: 25px; width: fit-content; text-transform: uppercase; letter-spacing: 1px;
}

.post-thumb-title { color: var(--text-main); font-size: 1.5rem; line-height: 1.4; font-weight: 400; }

.post-container { max-width: 800px; margin: 80px auto; background: transparent; padding: 0; border: none; }
.post-h1 { font-size: 3.5rem; line-height: 1.15; margin-bottom: 30px; font-weight: 400; }
.post-meta-info { display: flex; align-items: center; gap: 20px; border-bottom: 1px solid var(--border-color); padding-bottom: 30px; margin-bottom: 40px; font-size: 0.95rem; font-weight: 300; }
.post-meta-info img { width: 55px; height: 55px; border-radius: 50%; filter: grayscale(100%); opacity: 0.8; }
.post-content { font-size: 1.15rem; line-height: 1.8; font-weight: 300; }
.post-content h2 { font-size: 2rem; margin: 60px 0 25px; color: #fff; font-weight: 400; }
.post-content p { margin-bottom: 25px; }
.post-content a { color: var(--accent); font-weight: 400; border-bottom: 1px solid rgba(0, 240, 255, 0.3); transition: 0.3s; }
.post-content a:hover { border-color: var(--accent); }

.pagination { display: flex; justify-content: center; gap: 10px; margin: 50px 0 100px; }
.page-link { width: 40px; height: 40px; display: flex; justify-content: center; align-items: center; border: none; background: rgba(255,255,255,0.05); color: var(--text-gray); border-radius: 8px; font-weight: 400; transition: 0.3s; }
.page-link:hover { background: rgba(255,255,255,0.1); color: #fff; }
.page-link.active { background: #fff; color: #000; }

.site-footer { background: transparent; border-top: 1px solid var(--border-color); padding: 60px 0 20px; margin-top: auto; }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 50px; max-width: 1200px; margin: 0 auto; padding: 0 30px; }
.footer-title { margin-bottom: 25px; font-weight: 500; color: #fff; font-size: 1.1rem; }
.footer-bottom { text-align: center; margin-top: 60px; padding-top: 25px; border-top: 1px solid var(--border-color); font-size: 0.85rem; color: #555; }