html, body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #2a0a0a 0%, #1a1a1a 50%, #0a0a2a 100%);
  background-attachment: fixed;
  color: #fff;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

.brand-logo {
  width: auto;
  max-width: 100%;
  flex-shrink: 0;
}

.brand-logo img {
  height: 120px;
  width: auto;
  max-height: 400px;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .brand-logo img {
    height: 100px;
  }
}

.custom-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

body {
  padding-top: 80px;
}

.nav-trigger + label {
  background: rgba(0, 0, 0, 0.25) !important;
  backdrop-filter: blur(12px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(150%) !important;
  border: 1px solid rgba(255, 215, 0, 0.35) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  border-radius: 50% !important;
  padding: 10px !important;
  top: 10px !important;
  left: 20px !important;
  transition: all 0.3s ease !important;
  position: fixed !important;
  z-index: 1200 !important;
}

.nav-trigger + label:hover {
  background: rgba(0, 0, 0, 0.35) !important;
  border-color: rgba(255, 215, 0, 0.5) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35) !important;
}

.nav-trigger:checked + label {
  background: rgba(0, 0, 0, 0.4) !important;
  border-color: rgba(255, 215, 0, 0.6) !important;
}

.nav-container {
  background: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(15px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(15px) saturate(160%) !important;
  border-top: 1px solid rgba(255, 215, 0, 0.2) !important;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4) !important;
}

.nav-menu {
  background: transparent !important;
}

.nav-menu a {
  color: #fff !important;
  transition: all 0.3s ease !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding: 12px 20px !important;
}

.nav-menu a:hover {
  background: rgba(255, 215, 0, 0.1) !important;
  color: #FFD700 !important;
  padding-left: 25px !important;
}

.nav-link.active {
  color: #FFD700;
  font-weight: 600;
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #FFD700, transparent);
}

.blog-hero {
  background: linear-gradient(135deg, rgba(74, 0, 0, 0.9) 0%, rgba(139, 0, 0, 0.8) 100%);
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
  margin-top: -50px;
  padding-top: 130px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 95% 100%, 5% 100%, 0% 85%);
  min-height: 120px;
  animation: float 6s ease-in-out infinite;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-top: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/red.jpeg') center/cover no-repeat;
  opacity: 0.2;
  z-index: -1;
}

.blog-hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 60%);
  z-index: -1;
  animation: pulse 8s infinite alternate;
}

.blog-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  animation: shimmer 3s infinite alternate;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  display: inline-block;
}

.blog-hero h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.7), transparent);
}

.blog-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  padding: 0 20px;
}

.blog-section {
  padding: 0 20px 80px;
  position: relative;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.blog-list {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.blog-post {
  background: linear-gradient(to bottom right, #751414, #4a0000);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: 20px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 10px 25px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 215, 0, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.blog-post::before {
 /* top gold accent */
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #FFD700, #FFA500);
  z-index: 2;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/* inner gold border */
.blog-post::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px; right: 2px; bottom: 2px;
  border: 2px solid rgba(255, 0, 0, 0.4);
  border-radius: 18px;
  pointer-events: none;
  z-index: 2;
}

.blog-post:hover {
  transform: translateY(-8px);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(255, 215, 0, 0.1);
}

.blog-post-inner {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 4;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  align-items: center;
}

.blog-category {
  font-size: 0.8rem;
  font-weight: 700;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.blog-category:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-category[data-category="algorithm"] {
  background: rgba(75, 0, 130, 0.2);
  border-color: rgba(75, 0, 130, 0.4);
  color: #9370DB;
}

.blog-category[data-category="monetization"] {
  background: rgba(0, 100, 0, 0.2);
  border-color: rgba(0, 100, 0, 0.4);
  color: #90EE90;
}

.blog-category[data-category="strategy"] {
  background: rgba(0, 0, 139, 0.2);
  border-color: rgba(0, 0, 139, 0.4);
  color: #87CEFA;
}

.blog-category[data-category="analytics"] {
  background: rgba(128, 0, 128, 0.2);
  border-color: rgba(128, 0, 128, 0.4);
  color: #DDA0DD;
}

.blog-category[data-category="seo"] {
  background: rgba(165, 42, 42, 0.2);
  border-color: rgba(165, 42, 42, 0.4);
  color: #F4A460;
}

.blog-category[data-category="growth"] {
  background: rgba(0, 128, 128, 0.2);
  border-color: rgba(0, 128, 128, 0.4);
  color: #20B2AA;
}

.blog-category[data-category="shorts"] {
  background: rgba(178, 34, 34, 0.2);
  border-color: rgba(178, 34, 34, 0.4);
  color: #FF7F50;
}

.blog-date {
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
  display: flex;
  align-items: center;
}

.blog-date i {
  margin-right: 5px;
  color: rgba(255, 215, 0, 0.7);
}

.blog-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 15px;
  line-height: 1.3;
  font-family: 'Montserrat', sans-serif;
}

.blog-title a {
  color: #FFD700;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  display: block;
}

.blog-title a:hover {
  color: #FFF;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.blog-excerpt {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
  flex-grow: 1;
}

.read-more {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
  align-self: flex-start;
  margin-top: auto;
}

.read-more:hover {
  background: rgba(255, 215, 0, 0.2);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

.blog-post-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  position: relative;
  background: rgba(15, 15, 20, 0.7);
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.1);
  overflow: hidden;
  padding-bottom: 40px;
}

.blog-post-header {
  text-align: center;
  margin-bottom: 40px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.blog-post-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 0, 0, 0.3) 0%, rgba(139, 0, 0, 0.2) 100%);
  z-index: -1;
}

