[data-theme="dark"] {
  --bg-body: #000000; --bg-secondary: #181818; --bg-card: #1f1f1f; --bg-header: rgba(0,0,0,0.95);
  --text-primary: #ffffff; --text-secondary: #b0b0b0; --text-muted: #6c6c6c;
  --accent-primary: #7800ff; --accent-secondary: #52b6f9; --accent-hover: #8f33ff;
  --border-color: rgba(255,255,255,0.1); --shadow-glow: 0 0 20px rgba(120,0,255,0.3);
}
[data-theme="dark"] body { background-color: var(--bg-body); color: var(--text-primary); }
[data-theme="dark"] .site-header { background-color: var(--bg-header) !important; backdrop-filter: blur(10px); }
[data-theme="dark"] .site-footer { background-color: #0a0a0a !important; }
[data-theme="dark"] .hentry { background-color: var(--bg-card); border: 1px solid var(--border-color); }
[data-theme="dark"] .widget { background-color: var(--bg-card) !important; }
[data-theme="dark"] input[type="text"], [data-theme="dark"] input[type="email"], [data-theme="dark"] textarea {
  background-color: #2a2a2a; color: var(--text-primary); border: 1px solid var(--border-color);
}
[data-theme="dark"] .main-navigation ul ul { background-color: var(--bg-card); border: 1px solid var(--border-color); }
[data-theme="light"] {
  --bg-body: #f5f5f5; --bg-secondary: #ffffff; --bg-card: #ffffff; --bg-header: rgba(255,255,255,0.95);
  --text-primary: #1a1a1a; --text-secondary: #4a4a4a; --text-muted: #8a8a8a;
  --accent-primary: #7800ff; --accent-secondary: #52b6f9; --accent-hover: #6a00e6;
  --border-color: rgba(0,0,0,0.1); --shadow-glow: 0 0 15px rgba(120,0,255,0.2);
}
[data-theme="light"] body { background-color: var(--bg-body); color: var(--text-primary); }
[data-theme="light"] .site-header { background-color: var(--bg-header) !important; backdrop-filter: blur(10px); }
[data-theme="light"] .site-footer { background-color: #1a1a1a !important; color: #b0b0b0; }
[data-theme="light"] .hentry { background-color: var(--bg-card); border: 1px solid var(--border-color); }
[data-theme="light"] .widget { background-color: var(--bg-card) !important; }
[data-theme="light"] input[type="text"], [data-theme="light"] input[type="email"], [data-theme="light"] textarea {
  background-color: #f9f9f9; color: var(--text-primary); border: 1px solid var(--border-color);
}
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-height, 80px); transition: all 0.3s ease;
}
.site-header .header-container {
  max-width: 1440px; margin: 0 auto; padding: 0 20px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.header-logo { flex-shrink: 0; z-index: 1001; }
.header-logo a { display: flex; align-items: center; height: 50px; }
.header-logo img { max-height: 100%; width: auto; }
.header-logo-text {
  font-size: 24px; font-weight: 900;
  background: linear-gradient(135deg, #7800ff, #52b6f9);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; letter-spacing: 2px; text-transform: uppercase;
}
.header-navigation { flex: 1; display: flex; justify-content: center; margin: 0 40px; }
.nav-menu { display: flex; align-items: center; list-style: none; gap: 5px; }
.nav-menu > li > a {
  padding: 10px 16px; font-size: 14px; font-weight: 600; text-transform: uppercase;
  color: var(--text-primary); transition: all 0.2s; border-radius: 4px; position: relative;
}
.nav-menu > li > a:hover { color: var(--accent-secondary); }
.header-actions { display: flex; align-items: center; gap: 15px; }
.search-toggle, .theme-toggle {
  background: transparent; border: none; color: var(--text-primary);
  cursor: pointer; padding: 8px; border-radius: 50%; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
.search-toggle:hover, .theme-toggle:hover { background-color: var(--bg-card); color: var(--accent-secondary); }
.social-media { display: flex; gap: 8px; }
.social-media a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background-color: var(--bg-card); color: var(--text-primary);
  transition: all 0.2s;
}
.social-media a:hover { background-color: var(--accent-primary); color: white; transform: translateY(-2px); }
.mobile-menu-toggle { display: none; background: transparent; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.mobile-menu-toggle .hamburger { display: block; width: 24px; height: 2px; background-color: var(--text-primary); position: relative; }
.mobile-menu-toggle .hamburger::before, .mobile-menu-toggle .hamburger::after {
  content: ''; position: absolute; width: 24px; height: 2px; background-color: var(--text-primary); transition: all 0.2s;
}
.mobile-menu-toggle .hamburger::before { top: -7px; }
.mobile-menu-toggle .hamburger::after { bottom: -7px; }

/* Header Background */
.site-header {
  background-color: var(--bg-secondary, #1a1a1a);
}
.site-header.transparent {
  background-color: rgba(0,0,0,0.8);
}
.site-header.scrolled {
  background-color: var(--bg-secondary, #1a1a1a);
}

/* Search Overlay */
.search-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.95); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.search-overlay.active { opacity: 1; visibility: visible; }
.search-overlay form { width: 100%; max-width: 800px; padding: 0 20px; display: flex; gap: 10px; }
.search-overlay input[type="search"] {
  flex: 1; padding: 20px 25px; font-size: 18px;
  background-color: #1f1f1f; color: white;
  border: 2px solid rgba(255,255,255,0.1); border-radius: 8px;
}
.search-overlay button[type="submit"] {
  padding: 20px 40px; font-size: 16px; font-weight: 700;
  background: linear-gradient(135deg, #7800ff, #52b6f9);
  color: white; border: none; border-radius: 8px;
  cursor: pointer; text-transform: uppercase;
}
.search-overlay-close {
  position: absolute; top: 30px; right: 30px;
  background: transparent; border: none; color: white;
  cursor: pointer; font-size: 32px; width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: all 0.2s;
}
.search-overlay-close:hover { background-color: rgba(255,255,255,0.1); transform: rotate(90deg); }
body.search-open { overflow: hidden; }

/* Mobile Navigation */
@media (max-width: 767px) {
  .header-navigation { display: none !important; }
  .mobile-menu-toggle { display: block !important; }
  .header-actions .social-media { display: none !important; }
  .site-header { height: 60px; }
  .site-header .header-container { padding: 0 15px; }
  .header-logo img { height: 40px; }
  .mobile-nav-overlay {
    position: fixed; top: 0; right: -100%; width: 85%; max-width: 320px;
    height: 100vh; background-color: var(--bg-secondary); z-index: 1999;
    transition: right 0.3s; overflow-y: auto; padding: 80px 15px 20px;
    display: block !important;
  }
  .mobile-nav-overlay.active { right: 0; }
  .mobile-nav-overlay .nav-menu { flex-direction: column; align-items: flex-start; }
  .mobile-nav-overlay .nav-menu > li { width: 100%; }
  .mobile-nav-overlay .nav-menu > li > a { padding: 12px 15px; font-size: 15px; width: 100%; }
  .search-toggle, .theme-toggle { width: 35px; height: 35px; }
}
@media (min-width: 768px) {
  .mobile-menu-toggle { display: none !important; }
  .mobile-nav-overlay { display: none !important; }
  .header-navigation { display: block !important; }
}

/* Dropdown Menu */
.nav-menu li.menu-item-has-children { position: relative; }
.nav-menu li.menu-item-has-children > a::after { content: '▼'; font-size: 8px; margin-left: 6px; opacity: 0.6; }
.nav-menu ul.sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background-color: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: 8px; box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  list-style: none; padding: 10px 0; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.2s; z-index: 1000;
}
.nav-menu li.menu-item-has-children:hover > ul.sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu ul.sub-menu li a {
  display: block; padding: 12px 20px; color: var(--text-primary);
  font-size: 13px; font-weight: 500; transition: all 0.2s; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-menu ul.sub-menu li:last-child a { border-bottom: none; }
.nav-menu ul.sub-menu li a:hover { background-color: #7800ff; color: white; padding-left: 25px; }
.submenu-toggle { display: none; background: transparent; border: none; color: var(--text-primary); cursor: pointer; padding: 10px; font-size: 12px; }
@media (max-width: 767px) {
  .nav-menu ul.sub-menu {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: none; background-color: rgba(0,0,0,0.15); margin-top: 0; margin-left: 15px;
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out;
    padding: 0; border-radius: 0;
  }
  .nav-menu ul.sub-menu.open { max-height: 1000px; padding: 10px 0; }
  .nav-menu ul.sub-menu li { display: block; width: 100%; }
  .nav-menu ul.sub-menu li a {
    display: block; padding: 10px 15px 10px 25px; color: var(--text-secondary);
    font-size: 14px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
  }
  .nav-menu ul.sub-menu li a:hover { background-color: rgba(120,0,255,0.2); color: var(--accent-secondary); padding-left: 30px; }
  .nav-menu ul.sub-menu li:last-child a { border-bottom: none; }
  .submenu-toggle { display: none; }
  .nav-menu li.menu-item-has-children > a { padding-right: 16px; }
}
.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.hero-video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-video-category {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #7800ff, #52b6f9);
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 25px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-video-title {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-video-excerpt {
  font-size: clamp(16px, 2.5vw, 20px);
  color: white;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-video-cta {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(135deg, #7800ff, #52b6f9);
  color: white;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 10px;
  transition: all 0.3s;
  text-decoration: none;
  letter-spacing: 1px;
}

.hero-video-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(120,0,255,0.5);
}

@media (max-width: 768px) {
  .hero-video {
    min-height: 350px;
    height: 50vh;
    max-height: 500px;
  }
  .hero-video-content { padding: 0 15px; max-width: 100%; }
  .hero-video-category {
    font-size: 10px; padding: 5px 12px; margin-bottom: 10px;
  }
  .hero-video-title {
    font-size: clamp(22px, 7vw, 32px);
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .hero-video-excerpt {
    font-size: clamp(13px, 3.5vw, 15px);
    margin-bottom: 15px;
    line-height: 1.4;
  }
  .hero-video-cta {
    padding: 12px 25px; font-size: 13px; width: 90%; max-width: 250px;
  }
}
@media (max-width: 480px) {
  .hero-video {
    min-height: 280px;
    height: 45vh;
    max-height: 400px;
  }
  .hero-video-category {
    font-size: 9px; padding: 4px 10px; margin-bottom: 8px;
  }
  .hero-video-title {
    font-size: clamp(18px, 6vw, 26px);
    margin-bottom: 8px;
  }
  .hero-video-excerpt {
    font-size: clamp(12px, 3vw, 14px);
    margin-bottom: 12px;
  }
  .hero-video-cta {
    padding: 10px 20px; font-size: 12px; width: 100%; max-width: 220px;
  }
}
.featured-posts { padding: 60px 0 20px; background-color: var(--bg-body); }
.featured-posts .section-header {
  max-width: 1440px; margin: 0 auto 30px; padding: 0 20px;
}
.featured-posts .section-header h2 { font-size: 28px; font-weight: 800; color: var(--text-primary); }
.featured-grid {
  max-width: 1440px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.featured-item {
  display: block; text-decoration: none; color: inherit;
  background-color: var(--bg-card); border-radius: 12px; overflow: hidden;
  transition: all 0.3s;
}
.featured-item:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(120,0,255,0.3); }
.featured-thumbnail {
  position: relative; height: 180px; background-size: cover; background-position: center;
}
.featured-category {
  position: absolute; top: 8px; left: 8px; padding: 4px 10px;
  background: linear-gradient(135deg, #7800ff, #52b6f9);
  color: white; font-size: 9px; font-weight: 700; text-transform: uppercase; border-radius: 12px;
}
.featured-content { padding: 12px; }
.featured-title { font-size: 13px; font-weight: 700; color: var(--text-primary); margin: 0 0 6px; line-height: 1.3; }
.featured-excerpt { font-size: 11px; color: var(--text-secondary); line-height: 1.35; margin: 0 0 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.featured-meta { font-size: 10px; color: var(--text-muted); }
.latest-posts { background-color: var(--bg-body); }
.latest-posts .section-header {
  max-width: 1200px; margin: 0 auto 40px; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.latest-posts .section-header h2 { font-size: 32px; font-weight: 800; color: var(--text-primary); }
.latest-posts .view-all {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px;
  background-color: transparent; color: var(--accent-secondary);
  font-size: 14px; font-weight: 600; text-transform: uppercase;
  border: 2px solid var(--accent-secondary); border-radius: 8px; transition: all 0.2s;
}
.latest-posts .view-all:hover { background-color: var(--accent-secondary); color: white; }
.posts-list { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; flex-direction: column; gap: 30px; }
.post-item {
  display: flex; gap: 25px; background-color: var(--bg-card);
  border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden;
  transition: all 0.3s; text-decoration: none; color: inherit;
}
.post-item:hover { transform: translateY(-5px) translateX(5px); box-shadow: 0 8px 25px rgba(120,0,255,0.3); border-color: #7800ff; }
.post-thumbnail { position: relative; width: 280px; height: 180px; flex-shrink: 0; overflow: hidden; }
.post-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.post-item:hover .post-thumbnail img { transform: scale(1.1); }
.post-thumbnail .post-category {
  position: absolute; top: 12px; left: 12px; padding: 5px 12px;
  background: linear-gradient(135deg, #7800ff, #52b6f9);
  color: white; font-size: 10px; font-weight: 700; text-transform: uppercase; border-radius: 15px;
}
.post-content { flex: 1; padding: 20px 0; display: flex; flex-direction: column; justify-content: center; }
.post-title { font-size: 22px; font-weight: 700; color: var(--text-primary); margin: 0 0 12px; }
.post-item:hover .post-title { color: var(--accent-secondary); }
.post-excerpt { font-size: 14px; color: var(--text-secondary); line-height: 1.5; margin: 0 0 15px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-meta { display: flex; gap: 15px; font-size: 12px; color: var(--text-muted); }
.post-meta span { display: flex; align-items: center; gap: 5px; }
@media (max-width: 1200px) {
  .featured-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
}
@media (max-width: 992px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .featured-thumbnail { height: 180px; }
}
@media (max-width: 768px) {
  .featured-posts { padding: 40px 0 15px; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 15px; }
  .featured-thumbnail { height: 140px; }
  .featured-content { padding: 12px; }
  .featured-title { font-size: 13px; }
  .featured-excerpt { font-size: 11px; -webkit-line-clamp: 2; }
  .featured-category { font-size: 9px; padding: 4px 10px; }
  
  .post-item { flex-direction: column; gap: 0; }
  .post-thumbnail { width: 100%; height: 200px; }
  .post-content { padding: 15px; }
  .post-title { font-size: 18px; }
  .post-excerpt { font-size: 14px; -webkit-line-clamp: 2; }
  .latest-posts .section-header { flex-direction: column; align-items: flex-start; gap: 15px; }
  .latest-posts .section-header h2 { font-size: 28px; }
}
@media (max-width: 480px) {
  .featured-grid { grid-template-columns: 1fr; padding: 0 10px; }
  .featured-thumbnail { height: 160px; }
  .post-thumbnail { height: 180px; }
  body { font-size: 13px; }
  .site-header { height: 55px; }
  .mobile-nav-overlay { width: 90%; max-width: 280px; padding: 70px 12px 15px; }
  .mobile-nav-overlay .nav-menu > li > a { padding: 10px 12px; font-size: 14px; }
}

/* Load More Button */
.posts-list-footer {
  max-width: 1200px;
  margin: 50px auto 0;
  padding: 0 20px;
  text-align: center;
}

.load-more-button {
  display: inline-block;
  padding: 16px 50px;
  background: linear-gradient(135deg, #7800ff, #52b6f9);
  color: white;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(120, 0, 255, 0.3);
}

.load-more-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(120, 0, 255, 0.5);
}

.load-more-button:disabled,
.load-more-button.loading {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.load-more-button.loading::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Archive Header */
.archive-header {
  padding: 60px 0 40px;
  background-color: var(--bg-body);
}
.archive-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.archive-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
}
.archive-description {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 15px;
  line-height: 1.6;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 25px;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 15px;
  background: linear-gradient(135deg, #7800ff, #52b6f9);
  color: white;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(120, 0, 255, 0.3);
}
.pagination a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(120, 0, 255, 0.5);
}
.pagination .current {
  background: linear-gradient(135deg, #52b6f9, #7800ff);
  box-shadow: 0 4px 15px rgba(82, 182, 249, 0.4);
}
.pagination .dots {
  background: transparent;
  box-shadow: none;
  cursor: default;
}
.pagination .dots:hover {
  transform: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .archive-title {
    font-size: 24px;
  }
  .archive-header {
    padding: 30px 0 15px;
  }
  .archive-description {
    font-size: 14px;
  }
  .pagination {
    gap: 6px;
  }
  .pagination a,
  .pagination span {
    min-width: 35px;
    height: 35px;
    font-size: 13px;
    padding: 0 12px;
  }
}
.site-footer { background-color: #0a0a0a !important; color: #b0b0b0; padding: 0; margin-top: 80px; }
.footer-content {
  max-width: 1440px; margin: 0 auto; padding: 60px 20px 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.footer-widget { padding: 0; }
.footer-widget .widget-title {
  font-size: 18px; font-weight: 700; color: white; margin: 0 0 20px;
  padding-bottom: 10px; border-bottom: 2px solid #7800ff;
}
.footer-widget p { font-size: 14px; line-height: 1.7; margin-bottom: 15px; }
.footer-widget ul { list-style: none; margin: 0; padding: 0; }
.footer-widget ul li { margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-widget ul li:last-child { border-bottom: none; }
.footer-widget ul li a { color: #b0b0b0; transition: all 0.2s; }
.footer-widget ul li a:hover { color: #52b6f9; transform: translateX(5px); }
.newsletter-widget {
  background: linear-gradient(145deg, rgba(31,31,31,0.5), rgba(25,25,25,0.5));
  padding: 25px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1);
}
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input[type="email"] {
  padding: 14px 18px; background-color: #2a2a2a; color: white;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
}
.newsletter-form button[type="submit"] {
  padding: 14px 24px; background: linear-gradient(135deg, #7800ff, #52b6f9);
  color: white; border: none; border-radius: 8px; font-weight: 700;
  text-transform: uppercase; cursor: pointer; transition: all 0.2s;
}
.newsletter-form button[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(120,0,255,0.5); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 30px 20px; background-color: rgba(0,0,0,0.3); }
.footer-bottom .container {
  max-width: 1440px; margin: 0 auto; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-bottom p { margin: 0; font-size: 13px; color: #6c6c6c; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: #b0b0b0; }
.footer-bottom-links a:hover { color: #52b6f9; }
.wp-block-button__link {
  display: inline-block !important;
  padding: 16px 50px !important;
  background: linear-gradient(135deg, #7800ff, #52b6f9) !important;
  color: white !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  border-radius: 8px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  box-shadow: 0 4px 15px rgba(120, 0, 255, 0.3) !important;
  text-decoration: none !important;
}
.wp-block-button__link:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(120, 0, 255, 0.5) !important;
  color: white !important;
}
.wp-block-jetpack-subscriptions__subscount {
  display: none !important;
}
@media (max-width: 1024px) { 
  .footer-content { grid-template-columns: repeat(2, 1fr); gap: 30px; padding: 50px 15px 30px; }
}
@media (max-width: 768px) { 
  .footer-content { grid-template-columns: 1fr; gap: 25px; padding: 40px 15px 25px; }
  .footer-widget .widget-title { font-size: 16px; }
  .newsletter-widget { padding: 20px; }
}
.social-icon { display: inline-flex; align-items: center; justify-content: center; width: 1em; height: 1em; fill: currentColor; }
.social-link { display: inline-flex; align-items: center; justify-content: center; transition: all 0.2s; }
.social-link:hover { transform: scale(1.1); }
.social-link svg { width: 100%; height: 100%; }
@media (max-width: 767px) {
  body { font-size: 14px; }
  .site-header { height: 60px; }
  .mobile-nav-overlay {
    position: fixed; top: 0; right: -100%; width: 85%; max-width: 320px;
    height: 100vh; background-color: var(--bg-secondary); z-index: 1999;
    transition: right 0.3s; overflow-y: auto; padding: 80px 15px 15px;
  }
  .mobile-nav-overlay.active { right: 0; }
  .mobile-nav-overlay .nav-menu { flex-direction: column; align-items: flex-start; }
  .mobile-nav-overlay .nav-menu > li { width: 100%; }
  .mobile-nav-overlay .nav-menu > li > a { padding: 12px 15px; font-size: 15px; width: 100%; }
}
@media (max-width: 480px) {
  .hero-slider { min-height: 350px; }
  .slide-title { font-size: 20px; }
  .post-title { font-size: 16px; }
  .load-more-button { padding: 14px 35px; font-size: 14px; width: 100%; max-width: 250px; }
}
.cookie-banner {
  position: fixed; bottom: -100%; left: 0; right: 0;
  background-color: var(--bg-card); border-top: 2px solid #7800ff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3); z-index: 9999;
  padding: 30px 20px; transition: bottom 0.3s;
}
.cookie-banner.visible { bottom: 0; }
.cookie-banner-content {
  max-width: 1440px; margin: 0 auto; display: grid;
  grid-template-columns: 1fr auto; gap: 30px; align-items: center;
}
.cookie-banner-text h3 { font-size: 20px; font-weight: 700; color: white; margin: 0 0 10px; }
.cookie-banner-text p { font-size: 14px; color: #b0b0b0; line-height: 1.6; }
.cookie-types { list-style: none; margin: 15px 0; padding: 0; }
.cookie-types li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.cookie-types input[type="checkbox"] { width: 18px; height: 18px; accent-color: #7800ff; }
.cookie-types label { font-size: 14px; color: white; cursor: pointer; }
.cookie-banner-actions { display: flex; gap: 15px; }
.cookie-banner-actions button {
  padding: 14px 30px; border-radius: 8px; font-weight: 700;
  text-transform: uppercase; cursor: pointer; transition: all 0.2s; border: none;
}
#cookie-accept { background: linear-gradient(135deg, #7800ff, #52b6f9); color: white; }
#cookie-accept:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(120,0,255,0.5); }
#cookie-deny { background-color: transparent; color: white; border: 2px solid rgba(255,255,255,0.3); }
#cookie-settings { background-color: transparent; color: #52b6f9; }
@media (max-width: 768px) {
  .cookie-banner-content { grid-template-columns: 1fr; padding: 20px 15px; }
  .cookie-banner { padding: 20px 15px; }
  .cookie-banner-text h3 { font-size: 16px; }
  .cookie-banner-text p { font-size: 13px; }
  .cookie-banner-actions { flex-direction: column; width: 100%; gap: 10px; }
  .cookie-banner-actions button { width: 100%; padding: 12px 20px; }
}
