/* === Base Settings ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;900&family=Playfair+Display:wght@700;900&family=Space+Grotesk:wght@400;500;700&display=swap');

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

body {
  font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.8;
  color: var(--text-color);
  background: #0a0e27;
  background-image: 
    radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(168, 85, 247, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(236, 72, 153, 0.15) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(34, 211, 238, 0.15) 0px, transparent 50%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* === Variables ================================================= */
:root {
  --primary-color: #3b82f6;
  --secondary-color: #a855f7;
  --accent-color: #ec4899;
  --accent-cyan: #22d3ee;
  --dark-blue: #0a0e27;
  --gradient-start: #3b82f6;
  --gradient-end: #a855f7;
  --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  --gradient-card: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
  --gradient-neon: linear-gradient(90deg, #00f5ff 0%, #ff00ff 50%, #00ff88 100%);
  --text-color: #e2e8f0;
  --light-text: #ffffff;
  --dark-bg: #0a0e27;
  --light-bg: #1a1f3a;
  --card-bg: rgba(26, 31, 58, 0.8);
  --border-color: rgba(139, 92, 246, 0.2);
  --shadow-color: rgba(59, 130, 246, 0.15);
  --hover-shadow: rgba(168, 85, 247, 0.4);
  --neon-glow: 0 0 5px rgba(59, 130, 246, 0.5), 0 0 20px rgba(168, 85, 247, 0.3);
}

/* === Header & Navigation ======================================== */
.site-header {
  background: rgba(10, 14, 39, 0.7);
  border-bottom: 2px solid transparent;
  border-image: var(--gradient-card) 1;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), var(--neon-glow);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--light-text);
  text-decoration: none;
  margin-right: 0.5rem;
  letter-spacing: -1px;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.hamburger-menu {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  margin-right: 1rem;
}

.hamburger-menu span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--light-text);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger-menu span:nth-child(1) {
  top: 0;
}

.hamburger-menu span:nth-child(2) {
  top: 8px;
}

.hamburger-menu span:nth-child(3) {
  top: 16px;
}

.main-navigation {
  display: flex;
  align-items: center;
}

.main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu li {
  margin: 0 1rem;
}

.main-menu a {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
  padding: 0.6rem 0;
  position: relative;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  font-family: 'Poppins', sans-serif;
}

.main-menu a::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gradient-neon);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
}

.main-menu a:hover::before {
  width: 120%;
}

.main-menu a:hover {
  transform: translateY(-3px) scale(1.05);
  color: #00f5ff;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}

.social-icons {
  display: flex;
  align-items: center;
  margin-left: 1.5rem;
}

.social-icons a {
  color: var(--light-text);
  margin-left: 1rem;
  font-size: 1.2rem;
  transition: opacity 0.3s;
}

.social-icons a:hover {
  opacity: 0.8;
}

.search-button {
  color: var(--light-text);
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  margin-left: 1rem;
  transition: opacity 0.3s;
}

.search-button:hover {
  opacity: 0.8;
}

/* === Hero Section ============================================== */
.hero {
  position: relative;
  background: transparent;
  color: var(--light-text);
  padding: 6rem 0 8rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-neon);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.episode-label {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.8);
}

.episode-label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: var(--light-text);
  margin-right: 0.5rem;
  vertical-align: middle;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 900;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
  letter-spacing: -2px;
  animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
  from { filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3)); }
  to { filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.6)); }
}

.hero-description {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  color: rgba(226, 232, 240, 0.9);
  font-weight: 300;
  line-height: 1.8;
}

.play-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--light-text);
  color: var(--dark-blue);
  border: none;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.play-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
}

.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--primary-color);
  border-radius: 50%;
  margin-right: 0.8rem;
}

.play-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--light-text);
}

.hero-image {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-navigation {
  position: absolute;
  left: 0;
  bottom: 2rem;
  display: flex;
}

.nav-arrow {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.nav-arrow:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-arrow svg {
  width: 16px;
  height: 16px;
  fill: var(--light-text);
}

/* === Post List ================================================ */
.post-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}

/* === Post Card ================================================ */
.post-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  backdrop-filter: blur(10px);
}

.post-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-card);
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  filter: blur(10px);
}

.post-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-neon);
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}

.post-item:hover {
  transform: translateY(-12px) scale(1.03) rotateX(5deg);
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3), 0 0 50px rgba(168, 85, 247, 0.3);
  border-color: rgba(59, 130, 246, 0.5);
}

.post-item:hover::before,
.post-item:hover::after {
  opacity: 1;
}

/* Featured Image */
.post-featured-image {
  position: relative;
  overflow: hidden;
}

.post-featured-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.post-item:hover .post-featured-image img {
  transform: scale(1.1);
}

/* Title */
.post-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  margin: 1.5rem 1.5rem 0.75rem;
  line-height: 1.3;
  font-weight: 700;
}

