/* ============================================
   SEO BY SUBU - HOMEPAGE STYLES
   Paste this into Appearance → Customize → Additional CSS
   ============================================ */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Open+Sans:wght@400;600;700&display=swap');

/* ============================================
   COLOR VARIABLES & BASE STYLES
   ============================================ */
:root {
  --subu-dark: #1a1a2e;
  --subu-blue: #0f3460;
  --subu-accent: #e94560;
  --subu-light: #eaeaea;
  --subu-gray: #16213e;
}

.subu-homepage {
  background: var(--subu-dark);
  color: var(--subu-light);
  font-family: 'Open Sans', sans-serif;
}

.subu-homepage h1, 
.subu-homepage h2, 
.subu-homepage h3 {
  font-family: 'Luckiest Guy', 'Comic Sans MS', cursive;
}

.subu-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.subu-accent {
  color: var(--subu-accent);
}

.subu-text-center {
  text-align: center;
}

/* Responsive Utilities */
.subu-desktop-only {
  display: none;
}

@media (min-width: 640px) {
  .subu-desktop-only {
    display: block;
  }
  .subu-mobile-only {
    display: none;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.subu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.subu-btn-primary {
  background: var(--subu-accent);
  color: white;
}

.subu-btn-primary:hover {
  background: var(--subu-blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(233, 69, 96, 0.3);
}

.subu-btn-outline {
  background: transparent;
  color: var(--subu-light);
  border: 2px solid var(--subu-blue);
}

.subu-btn-outline:hover {
  background: var(--subu-blue);
}

.subu-btn-secondary {
  background: var(--subu-blue);
  color: white;
}

.subu-btn-secondary:hover {
  background: var(--subu-accent);
}

.subu-btn-lg {
  padding: 1rem 3rem;
  font-size: 1.125rem;
}

.subu-btn-xl {
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.subu-btn-xl:hover {
  box-shadow: 0 15px 40px rgba(233, 69, 96, 0.4);
}

.subu-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.subu-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.subu-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 52, 96, 0.3), var(--subu-dark));
  z-index: 1;
}

.subu-hero .subu-container {
  position: relative;
  z-index: 10;
}

.subu-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .subu-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.subu-hero-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .subu-hero-content {
    text-align: left;
  }
}

.subu-hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--subu-light);
}

@media (min-width: 768px) {
  .subu-hero-title {
    font-size: 4.5rem;
  }
}

.subu-hero-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  max-width: 48rem;
}

.subu-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .subu-hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .subu-hero-buttons {
    justify-content: flex-start;
  }
}

/* Hero Image */
.subu-hero-image-wrapper {
  position: relative;
}

.subu-hero-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 4px solid var(--subu-blue);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.subu-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.subu-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--subu-dark), transparent);
}

.subu-hero-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 10;
}

.subu-hero-caption p {
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: 'Luckiest Guy', cursive;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin: 0;
}

/* Decorative Blobs */
.subu-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
  animation: pulse 4s ease-in-out infinite;
}

.subu-blob-1 {
  top: -1.5rem;
  right: -1.5rem;
  width: 6rem;
  height: 6rem;
  background: var(--subu-accent);
}

.subu-blob-2 {
  bottom: -1.5rem;
  left: -1.5rem;
  width: 8rem;
  height: 8rem;
  background: var(--subu-blue);
}

@keyframes pulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.1); }
}

/* ============================================
   COMICS SECTION
   ============================================ */
.subu-comics-section {
  padding: 5rem 0;
  background: var(--subu-dark);
}

.subu-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .subu-section-header {
    flex-direction: row;
  }
}

.subu-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--subu-light);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .subu-section-title {
    font-size: 3rem;
  }
}

.subu-section-subtitle {
  color: #9ca3af;
  font-size: 1.125rem;
}

.subu-link-arrow {
  color: var(--subu-accent);
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.subu-link-arrow:hover {
  color: var(--subu-light);
}

/* Comics Grid */
.subu-comics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .subu-comics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Comic Card */
.subu-comic-card {
  background: var(--subu-dark);
  border: 2px solid var(--subu-blue);
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.subu-comic-card > a {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.subu-comic-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.5);
}

.subu-comic-thumbnail {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #374151;
}

.subu-comic-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.subu-comic-placeholder,
.subu-blog-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, rgba(15, 52, 96, 0.8), rgba(22, 33, 62, 0.9));
}

