.nudix-container {
  width: 100%;
  max-width: var(--nudix-container, 1150px);
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}
.nudix-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}
.nudix-row.align-center { align-items: center; }
.nudix-primary {
  flex: 0 1 70%;
  max-width: 70%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.nudix-secondary {
  flex: 0 1 30%;
  max-width: 30%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.nudix-main-content {
  padding: 40px 0;
  background: var(--nudix-white);
}
/* Header */
.site-header.layout--default .main-header {
  box-shadow: 0 3px 4px 0 rgba(0,0,0,0.05);
}
.site-header.layout--default .site-branding-section {
  background: var(--nudix-header-bg);
  padding: var(--nudix-header-padding) 0;
}
.site-header.layout--default .site-branding-section .nudix-row {
  display: flex;
  align-items: center;
  padding: 5px 0;
}
.social-icons-wrap { flex: 0 1 30%; }
.site-branding {
  flex: 0 1 40%;
  text-align: center;
}
.header-actions {
  flex: 0 1 30%;
  text-align: right;
}
.search-toggle {
  background: transparent;
  color: var(--nudix-white);
  font-size: 18px;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
}
.search-toggle:hover {
  background: rgba(255,255,255,0.1);
}
.site-title {
  margin: 0;
  line-height: 1;
}
.site-title a {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--nudix-white);
  text-decoration: none;
  font-family: var(--nudix-font);
}
.site-title a:hover { color: var(--nudix-primary); }
.site-description {
  margin: 0;
  padding: 5px 5px 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}
/* Menu Section */
.menu-section {
  background: var(--nudix-menu-bg);
  position: relative;
}
.menu-section .nudix-row {
  position: relative;
}
.main-navigation {
  display: flex;
  width: 100%;
  justify-content: center;
}
.main-navigation .nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.main-navigation .nav-menu > li {
  position: relative;
  margin: 0;
}
.main-navigation .nav-menu > li > a {
  display: block;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--nudix-text);
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: var(--nudix-font);
  line-height: 36px;
}
.main-navigation .nav-menu > li > a:hover,
.main-navigation .nav-menu > li.current-menu-item > a,
.main-navigation .nav-menu > li.current_page_item > a {
  color: var(--nudix-primary);
}
.sub-menu {
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
  background: var(--nudix-white);
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-radius: 0 0 8px 8px;
}
.main-navigation .nav-menu li:hover > .sub-menu,
.main-navigation .nav-menu li.focus > .sub-menu {
  left: 0;
}
.sub-menu li { margin: 0; }
.sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--nudix-text);
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}
.sub-menu a:hover {
  color: var(--nudix-primary);
  padding-left: 25px;
}
/* Menu Toggle */
.menu-toggle {
  display: none;
  background: transparent;
  color: var(--nudix-text);
  padding: 12px 16px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  align-items: center;
  gap: 8px;
}
.nudix-menu-burger {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nudix-menu-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--nudix-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
/* Search Form */
.search-form-wrap {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--nudix-white);
  padding: 15px;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.search-form-wrap.active { display: block; }
.search-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  gap: 10px;
}
.search-form label { flex: 1; }
.search-form .search-field {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--nudix-border);
  border-radius: 8px;
  font-size: 15px;
}
.search-form .search-submit {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--nudix-primary), var(--nudix-secondary));
  color: var(--nudix-white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}
/* Hero Section */
.nudix-hero-section {
  background: var(--nudix-gradient-hero);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.nudix-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 90%, rgba(99,102,241,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(139,92,246,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(6,182,212,0.1) 0%, transparent 50%);
  z-index: 0;
}
.nudix-hero-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to top, var(--nudix-white), transparent);
  z-index: 1;
}
.nudix-hero-content {
  position: relative;
  z-index: 2;
}
.nudix-hero-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--nudix-white);
  margin: 0 auto 30px;
  line-height: 1.25;
  max-width: 800px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}