.post-item h3 a {
  color: var(--light-text);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline;
  background: linear-gradient(90deg, #00f5ff, #ff00ff, #00ff88);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 3s linear infinite;
}

@keyframes shine {
  to { background-position: 200% center; }
}

.post-item:hover h3 a {
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
  letter-spacing: 0.5px;
}

/* Excerpt */
.post-item p {
  margin: 0 1.5rem 1.5rem;
  color: rgba(226, 232, 240, 0.8);
  flex: 1 0 auto;
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 300;
}

/* Read More Link */
.post-item > a:last-of-type {
  align-self: flex-start;
  margin: 0 1.5rem 1.75rem;
  background: var(--gradient-card);
  color: var(--light-text);
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.post-item > a:last-of-type::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.post-item > a:last-of-type:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.6), 0 0 30px rgba(236, 72, 153, 0.4);
}

.post-item > a:last-of-type:hover::before {
  left: 100%;
}

/* === Pagination =============================================== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  font-weight: 600;
}

.page-numbers {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  text-decoration: none;
  color: var(--light-text);
  background: var(--card-bg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  backdrop-filter: blur(10px);
}

.page-numbers.current {
  background: var(--gradient-card);
  color: var(--light-text);
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5), 0 0 30px rgba(168, 85, 247, 0.4);
  border-color: transparent;
}

.page-numbers:hover {
  background: var(--gradient-card);
  color: var(--light-text);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 35px rgba(59, 130, 246, 0.6), 0 0 40px rgba(236, 72, 153, 0.4);
  border-color: transparent;
}

.next.page-numbers,
.prev.page-numbers {
  border-color: transparent;
  color: var(--primary-color);
}

.next.page-numbers:hover,
.prev.page-numbers:hover {
  color: var(--secondary-color);
  background: transparent;
}

/* === Breadcrumbs ============================================== */
.breadcrumbs {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 0 1rem;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.6);
  font-weight: 500;
  font-family: 'Space Grotesk', sans-serif;
}

.breadcrumbs a {
  color: #00f5ff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.breadcrumbs a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-neon);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

.breadcrumbs a:hover {
  color: #ff00ff;
}

.breadcrumbs a:hover::after {
  width: 100%;
}

.breadcrumbs span {
  color: var(--light-text);
  font-weight: 700;
}

/* === Page Content ============================================= */
.page-content {
  max-width: 800px;
  margin: 2rem auto 3rem;
  padding: 0;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(10px);
}

.page-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-neon);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
  animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
  from { opacity: 0.6; }
  to { opacity: 1; box-shadow: 0 0 30px rgba(168, 85, 247, 1); }
}

/* Featured Image in Page Header */
.page-content .post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Page Title */
.page-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin: 2.5rem 2rem 1rem;
  line-height: 1.2;
  color: var(--text-color);
  text-align: center;
  font-weight: 900;
  background: var(--gradient-neon);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 4s linear infinite;
  letter-spacing: -1px;
  text-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
}

/* Post Meta */
.post-meta {
  text-align: center;
  color: rgba(226, 232, 240, 0.6);
  font-size: 0.95rem;
  font-weight: 400;
  padding: 0 2rem;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 1px;
}

/* Content */
.page-content .content {
  padding: 0 2.5rem 2.5rem;
}

.page-content .content p {
  margin-bottom: 1.5rem;
  color: rgba(226, 232, 240, 0.9);
  font-size: 1.1rem;
  line-height: 1.9;
  font-weight: 300;
}

.page-content .content h2 {
  font-family: 'Poppins', sans-serif;
  margin: 2.5rem 0 1.25rem;
  color: var(--light-text);
  font-weight: 700;
  font-size: 1.8rem;
  background: linear-gradient(90deg, #3b82f6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-content .content h3 {
  margin: 1.5rem 0 0.8rem;
  color: var(--text-color);
}

.page-content .content ul,
.page-content .content ol {
  margin: 1rem 0 1rem 1.5rem;
}

.page-content .content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 4px;
}

/* === Footer ================================================== */
.site-footer {
  background: rgba(10, 14, 39, 0.95);
  border-top: 2px solid transparent;
  border-image: var(--gradient-neon) 1;
  color: rgba(226, 232, 240, 0.8);
  padding: 3.5rem 1rem 2.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-neon);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
  animation: borderGlow 2s ease-in-out infinite alternate;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.footer-menu a {
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  position: relative;
}

.footer-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-neon);
  transition: width 0.3s ease;
}

.footer-menu a:hover,
.footer-menu a:focus {
  color: #00f5ff;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.footer-menu a:hover::after {
  width: 100%;
}