.subu-comic-card:hover .subu-comic-thumbnail img {
  transform: scale(1.1);
}

.subu-comic-category {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: var(--subu-accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.subu-comic-body {
  padding: 1rem;
}

.subu-comic-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--subu-light);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.subu-comic-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* ============================================
   MARVEL CALLOUT SECTION
   ============================================ */
.subu-marvel-section {
  padding: 4rem 0;
  background: rgba(15, 52, 96, 0.2);
  border-top: 2px solid var(--subu-accent);
  border-bottom: 2px solid var(--subu-accent);
  position: relative;
  overflow: hidden;
}

.subu-marvel-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  opacity: 0.05;
  pointer-events: none;
}

.subu-marvel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .subu-marvel-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.subu-marvel-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.subu-marvel-circle {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--subu-accent), var(--subu-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .subu-marvel-circle {
    width: 16rem;
    height: 16rem;
  }
}

.subu-marvel-icon {
  width: 6rem;
  height: 6rem;
  color: white;
  animation: pulse 3s ease-in-out infinite;
}

@media (min-width: 768px) {
  .subu-marvel-icon {
    width: 8rem;
    height: 8rem;
  }
}

.subu-marvel-glow {
  position: absolute;
  inset: 0;
  background: var(--subu-accent);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
  animation: pulse 4s ease-in-out infinite;
}

.subu-marvel-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .subu-marvel-content {
    text-align: left;
  }
}

.subu-marvel-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--subu-light);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .subu-marvel-title {
    font-size: 3rem;
  }
}

.subu-marvel-text {
  font-size: 1.125rem;
  color: #d1d5db;
  margin-bottom: 2rem;
}

.subu-marvel-text p {
  margin-bottom: 1rem;
}

.subu-marvel-quote {
  font-style: italic;
  color: var(--subu-accent) !important;
}

/* ============================================
   SEO GUIDES MASTER-DETAIL SECTION
   ============================================ */
.subu-guides-carousel-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #191d36 0%, #171b32 100%);
  border-top: 1px solid rgba(233, 69, 96, 0.22);
  border-bottom: 1px solid rgba(15, 52, 96, 0.34);
}

.subu-guides-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.subu-guides-header .subu-section-title {
  margin: 0 0 0.5rem;
}

.subu-guides-subtitle {
  margin: 0;
  color: #c4ccdd;
  font-size: 1rem;
}