.blog-post-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(139, 0, 0, 0.8);
  line-height: 1.3;
  position: relative;
  display: inline-block;
}

.blog-post-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.7), transparent);
}

.blog-post-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-top: 20px;
}

.blog-post-meta div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-post-meta i {
  color: #FFD700;
  font-size: 1.1rem;
}

.blog-post-content {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 1.1rem;
  background: rgba(30, 10, 20, 0.4);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin: 40px 20px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.blog-post-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #FFD700, #FFA500);
  border-radius: 15px 15px 0 0;
}

.blog-post-content h2 {
  font-size: 2rem;
  color: #FFD700;
  margin: 50px 0 25px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.blog-post-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #FFD700, transparent);
}

.blog-post-content h3 {
  font-size: 1.6rem;
  color: #FFD700;
  margin: 40px 0 20px;
  font-weight: 600;
}

.blog-post-content p {
  margin-bottom: 25px;
  line-height: 1.8;
}

.blog-post-content ul, .blog-post-content ol {
  margin: 25px 0;
  padding-left: 25px;
}

.blog-post-content li {
  margin-bottom: 15px;
  line-height: 1.7;
}

.blog-post-content blockquote {
  border-left: 4px solid #FFD700;
  padding: 20px 30px;
  margin: 40px 0;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 15px 15px 0;
  position: relative;
}

.blog-post-content blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 4rem;
  color: rgba(255, 215, 0, 0.2);
  font-family: Georgia, serif;
}

.blog-post-content img {
  max-width: 100%;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.blog-post-content code {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Fira Code', monospace;
  font-size: 0.9em;
  color: #FFD700;
}

.blog-post-content pre {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 10px;
  overflow-x: auto;
  margin: 25px 0;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.blog-post-content pre code {
  background: none;
  padding: 0;
  color: #fff;
  font-size: 0.95em;
  line-height: 1.6;
}

.blog-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 40px 0;
}

.blog-post-tags a {
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.blog-post-tags a:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 30px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 40px;
  margin: 50px 0;
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.blog-author-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.blog-author-info h3 {
  color: #FFD700;
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 700;
}

.blog-author-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.7;
}

.blog-related-posts {
  margin: 60px 0;
}

.blog-related-posts h2 {
  font-size: 2rem;
  color: #FFD700;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.blog-related-posts h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, transparent, #FFD700, transparent);
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.related-post {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.related-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.3);
}

.related-post-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.related-post-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

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

.related-post-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.related-post-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.related-post-title a {
  color: #FFD700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-post-title a:hover {
  color: #FFA500;
}

.related-post-excerpt {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.related-post-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFD700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.related-post-link:hover {
  color: #FFA500;
  transform: translateX(5px);
}

.related-post-link i {
  transition: transform 0.3s ease;
}

.related-post-link:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .blog-post-header {
    padding: 30px 20px;
  }
  
  .blog-post-title {
    font-size: 2rem;
  }
  
  .blog-post-meta {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .blog-post-content {
    padding: 25px 20px;
  }
  
  .blog-post-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
  }
  
  .blog-post-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
  }
  
  .blog-author {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .blog-author-image {
    width: 80px;
    height: 80px;
  }
  
  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .blog-post-title {
    font-size: 1.8rem;
  }
  
  .blog-post-content {
    padding: 20px 15px;
  }
  
  .blog-post-content h2 {
    font-size: 1.6rem;
  }
  
  .blog-post-content h3 {
    font-size: 1.3rem;
  }
  
  .blog-post-content blockquote {
    padding: 15px 20px;
    margin: 30px 0;
  }
  
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .related-post-image {
    height: 180px;
  }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.2; }
  100% { transform: scale(1.2); opacity: 0.4; }
}