.footer-contact {
  text-align: center;
  margin-bottom: 1.5rem;
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

.copyright {
  text-align: center;
  font-size: 0.875rem;
  margin-top: 1.5rem;
}

.footer-links {
  margin-top: 1rem;
}

.footer-links a {
  color: #00f5ff;
  text-decoration: none;
  margin: 0 0.75rem;
  transition: all 0.3s ease;
  font-weight: 600;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-neon);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #ff00ff;
  text-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

.footer-links a:hover::after {
  width: 100%;
}

/* === Responsive Styles ======================================== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-image {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 992px) {
  .hero-image {
    width: 300px;
    height: 300px;
    right: 2%;
  }
  
  .hero-content {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .hamburger-menu {
    display: block;
  }
  
  .main-navigation {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: var(--dark-bg);
    z-index: 999;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    transition: left 0.3s ease;
  }
  
  .main-navigation.active {
    left: 0;
  }
  
  .main-menu {
    flex-direction: column;
    width: 100%;
  }
  
  .main-menu li {
    margin: 1rem 0;
  }
  
  .social-icons {
    margin: 1.5rem 0 0;
  }
  
  .hero {
    text-align: center;
    padding: 3rem 0 6rem;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-image {
    position: relative;
    margin: 2rem auto 0;
    right: auto;
    bottom: auto;
    width: 250px;
    height: 250px;
  }
  
  .hero-navigation {
    position: relative;
    justify-content: center;
    margin-top: 1.5rem;
    bottom: auto;
    left: auto;
  }
  
  .post-list {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 576px) {
  .logo {
    font-size: 1.5rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .post-list {
    grid-template-columns: 1fr;
  }
  
  .footer-menu {
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-direction: column;
    align-items: center;
  }
}

/* === Container ================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* === Scrollbar Styling ======================================== */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
  border-left: 1px solid var(--border-color);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-card);
  border-radius: 10px;
  border: 2px solid var(--dark-bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-neon);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* Selection Styling */
::selection {
  background: rgba(59, 130, 246, 0.3);
  color: var(--light-text);
}

::-moz-selection {
  background: rgba(59, 130, 246, 0.3);
  color: var(--light-text);
}

/* === Recommended Articles Section ============================= */
.recommended-articles {
  padding: 4rem 0;
  background: transparent;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
  color: var(--text-color);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gradient-card);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* === Category Header ========================================== */
.category-header {
  text-align: center;
  margin: 4rem auto;
  padding: 0 1rem;
  max-width: 900px;
  position: relative;
}

.category-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  color: var(--text-color);
  margin-bottom: 1rem;
  font-weight: 900;
  background: var(--gradient-neon);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  animation: shine 4s linear infinite;
  letter-spacing: -2px;
}

.category-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: var(--gradient-neon);
  margin: 1.5rem auto 0;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}

.category-description {
  max-width: 800px;
  margin: 2rem auto 0;
  color: rgba(226, 232, 240, 0.8);
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 300;
}

/* === Contact Form ============================================= */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--gradient-card);
  color: var(--light-text);
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(245, 87, 108, 0.4);
}

/* === Privacy Policy =========================================== */
.privacy-policy {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.privacy-policy h2 {
  margin: 2rem 0 1rem;
  color: var(--text-color);
}

.privacy-policy p {
  margin-bottom: 1rem;
}

.privacy-policy ul {
  margin: 1rem 0 1rem 1.5rem;
}

.privacy-policy .updated-date {
  font-style: italic;
  color: #777;
  margin-bottom: 2rem;
}

/* === Animations =============================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Добавляем эффект свечения для акцентных элементов */
.glow-effect {
  animation: glowPulse 2s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from {
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
  }
  to {
    filter: drop-shadow(0 0 25px rgba(168, 85, 247, 0.8));
  }
}

/* === Utility Classes ========================================== */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.px-1 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2 { padding-left: 1rem; padding-right: 1rem; }
.px-3 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-4 { padding-left: 2rem; padding-right: 2rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }

/* === Single Post Layout with Sidebar ========================== */
.single-post-wrapper {
  max-width: 1400px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 2rem;
  align-items: start;
}

.single-post-content {
  max-width: 100%;
}

.single-post-sidebar {
  position: sticky;
  top: 100px;
}

/* === Random Articles Widget =================================== */
.random-articles-widget {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
}

.random-articles-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-neon);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
}

.random-articles-widget h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--light-text);
  font-weight: 800;
  text-align: center;
  background: var(--gradient-neon);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 3s linear infinite;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.random-article-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 12px;
}

.random-article-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 1rem;
}