.subu-guides-master {
  display: grid;
  grid-template-columns: minmax(220px, 30%) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.subu-guides-nav {
  background: rgba(19, 31, 56, 0.74);
  border: 1px solid rgba(15, 52, 96, 0.6);
  border-radius: 0.9rem;
  padding: 0.5rem;
}

.subu-guides-tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.subu-guides-tab {
  display: block;
  text-decoration: none;
  color: #dbe3f5;
  font-weight: 700;
  line-height: 1.3;
  border: 1px solid rgba(15, 52, 96, 0.58);
  border-radius: 0.7rem;
  background: rgba(15, 27, 50, 0.62);
  padding: 0.62rem 0.78rem;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.subu-guides-tab:hover,
.subu-guides-tab:focus-visible {
  color: #ffffff;
  border-color: rgba(233, 69, 96, 0.75);
  background: rgba(233, 69, 96, 0.2);
  box-shadow: 0 0 0 1px rgba(233, 69, 96, 0.35);
  text-decoration: none;
  outline: none;
}

.subu-guides-tab.is-active {
  color: #ffffff;
  border-color: rgba(233, 69, 96, 0.9);
  background: linear-gradient(140deg, rgba(233, 69, 96, 0.28), rgba(17, 46, 88, 0.75));
  box-shadow: 0 0 0 1px rgba(233, 69, 96, 0.45), 0 8px 18px rgba(233, 69, 96, 0.24);
}

.subu-guides-hero-wrap {
  position: relative;
}

.subu-guide-hero {
  display: none;
  background: var(--subu-gray);
  border: 2px solid rgba(15, 52, 96, 0.55);
  border-radius: 0.9rem;
  overflow: hidden;
}

.subu-guide-hero.is-active {
  display: block;
  animation: subuGuideHeroFade 280ms ease both;
}

@keyframes subuGuideHeroFade {
  from {
    opacity: 0.35;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.subu-guide-hero-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #232c46;
}

.subu-guide-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.subu-guide-hero-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.subu-guide-hero-body h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.08;
  color: var(--subu-light);
}

.subu-guide-btn {
  margin-top: 0.25rem;
  width: 100%;
}

@media (max-width: 1023px) {
  .subu-guides-master {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .subu-guides-nav {
    padding: 0.4rem;
    background: transparent;
  }

  .subu-guides-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
  }

  .subu-guides-tabs::-webkit-scrollbar {
    display: none;
  }

  .subu-guides-tab-item {
    flex: 0 0 auto;
  }

  .subu-guides-tab {
    white-space: nowrap;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
  }
}

@media (max-width: 767px) {
  #seo-by-subu-homepage {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-top: 0 !important;
    transform: none !important;
    scale: 1 !important;
    overflow-x: hidden !important;
    font-size: 16px !important;
  }

  #seo-by-subu-homepage .subu-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .subu-guides-carousel-section {
    padding: 3rem 0;
  }

  .subu-guides-header {
    margin-bottom: 1rem;
  }

  .subu-guides-header .subu-section-title {
    font-size: clamp(1.7rem, 8vw, 2.15rem);
    line-height: 1.08;
  }

  .subu-guides-subtitle {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .subu-guides-nav {
    border-radius: 0.8rem;
    padding: 0.32rem;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
  }

  .subu-guides-tabs {
    gap: 0.45rem;
    padding: 0.15rem 0.1rem 0.3rem;
    scroll-snap-type: x proximity;
    width: max-content;
    min-width: 100%;
    max-width: 100%;
  }

  .subu-guides-tab-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .subu-guides-tab {
    font-size: 0.86rem;
    padding: 0.52rem 0.78rem;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .subu-guide-hero {
    border-radius: 0.8rem;
    width: 100%;
    max-width: 100%;
  }

  .subu-guide-hero-body {
    padding: 0.85rem;
    gap: 0.72rem;
  }

  .subu-guide-hero-body h3 {
    font-size: 1.28rem;
    line-height: 1.1;
  }

  .subu-guide-btn {
    min-height: 42px;
    font-size: 0.94rem;
    padding: 0.62rem 0.95rem;
  }
}

@media (max-width: 420px) {
  #seo-by-subu-homepage {
    font-size: 15px !important;
  }

  .subu-guides-tab {
    font-size: 0.82rem;
    padding: 0.48rem 0.66rem;
  }

  .subu-guide-hero-body h3 {
    font-size: 1.14rem;
  }
}

/* Continue in next message... */



/* ============================================
   BLOG STRIP SECTION
   ============================================ */
.subu-blog-strip {
  padding: 4rem 0;
  background: var(--subu-gray);
  position: relative;
  overflow: hidden;
}

.subu-blog-accent-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--subu-accent), var(--subu-blue), var(--subu-dark));
  position: absolute;
  top: 0;
}

.subu-blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .subu-blog-header {
    flex-direction: row;
  }
}

.subu-blog-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.subu-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .subu-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .subu-blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Blog Card */
.subu-blog-card {
  background: var(--subu-dark);
  border: 2px solid var(--subu-blue);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.subu-blog-image {
  color: inherit;
  text-decoration: none;
  display: block;
}

.subu-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.subu-blog-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.subu-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.subu-blog-card:hover .subu-blog-image img {
  transform: scale(1.05);
}

.subu-blog-card-category {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: var(--subu-accent);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.subu-blog-body {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.subu-blog-meta {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.subu-blog-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--subu-light);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.subu-blog-card:hover .subu-blog-card-title {
  color: var(--subu-accent);
}

.subu-blog-excerpt {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 1rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.subu-blog-read-more {
  color: var(--subu-accent);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
}

.subu-blog-read-more:hover {
  color: var(--subu-light);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.subu-newsletter {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--subu-gray), var(--subu-blue));
  position: relative;
  overflow: hidden;
}

.subu-newsletter-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.subu-newsletter-blob-1 {
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: var(--subu-accent);
  opacity: 0.1;
}

.subu-newsletter-blob-2 {
  bottom: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: var(--subu-dark);
  opacity: 0.2;
}

.subu-newsletter-container {
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 64rem;
}

.subu-newsletter-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--subu-light);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .subu-newsletter-title {
    font-size: 4rem;
  }
}

.subu-newsletter-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.subu-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 32rem;
  margin: 0 auto 1rem;
}