.nudix-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-weight: 700;
  background: var(--nudix-gradient-1);
  color: var(--nudix-white);
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(99,102,241,0.3);
  position: relative;
  overflow: hidden;
}
.nudix-hero-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.nudix-hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(99,102,241,0.45);
  color: var(--nudix-white);
}
.nudix-hero-btn:hover::before { opacity: 1; }
/* Posts Grid */
.nudix-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
.nudix-post-item {
  background: var(--nudix-white);
  border-radius: var(--nudix-radius);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--nudix-shadow);
  border: 1px solid var(--nudix-border);
}
.nudix-post-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--nudix-shadow-lg);
}
.blaze-box-wrap {
  display: flex;
  gap: 20px;
  padding: 20px;
}
.post-thumb-wrap {
  flex: 0 0 280px;
  border-radius: 8px;
  overflow: hidden;
}
.post-thumb-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.nudix-post-item:hover .post-thumb-wrap img {
  transform: scale(1.05);
}
.post-element {
  flex: 1;
}
.post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}
.post-categories a {
  display: inline-block;
  padding: 2px 12px;
  background: #333;
  color: var(--nudix-white);
  font-size: 12px;
  font-weight: 500;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.post-categories a:hover {
  background: var(--nudix-primary);
}
.post-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}
.post-title a {
  color: var(--nudix-text);
  text-decoration: none;
}
.post-title a:hover { color: var(--nudix-primary); }
.post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 12px;
  color: var(--nudix-text-light);
  margin-bottom: 10px;
}
.post-meta i { margin-right: 4px; }
.post-meta a { color: var(--nudix-text-light); }
.post-meta a:hover { color: var(--nudix-primary); }
.post-excerpt {
  font-size: 15px;
  color: var(--nudix-text);
  line-height: 1.6;
  margin-bottom: 12px;
}
.post-link-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--nudix-primary);
  text-decoration: none;
  transition: gap 0.3s ease;
}
.post-link-button:hover { gap: 10px; }
/* Ticker */
.ticker-news-wrap {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  padding: 8px 15px;
  border-radius: 4px;
  overflow: hidden;
}
.ticker-title {
  background: var(--nudix-primary);
  color: var(--nudix-white);
  padding: 4px 14px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 3px;
  margin-right: 15px;
  flex-shrink: 0;
}
.ticker-slider {
  flex: 1;
  overflow: hidden;
}
.ticker-item a {
  color: var(--nudix-text);
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.ticker-item a:hover { color: var(--nudix-primary); }
/* After Header */
.after-header {
  padding: 10px 0;
  background: var(--nudix-bg);
}
/* Footer */
.site-footer .main-footer {
  background: var(--nudix-footer-bg);
  padding: 60px 0 40px;
  color: rgba(255,255,255,0.8);
}
.footer-grid {
  display: grid;
  gap: 30px;
}
.footer-columns-1 { grid-template-columns: 1fr; }
.footer-columns-2 { grid-template-columns: repeat(2, 1fr); }
.footer-columns-3 { grid-template-columns: repeat(3, 1fr); }
.footer-columns-4 { grid-template-columns: repeat(4, 1fr); }
.footer-widget-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--nudix-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--nudix-primary);
}
.footer-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-widget ul li {
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-widget ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer-widget ul li a:hover { color: var(--nudix-primary); }
.footer-widget p { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-widget p a { color: var(--nudix-primary); }
.site-footer .bottom-footer {
  background: rgba(0,0,0,0.3);
  padding: 15px 0;
}
.site-footer .bottom-inner-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-footer .site-info,
.site-footer .bottom-menu {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.site-footer .site-info a,
.site-footer .bottom-menu a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.site-footer .site-info a:hover,
.site-footer .bottom-menu a:hover {
  color: var(--nudix-primary);
}
.bottom-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 15px;
}
.bottom-menu ul li { margin: 0; }
/* Scroll to Top */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--nudix-primary), var(--nudix-secondary));
  color: var(--nudix-white);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--nudix-primary);
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px var(--nudix-primary);
}
/* Pagination */
.nudix-pagination {
  margin-top: 40px;
  text-align: center;
}
.nudix-pagination ul {
  display: flex;
  justify-content: center;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nudix-pagination ul li {
  margin: 0;
}
.nudix-pagination ul li a,
.nudix-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid var(--nudix-border);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--nudix-text);
  background: var(--nudix-white);
  text-decoration: none;
  transition: all 0.3s ease;
}
.nudix-pagination ul li a:hover,
.nudix-pagination ul li span.current {
  background: var(--nudix-primary);
  color: var(--nudix-white);
  border-color: var(--nudix-primary);
}
/* Single Post */
.single-post .entry-header {
  margin-bottom: 25px;
}
.single-post .entry-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}
.single-post .entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 14px;
  color: var(--nudix-text-light);
  margin-bottom: 20px;
}
.single-post .entry-meta i { margin-right: 5px; }
.single-post .entry-meta a { color: var(--nudix-text-light); text-decoration: none; }
.single-post .entry-meta a:hover { color: var(--nudix-primary); }
.single-post .post-thumbnail {
  margin-bottom: 25px;
  border-radius: 8px;
  overflow: hidden;
}
.single-post .post-thumbnail img { width: 100%; }
.single-post .entry-content {
  font-size: 17px;
  line-height: 1.7;
  color: var(--nudix-text);
}
.single-post .entry-content p { margin-bottom: 1.2rem; }
.single-post .entry-content h2 { font-size: 26px; margin: 1.5rem 0 0.8rem; }
.single-post .entry-content h3 { font-size: 20px; margin: 1.5rem 0 0.8rem; }
.single-post .entry-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--nudix-border);
}
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.tag-label {
  font-weight: 600;
  font-size: 14px;
}
.post-tags a {
  display: inline-block;
  padding: 4px 12px;
  background: #f0f0f0;
  border-radius: 4px;
  font-size: 13px;
  color: var(--nudix-text);
  text-decoration: none;
  transition: all 0.3s;
}
.post-tags a:hover {
  background: var(--nudix-primary);
  color: var(--nudix-white);
}
/* Page Header */
.page-header {
  margin-bottom: 30px;
}
.page-title {
  font-size: 28px;
  font-weight: 700;
  position: relative;
  padding-left: 20px;
}
.page-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, var(--nudix-red), var(--nudix-purple));
  border-radius: 2px;
}
.archive-description {
  margin-top: 10px;
  color: var(--nudix-text-light);
  font-size: 15px;
}
/* 404 Page */
.nudix-404-page { text-align: center; padding: 80px 0; }
.nudix-404-content { max-width: 500px; margin: 0 auto; }
.error-code {
  font-size: 120px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--nudix-primary), var(--nudix-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}