.random-article-item:hover {
  transform: translateX(8px) scale(1.02);
  background: rgba(59, 130, 246, 0.05);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

.random-article-thumbnail {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(59, 130, 246, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.random-article-thumbnail::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-card);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.random-article-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.random-article-item:hover .random-article-thumbnail img {
  transform: scale(1.15) rotate(3deg);
}

.random-article-item:hover .random-article-thumbnail::before {
  opacity: 0.6;
}

.random-article-content {
  flex: 1;
  min-width: 0;
}

.random-article-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.random-article-title a {
  color: var(--light-text);
  text-decoration: none;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #00f5ff, #ff00ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.random-article-title a:hover {
  background-position: 100% center;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.random-article-date {
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.5);
  font-weight: 500;
  letter-spacing: 0.5px;
  font-family: 'Space Grotesk', sans-serif;
}

/* Адаптивность для single post */
@media (max-width: 1024px) {
  .single-post-wrapper {
    grid-template-columns: 1fr;
  }
  
  .single-post-sidebar {
    position: static;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* === Performance Innovation Block ============================= */
.performance-innovation-block {
  padding: 6rem 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.performance-innovation-block::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: float 15s ease-in-out infinite;
  pointer-events: none;
}

.innovation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.innovation-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(59, 130, 246, 0.3);
  border: 2px solid rgba(59, 130, 246, 0.3);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.innovation-image::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--gradient-card);
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  filter: blur(15px);
}

.innovation-image:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 80px rgba(59, 130, 246, 0.5), 0 0 60px rgba(168, 85, 247, 0.4);
}

.innovation-image:hover::before {
  opacity: 1;
}

.innovation-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.innovation-image:hover img {
  transform: scale(1.05);
}

.innovation-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--gradient-card);
  color: var(--light-text);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: glowPulse 2s ease-in-out infinite alternate;
}

.innovation-content {
  position: relative;
}

.innovation-label {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00f5ff;
  position: relative;
  padding-left: 30px;
}

.innovation-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: var(--gradient-neon);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

.innovation-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 900;
  background: var(--gradient-neon);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 3s linear infinite;
  letter-spacing: -2px;
}

.innovation-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(226, 232, 240, 0.9);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.innovation-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  backdrop-filter: blur(10px);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-neon);
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4), 0 0 30px rgba(168, 85, 247, 0.3);
  border-color: rgba(59, 130, 246, 0.5);
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-card);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Space Grotesk', sans-serif;
}

/* === Hockey Excellence Block ================================== */
.hockey-excellence-block {
  padding: 6rem 0;
  background: transparent;
  position: relative;
}

.excellence-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.excellence-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  font-weight: 900;
  background: var(--gradient-neon);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 4s linear infinite;
  letter-spacing: -2px;
  position: relative;
}

.excellence-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: var(--gradient-neon);
  margin: 1.5rem auto 0;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}

.excellence-subtitle {
  font-size: 1.2rem;
  color: rgba(226, 232, 240, 0.8);
  font-weight: 300;
  line-height: 1.6;
}

.excellence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.excellence-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.excellence-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-card);
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  filter: blur(10px);
}

.excellence-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-neon);
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
  border-radius: 24px 24px 0 0;
}

.excellence-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(59, 130, 246, 0.4), 0 0 50px rgba(168, 85, 247, 0.3);
  border-color: rgba(59, 130, 246, 0.5);
}

.excellence-card:hover::before,
.excellence-card:hover::after {
  opacity: 1;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.5));
  animation: float 3s ease-in-out infinite;
}

.card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--light-text);
  font-weight: 700;
  background: linear-gradient(90deg, #00f5ff, #ff00ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-description {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(226, 232, 240, 0.85);
  font-weight: 300;
}

.excellence-cta {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(59, 130, 246, 0.3);
  border: 2px solid rgba(59, 130, 246, 0.3);
}

.excellence-cta::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--gradient-card);
  border-radius: 30px;
  opacity: 0.6;
  z-index: -1;
  filter: blur(15px);
  animation: glowPulse 3s ease-in-out infinite alternate;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: brightness(0.7);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 700px;
}

.cta-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 900;
  background: var(--gradient-neon);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 3s linear infinite;
  letter-spacing: -1px;
}

.cta-content p {
  font-size: 1.15rem;
  color: rgba(226, 232, 240, 0.95);
  line-height: 1.7;
  font-weight: 300;
}

/* === Responsive Styles for New Blocks ========================= */
@media (max-width: 992px) {
  .innovation-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .innovation-image {
    order: -1;
  }
  
  .innovation-title {
    font-size: 2.5rem;
  }
  
  .excellence-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .excellence-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .performance-innovation-block,
  .hockey-excellence-block {
    padding: 4rem 0;
  }
  
  .innovation-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .innovation-title {
    font-size: 2rem;
  }
  
  .excellence-title {
    font-size: 2rem;
  }
  
  .excellence-cta {
    height: 250px;
  }
  
  .cta-content h3 {
    font-size: 1.8rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .card-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .innovation-title,
  .excellence-title {
    font-size: 1.75rem;
  }
  
  .innovation-badge {
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .excellence-card {
    padding: 2rem 1.5rem;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
}