@media (min-width: 640px) {
  .subu-newsletter-form {
    flex-direction: row;
  }
}

.subu-newsletter-input {
  flex-grow: 1;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  background: white;
  color: #111827;
  font-weight: 500;
  border: none;
  outline: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}

.subu-newsletter-input:focus {
  box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.3);
}

.subu-newsletter-btn {
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.subu-newsletter-disclaimer {
  color: #6b7280;
  font-size: 0.875rem;
}

/* ============================================
   HIRE CTA SECTION
   ============================================ */
.subu-hire-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--subu-gray), var(--subu-blue));
}

.subu-cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--subu-light);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .subu-cta-title {
    font-size: 2.5rem;
  }
}

.subu-cta-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2rem;
}

/* ============================================
   COMIC LIGHTBOX
   ============================================ */
.subu-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.subu-lightbox.active {
  display: block;
}

.subu-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.subu-lightbox-content {
  position: relative;
  width: 100%;
  max-width: 96rem;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.subu-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

.subu-lightbox-close:hover {
  background: rgba(0, 0, 0, 0.7);
}

.subu-lightbox-close svg {
  width: 1.5rem;
  height: 1.5rem;
}

.subu-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s;
}

.subu-lightbox-nav:hover {
  background: var(--subu-accent);
}

.subu-lightbox-prev {
  left: 1rem;
}

.subu-lightbox-next {
  right: 1rem;
}

.subu-lightbox-nav svg {
  width: 2rem;
  height: 2rem;
}

.subu-lightbox-inner {
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  width: 100%;
  background: var(--subu-dark);
  border: 2px solid var(--subu-blue);
  border-radius: 1rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .subu-lightbox-inner {
    flex-direction: row;
  }
}

.subu-lightbox-image-container {
  flex-grow: 1;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.subu-lightbox-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.subu-lightbox-sidebar {
  width: 100%;
  padding: 1.5rem;
  border-top: 1px solid var(--subu-blue);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .subu-lightbox-sidebar {
    width: 20rem;
    border-top: none;
    border-left: 1px solid var(--subu-blue);
  }
}

.subu-lightbox-category {
  display: inline-block;
  background: var(--subu-accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  width: fit-content;
}

.subu-lightbox-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--subu-light);
  margin-bottom: 0.5rem;
}

.subu-lightbox-date {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.subu-toast {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 10000;
  background: var(--subu-dark);
  border: 2px solid var(--subu-accent);
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(-2rem);
  transition: all 0.3s ease;
  pointer-events: none;
  max-width: 24rem;
}

.subu-toast.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.subu-toast-content strong {
  display: block;
  color: var(--subu-light);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.subu-toast-content p {
  color: #d1d5db;
  font-size: 0.875rem;
  margin: 0;
}

/* ============================================
   LEGACY HOMEPAGE HOTFIXES
   ============================================ */
#seo-by-subu-homepage.subu-homepage .subu-hero-title,
#seo-by-subu-homepage.subu-homepage .subu-hero-title * {
  font-family: 'Luckiest Guy', 'Comic Sans MS', cursive !important;
  letter-spacing: 0.02em;
}

#seo-by-subu-homepage.subu-homepage .subu-marvel-title,
#seo-by-subu-homepage.subu-homepage .subu-marvel-title * {
  font-family: 'Luckiest Guy', 'Comic Sans MS', cursive !important;
  letter-spacing: 0.02em;
}

#seo-by-subu-homepage.subu-homepage .subu-hero-title .subu-accent {
  color: var(--subu-accent) !important;
  font-size: inherit;
  line-height: inherit;
}

#seo-by-subu-homepage .subu-marvel-section {
  position: relative;
  overflow: hidden;
  padding: clamp(2.25rem, 4vw, 3.45rem) 0;
  background: linear-gradient(180deg, #1f1f3d 0%, #1b1d3a 100%);
}

#seo-by-subu-homepage .subu-marvel-section .subu-container {
  max-width: 1160px;
}

#seo-by-subu-homepage .subu-marvel-section::before,
#seo-by-subu-homepage .subu-marvel-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.22;
}

