/*
Theme Name: EseoStrategy Premium Theme
Theme URI: https://eseostrategy.com/
Author: eseostrategy
Author URI: https://eseostrategy.com/
Description: A premium, state-of-the-art dark & neon WordPress Theme designed for high-end SEO tools and tech news. Scoped with glowing cyan and purple accents, modern typography, and fully optimized for Elementor.
Version: 1.1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eseostrategy-theme
*/

/* ==========================================
   GLOBAL DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
  /* Color Palette */
  --bg-gradient: radial-gradient(circle at 50% 50%, #0e111a 0%, #050608 100%);
  --bg-dark: #050608;
  --panel-bg: rgba(18, 22, 33, 0.6);
  --panel-border: rgba(255, 255, 255, 0.05);
  --panel-border-hover: rgba(0, 242, 254, 0.2);
  
  --primary-cyan: #00f2fe;
  --primary-purple: #8b5cf6;
  --primary-glow: linear-gradient(135deg, #00f2fe 0%, #8b5cf6 100%);
  
  --success-color: #00e676;
  --warning-color: #ffb300;
  --danger-color: #ff1744;
  --info-blue: #4facfe;
  
  --text-main: #f5f6fa;
  --text-secondary: #a0aec0;
  --text-muted: #6b7280;
  
  /* Fonts */
  --font-sans: 'Inter', sans-serif;
  --font-digit: 'Orbitron', sans-serif;
  --font-mono: 'Fira Code', monospace;
  
  /* Utilities */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-glow: 0 0 30px rgba(0, 242, 254, 0.1);
  --border-radius: 16px;
}

/* ==========================================
   CSS RESET & BASE STYLES
   ========================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Code & Copy Protection (Disabled for Logged-in Admins) */
body:not(.is-admin-user) {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

body:not(.is-admin-user) img {
  -webkit-user-drag: none;
  user-drag: none;
}

/* Digital Grid Cyber Mesh Background Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

a {
  color: var(--primary-cyan);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.6);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-digit);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(10, 11, 15, 0.4);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 242, 254, 0.35);
}

/* Background Glowing Mesh Blobs */
.background-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.mesh-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
  mix-blend-mode: screen;
  animation: pulse-glow 10s infinite alternate ease-in-out;
}
.mesh-glow-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: var(--primary-cyan);
}
.mesh-glow-2 {
  bottom: -15%;
  right: -5%;
  width: 45vw;
  height: 45vw;
  background: var(--primary-purple);
  animation-delay: -3s;
}
@keyframes pulse-glow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.12; }
  100% { transform: scale(1.15) translate(4%, 3%); opacity: 0.20; }
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.site-header {
  background: rgba(8, 10, 16, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--panel-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-digit);
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: var(--primary-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.3));
}

.logo-section i {
  background: var(--primary-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  display: inline-flex;
  align-items: center;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
  color: var(--primary-cyan);
  text-shadow: 0 0 8px rgba(0, 242, 254, 0.5);
}

/* Dropdown Menu (Sub-menus) Desktop Styles */
.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(8, 10, 16, 0.98);
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 8px 30px rgba(0, 242, 254, 0.15);
  border-radius: 8px;
  padding: 0.6rem 0;
  min-width: 220px;
  list-style: none;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 999;
}

/* Show sub-menu on hover */
.nav-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-menu .sub-menu li {
  width: 100%;
  margin: 0;
}

.nav-menu .sub-menu a {
  display: block;
  padding: 0.65rem 1.5rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-menu .sub-menu li:last-child a {
  border-bottom: none;
}

.nav-menu .sub-menu a:hover {
  color: var(--primary-cyan);
  background: rgba(0, 242, 254, 0.06);
  padding-left: 1.8rem;
  text-shadow: 0 0 8px rgba(0, 242, 254, 0.4);
}

/* Dropdown Indicator Arrow for Items with Children */
.nav-menu .menu-item-has-children > a::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: 0.4rem;
  font-size: 0.65rem;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.2s ease;
}

.nav-menu .menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
  color: var(--primary-cyan);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(8, 10, 16, 0.95);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--panel-border);
    backdrop-filter: blur(20px);
  }
  
  .nav-menu.active {
    display: flex;
  }

  /* Mobile Dropdown Nested Visibility */
  .nav-menu .sub-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-left: 2px solid var(--primary-purple);
    border-radius: 0;
    box-shadow: none;
    padding: 0.5rem 0 0.5rem 1rem;
    margin-top: 0.5rem;
    min-width: 0;
  }

  .nav-menu .sub-menu a {
    padding: 0.4rem 0;
    border-bottom: none;
    font-size: 0.8rem;
  }
  
  .nav-menu .menu-item-has-children > a::after {
    display: none;
  }
}

/* ==========================================
   HOMEPAGE STRUCTURE
   ========================================== */