@keyframes shimmer {
  0% { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}

@media (max-width: 1200px) {
  .blog-list {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 60px 20px 40px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
    margin-bottom: 40px;
    min-height: 100px;
  }
  
  .blog-hero h1 {
    font-size: 2rem;
    letter-spacing: 0.5px;
  }

  .blog-hero p {
    font-size: 0.95rem;
    padding: 0 10px;
  }
  
  .blog-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .blog-post {
    transform: none !important;
  }
  
  .blog-post-inner {
    padding: 20px;
  }
  
  .blog-title {
    font-size: 1.4rem;
  }
  
  .blog-excerpt {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .blog-post-header {
    padding: 30px 15px;
  }
  
  .blog-post-title {
    font-size: 2rem;
  }
  
  .blog-post-meta {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  
  .blog-post-content {
    padding: 25px 15px;
  }
}

@media (max-width: 480px) {
  .blog-hero h1 {
    font-size: 1.8rem;
  }
  
  .blog-hero p {
    font-size: 0.9rem;
  }
  
  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .blog-category {
    font-size: 0.7rem;
    padding: 3px 10px;
  }
  
  .blog-date {
    font-size: 0.8rem;
  }
  
  .blog-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .blog-excerpt {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .read-more {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
  
  .blog-post-header {
    padding: 25px 15px;
  }
  
  .blog-post-title {
    font-size: 1.8rem;
  }
  
  .blog-post-content {
    padding: 20px 15px;
  }
}

.blog-newsletter {
  margin-top: 80px;
  padding: 0 15px;
  text-align: center;
}

.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  padding: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.blog-newsletter h2 {
  font-size: 2.2rem;
  background: linear-gradient(to right, #FFD700, #FFA500);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.blog-newsletter h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #FFD700, transparent);
}

.blog-newsletter p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 300px;
  padding: 18px 25px;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1), inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.newsletter-form button {
  padding: 18px 35px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(to right, #FFD700, #FFA500);
  color: #4a0000;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-form button::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: all 0.6s ease;
}

.newsletter-form button:hover {
  background: linear-gradient(to right, #FFA500, #FFD700);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.5);
  transform: translateY(-3px);
}

.newsletter-form button:hover::before {
  left: 100%;
}

.site-footer {
  padding: 60px 20px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
  max-width: 500px;
}

.footer-logo img {
  width: 100%;
  max-width: 450px;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 150px;
}

.footer-column h3 {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 1px 1px #ff0000;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #FFD700;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.footer-social a:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .blog-newsletter {
    padding: 60px 20px;
    margin: 40px 0;
  }
  
  .newsletter-container {
    padding: 30px 20px;
  }
  
  .blog-newsletter h2 {
    font-size: 1.8rem;
  }
  
  .blog-newsletter p {
    font-size: 1rem;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }
  
  .newsletter-form input[type="email"] {
    width: 100%;
    min-width: auto;
    padding: 15px 20px;
  }
  
  .newsletter-form button {
    width: 100%;
    padding: 15px 20px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .footer-logo {
    margin: 0 auto;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-column {
    min-width: 100%;
  }
  
  .footer-social {
    justify-content: center;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .newsletter-container {
    padding: 30px 20px;
  }
  
  .blog-newsletter h2 {
    font-size: 1.5rem;
  }
  
  .footer-social a {
    width: 35px;
    height: 35px;
  }
  
  .site-footer {
    padding: 40px 15px 15px;
  }
  
  .footer-bottom {
    margin-top: 30px;
  }
}