.nudix-404-content h2 { font-size: 28px; margin-bottom: 15px; }
.nudix-404-content p { color: var(--nudix-text-light); margin-bottom: 25px; }
.nudix-404-content .search-form { margin-bottom: 25px; }
.nudix-404-content .nudix-btn i { margin-right: 8px; }
/* Widgets */
.widget {
  margin-bottom: 30px;
  background: var(--nudix-white);
  border: 1px solid var(--nudix-border);
  border-radius: 8px;
  padding: 20px;
}
.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--nudix-border);
}
.widget ul li:last-child { border-bottom: none; }
.widget ul li a {
  color: var(--nudix-text);
  text-decoration: none;
  font-size: 14px;
}
.widget ul li a:hover { color: var(--nudix-primary); }
.widget select { width: 100%; }
/* Breadcrumbs */
.nudix-breadcrumbs {
  padding: 10px 0;
  font-size: 13px;
  color: var(--nudix-text-light);
}
.nudix-breadcrumbs a { color: var(--nudix-text); text-decoration: none; }
.nudix-breadcrumbs a:hover { color: var(--nudix-primary); }
.nudix-breadcrumbs .separator { margin: 0 5px; }
.nudix-breadcrumbs .current { color: var(--nudix-text-light); }
/* Comments */
.comments-area {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--nudix-border);
}
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment { padding: 20px 0; border-bottom: 1px solid var(--nudix-border); }
.comment-body { display: flex; gap: 15px; }
.comment-author .avatar { border-radius: 50%; }
.comment-metadata { font-size: 12px; color: var(--nudix-text-light); }
.reply { margin-top: 8px; }
.reply a {
  font-size: 13px;
  color: var(--nudix-primary);
  text-decoration: none;
  font-weight: 500;
}
.comment-form label { display: block; font-weight: 500; margin-bottom: 5px; font-size: 14px; }
.comment-form input,
.comment-form textarea { width: 100%; }
.comment-form .form-submit { margin-top: 15px; }
.comment-form .submit {
  background: linear-gradient(135deg, var(--nudix-primary), var(--nudix-secondary));
  color: var(--nudix-white);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}
/* Sticky Header */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
.admin-bar .sticky-header { top: 32px; }