.hero-section {
  padding: 5rem 0 3rem;
  text-align: center;
  position: relative;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, #fff, #b0c0d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* Scrolling Ribbon (Marquee) */
.tools-marquee-container {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: rgba(139, 92, 246, 0.08);
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.05);
  margin-bottom: 4rem;
}

.marquee-content {
  display: inline-block;
  animation: marquee-scroll 25s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-main);
  font-family: var(--font-digit);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 4rem;
}

.marquee-item i {
  color: var(--primary-cyan);
  text-shadow: 0 0 8px rgba(0, 242, 254, 0.4);
}

@keyframes marquee-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* Tools Directory Grid */
.directory-section {
  max-width: 1200px;
  margin: 0 auto 5rem;
  padding: 0 1.5rem;
}

.section-header {
  margin-bottom: 2rem;
  text-align: left;
  border-left: 4px solid var(--primary-cyan);
  padding-left: 1rem;
}

.section-header h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.tool-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 250px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

/* Neon Top Border Trim */
.tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--primary-glow);
  opacity: 0.65;
  transition: opacity 0.3s;
}

.tool-card:hover::before {
  opacity: 1;
}

.tool-card:hover {
  border-color: var(--panel-border-hover);
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 242, 254, 0.08), 0 12px 40px rgba(0, 0, 0, 0.45);
}

.card-header-icon {
  font-size: 2rem;
  background: var(--primary-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 5px rgba(0, 242, 254, 0.2));
}

.tool-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: #fff;
}

.tool-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-action-btn {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--primary-cyan);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-action-btn i {
  transition: transform 0.2s;
}

.tool-card:hover .card-action-btn i {
  transform: translateX(4px);
}

/* ==========================================
   BLOG ARCHIVE / POSTS / NEWS THEME
   ========================================== */
.main-content-layout {
  max-width: 1200px;
  margin: 3rem auto 5rem;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 3rem;
}

@media (max-width: 900px) {
  .main-content-layout {
    grid-template-columns: 1fr;
  }
}

.blog-posts-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.post-article {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.post-article:hover {
  border-color: var(--panel-border-hover);
}

.post-thumbnail-wrapper img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-bottom: 1px solid var(--panel-border);
}

.post-details {
  padding: 2rem;
}

.post-meta-data {
  font-family: var(--font-digit);
  font-size: 0.75rem;
  color: var(--primary-purple);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  letter-spacing: 0.8px;
  display: flex;
  gap: 1.5rem;
}

.post-meta-data a {
  color: var(--primary-purple);
}

.post-meta-data span i {
  margin-right: 4px;
}

.post-details h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.post-details h2 a {
  color: #fff;
}

.post-details h2 a:hover {
  color: var(--primary-cyan);
}

.post-excerpt {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Sidebar Widgets */
.sidebar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.widget-box {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--border-radius);
  padding: 1.8rem;
}

.widget-title {
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  border-bottom: 2px solid var(--primary-cyan);
  padding-bottom: 0.5rem;
  letter-spacing: 0.8px;
}

.widget-box ul {
  list-style: none;
}

.widget-box ul li {
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 0.85rem;
}

.widget-box ul li a {
  color: var(--text-secondary);
}