#seo-by-subu-homepage .subu-marvel-section::before {
  width: 220px;
  height: 220px;
  left: -90px;
  bottom: -95px;
  background: #4a3f6d;
}

#seo-by-subu-homepage .subu-marvel-section::after {
  width: 170px;
  height: 170px;
  right: -70px;
  top: -78px;
  background: #3b2a58;
}

#seo-by-subu-homepage .subu-marvel-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 40%) minmax(0, 60%);
  gap: clamp(1.6rem, 2.8vw, 2.6rem);
  align-items: stretch;
}

#seo-by-subu-homepage .subu-marvel-visual {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

#seo-by-subu-homepage .subu-marvel-image-wrapper {
  position: relative;
  width: 100%;
  border: 3px solid var(--subu-accent);
  border-radius: 0.65rem;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.36);
  transform-origin: 50% 50%;
  transform: rotate(2deg);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

#seo-by-subu-homepage .subu-marvel-image-wrapper:hover {
  transform: rotate(0deg);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.44);
}

#seo-by-subu-homepage .subu-marvel-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

#seo-by-subu-homepage .subu-marvel-glow {
  display: none;
  opacity: 0;
}

#seo-by-subu-homepage .subu-marvel-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#seo-by-subu-homepage .subu-marvel-content::before {
  content: "🌐 World Wide Web Experts";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  gap: 0.6rem;
  margin-bottom: 0.78rem;
  color: var(--subu-accent);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#seo-by-subu-homepage .subu-marvel-title {
  margin: 0 0 0.95rem;
  font-size: clamp(1.9rem, 3.2vw, 3.55rem);
  line-height: 1.02;
  text-transform: uppercase;
}

#seo-by-subu-homepage .subu-marvel-text {
  font-size: clamp(0.98rem, 1.02vw, 1.08rem);
  max-width: 640px;
  line-height: 1.48;
}

#seo-by-subu-homepage .subu-marvel-text p {
  margin-bottom: 0.72rem;
}

#seo-by-subu-homepage .subu-marvel-section .subu-btn {
  margin-top: auto;
  border-radius: 2px;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 1024px) {
  #seo-by-subu-homepage .subu-marvel-grid > .subu-marvel-visual,
  #seo-by-subu-homepage .subu-marvel-grid > .subu-marvel-content {
    height: 100%;
  }

  #seo-by-subu-homepage .subu-marvel-content {
    min-height: 100%;
  }
}

#seo-by-subu-homepage .subu-section-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms ease;
}

#seo-by-subu-homepage .subu-section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#seo-by-subu-homepage .subu-item-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 640ms ease, transform 640ms ease;
}

#seo-by-subu-homepage .subu-item-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#seo-by-subu-homepage .subu-reveal {
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

#seo-by-subu-homepage .subu-marvel-visual.subu-reveal {
  transform: translateX(-26px);
}

#seo-by-subu-homepage .subu-marvel-content.subu-reveal {
  transform: translateX(26px);
}

#seo-by-subu-homepage .subu-reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1023px) {
  #seo-by-subu-homepage .subu-marvel-grid {
    grid-template-columns: 1fr;
  }

  #seo-by-subu-homepage .subu-marvel-content {
    display: block;
    text-align: center;
  }

  #seo-by-subu-homepage .subu-marvel-content::before {
    justify-content: center;
  }

  #seo-by-subu-homepage .subu-marvel-image-wrapper {
    margin: 0 auto;
    max-width: min(66vw, 312px);
  }

  #seo-by-subu-homepage .subu-marvel-image-wrapper:hover {
    transform: rotate(0deg);
  }

  #seo-by-subu-homepage .subu-marvel-section .subu-btn {
    margin-top: 0.5rem;
  }

  #seo-by-subu-homepage .subu-marvel-content.subu-reveal,
  #seo-by-subu-homepage .subu-marvel-visual.subu-reveal {
    transform: translateY(20px);
  }

  #seo-by-subu-homepage .subu-reveal.is-visible {
    transform: translateY(0);
  }
}

/* GeneratePress Site CSS */
/* adds a thin line under the header */
.site-header {
	  border-bottom: 1px solid rgba(23,230,230,0.5);
}
/* End GeneratePress Site CSS */