.widget-box ul li a:hover {
  color: var(--primary-cyan);
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.site-footer {
  background: rgba(8, 10, 16, 0.95);
  border-top: 1px solid var(--panel-border);
  padding: 4rem 0 2rem;
  margin-top: auto;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
}

.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-about h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: var(--primary-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-about p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 380px;
}

.footer-links h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: #fff;
  letter-spacing: 0.8px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links ul li a {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.footer-links ul li a:hover {
  color: var(--primary-cyan);
}

.footer-copyright {
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-copyright a {
  color: var(--text-secondary);
  font-weight: 600;
}

.footer-copyright a:hover {
  color: var(--primary-cyan);
}

/* ==========================================
   FUTURE TECH NEWS GRID LAYOUT
   ========================================== */
.featured-news-grid {
  max-width: 1300px;
  margin: 3rem auto 4rem;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1.1fr;
  gap: 2.5rem;
}

@media (max-width: 900px) {
  .featured-news-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Main Featured Article (Left Side) */
.featured-news-main {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.featured-news-main:hover {
  border-color: var(--panel-border-hover);
  box-shadow: 0 15px 45px rgba(0, 242, 254, 0.08), 0 12px 40px rgba(0, 0, 0, 0.5);
}

.featured-news-main .main-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.featured-news-main:hover .main-image-bg {
  transform: scale(1.05);
}

.featured-news-main .overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 11, 17, 0) 30%, rgba(5, 6, 8, 0.95) 90%);
  z-index: 2;
}

.featured-news-main .main-news-details {
  position: relative;
  z-index: 3;
  padding: 2.5rem;
}

.news-tag {
  display: inline-block;
  font-family: var(--font-digit);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(0, 242, 254, 0.12);
  color: var(--primary-cyan);
  border: 1px solid rgba(0, 242, 254, 0.25);
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.featured-news-main h2 {
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 0.8rem;
  text-transform: none;
}

.featured-news-main h2 a {
  color: #fff;
}

.featured-news-main h2 a:hover {
  color: var(--primary-cyan);
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

.featured-news-main p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
  max-width: 90%;
}

.news-meta {
  font-family: var(--font-digit);
  font-size: 0.7rem;
  color: var(--primary-purple);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  gap: 1.5rem;
}

.news-meta span i {
  margin-right: 5px;
}

/* Secondary News List (Right Side) */
.featured-news-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
}

.news-list-item {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--border-radius);
  padding: 1rem;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  transition: var(--transition);
  height: calc((480px - 3rem) / 3); /* Distribute height evenly */
}

.news-list-item:hover {
  border-color: var(--panel-border-hover);
  transform: translateX(4px);
}

.list-image-wrapper {
  width: 130px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.list-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.news-list-item:hover .list-image-wrapper img {
  transform: scale(1.08);
}

.list-news-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.list-news-info h3 {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: none;
}

.list-news-info h3 a {
  color: #fff;
}

.list-news-info h3 a:hover {
  color: var(--primary-cyan);
}

/* ==========================================
   MOCKUP MATCH: PREMIUM DASHBOARD OVERRIDES
   ========================================== */

/* Centered Hero Header Design */
.centered-hero-header {
  text-align: center;
  max-width: 900px;
  margin: 4rem auto 2.5rem;
  padding: 0 1.5rem;
}

.centered-hero-header h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  text-transform: none;
  font-family: var(--font-sans);
  font-weight: 800;
  color: #fff;
}

.centered-hero-header h1 span {
  display: block;
  background: var(--primary-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(0, 242, 254, 0.25));
  font-size: 3.5rem;
  margin-top: 0.5rem;
  font-family: var(--font-digit);
  letter-spacing: 1px;
}

.centered-hero-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

/* Explore Tools Button */
.explore-btn {
  display: inline-block;
  font-family: var(--font-digit);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  color: #fff;
  text-transform: uppercase;
  border: 1px solid rgba(139, 92, 246, 0.7);
  padding: 0.8rem 2.2rem;
  border-radius: 6px;
  background: rgba(139, 92, 246, 0.05);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.explore-btn:hover {
  border-color: var(--primary-cyan);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.3), 0 0 10px rgba(139, 92, 246, 0.2);
  transform: translateY(-2px);
  color: var(--primary-cyan);
}

/* Glowing Double-Article Box Outer Wrapper */
.tech-news-wrapper {
  max-width: 1300px;
  margin: 3rem auto;
  padding: 1px; /* Creates clean alignment space */
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.35) 0%, rgba(236, 72, 153, 0.1) 50%, rgba(0, 242, 254, 0.35) 100%);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.15), 0 15px 40px rgba(0, 0, 0, 0.5);
}

.tech-news-wrapper .featured-news-grid {
  margin: 0;
  background: rgba(8, 11, 17, 0.95);
  border-radius: 11px;
  padding: 1.8rem;
  border: none;
}

/* Custom SVG Canvas Mockup Graphics inside Cards */
.card-chart {
  width: 100%;
  height: 90px;
  margin: 1rem 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 6, 8, 0.4);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  padding: 8px;
  overflow: hidden;
}

.neon-svg-chart {
  width: 100%;
  height: 100%;
}

/* Circular Gauge Styles */
.circular-svg {
  width: 70px;
  height: 70px;
  transform: rotate(-90deg);
}

.circular-svg .circle {
  stroke-dasharray: 75, 100;
  animation: progressPulse 4s ease-in-out infinite alternate;
}

@keyframes progressPulse {
  0% { stroke-dasharray: 70, 100; }
  100% { stroke-dasharray: 80, 100; }
}

.circular-chart .percentage {
  position: absolute;
  font-family: var(--font-digit);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 8px rgba(139, 92, 246, 0.6);
}

/* Nodes Chart Styles */
.nodes-svg {
  width: 100%;
  height: 100%;
}

@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.2); opacity: 1; }
}

.pulse-node {
  animation: pulseGlow 1.5s infinite alternate;
  transform-origin: center;
}

/* Dynamic Card Details Labels */
.chart-labels-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.chart-labels-row span {
  display: flex;
  flex-direction: column;
}

.chart-labels-row strong {
  color: #fff;
  font-family: var(--font-digit);
  font-size: 0.85rem;
  margin-top: 2px;
}

.green-text {
  color: #00e676 !important;
  text-shadow: 0 0 8px rgba(0, 230, 118, 0.4);
}

.red-text {
  color: #ff1744 !important;
}

.cyan-text {
  color: var(--primary-cyan) !important;
  text-shadow: 0 0 8px rgba(0, 242, 254, 0.4);
}

.purple-text {
  color: #8b5cf6 !important;
}


