/* ========================================
   Goblin Portfolio Theme - Main Stylesheet
   ======================================== */

/* Import color variables */
@import url('colors.css');

/* ========================================
   Reset & Base Styles
   ======================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent);
}

/* ========================================
   Site Wrapper
   ======================================== */

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  flex: 1;
}

/* ========================================
   Header & Navigation
   ======================================== */

.site-header {
  background: var(--gradient-primary);
  border-bottom: 2px solid var(--color-secondary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(233, 30, 158, 0.3);
}

.nav-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-brand .site-logo {
  height: 50px;
  width: auto;
}

.site-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-item a {
  color: var(--color-text-light);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-item a:hover,
.nav-item.nav-current a {
  background: var(--color-secondary);
  color: white;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-secondary);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-dark-purple);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item a {
    display: block;
    padding: 1rem;
  }
}

/* ========================================
   Landing Page
   ======================================== */

.landing-page {
  max-width: 100%;
  margin: 0 auto;
}

.hero {
  position: relative;
  text-align: center;
  padding: 6rem 2rem;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Optional overlay for better text readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 13, 46, 0.4);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--color-secondary);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8),
               0 0 20px rgba(233, 30, 158, 0.5);
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.5rem;
  color: var(--color-text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 2rem;
  font-style: italic;
}

/* Remove old hero-image styles - no longer needed */
.hero-image-container {
  display: none;
}

.hero-image {
  display: none;
}

/* Feature Boxes */
.features {
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--color-bg-card);
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid var(--color-dark-purple);
  transition: all 0.3s ease;
}

.feature-box:hover {
  border-color: var(--color-secondary);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(233, 30, 158, 0.4);
}

.feature-image img {
  width: 100%;
  border-radius: 8px;
}

.feature-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.feature-content p {
  font-size: 1.5rem;
  text-align: center;
  color: var(--color-text-light);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .hero {
    min-height: 400px;
    padding: 4rem 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.25rem;
  }

  .feature-box {
    grid-template-columns: 1fr;
  }

  .feature-content p {
    font-size: 1.25rem;
  }
}

/* ========================================
   Signup CTA
   ======================================== */

.signup-cta {
  background: var(--color-dark-purple);
  padding: 4rem 2rem;
  margin: 2rem 0;
  border-top: 2px solid var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
}

.signup-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.signup-content h2 {
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.signup-form {
  margin: 2rem 0;
}

.signup-form form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.signup-input {
  flex: 1;
  padding: 1rem;
  border: 2px solid var(--color-secondary);
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  border-radius: 4px;
  font-size: 1rem;
}

.signup-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(233, 30, 158, 0.2);
}

.signup-button {
  padding: 1rem 2rem;
  background: var(--gradient-accent);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.signup-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 30, 158, 0.5);
}

.signup-success,
.signup-error {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 4px;
}

.signup-success {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid var(--color-success);
  color: var(--color-success);
}

.signup-error {
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid var(--color-error);
  color: var(--color-error);
}

.patreon-cta {
  margin-top: 2rem;
}

.patreon-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #ff424d;
  color: white;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.patreon-button:hover {
  background: #e63946;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 66, 77, 0.5);
}

@media (max-width: 640px) {
  .signup-form form {
    flex-direction: column;
  }
}

/* ========================================
   Gallery Pages (Art & Games)
   ======================================== */

.gallery-page {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem;
}

/* Sidebar */
.sidebar-filters {
  background: var(--color-bg-card);
  padding: 1.5rem;
  border-radius: 8px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.sidebar-filters h3,
.sidebar-filters h4 {
  color: var(--color-secondary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.tag-list,
.recent-list {
  list-style: none;
}

.tag-item,
.recent-item {
  margin-bottom: 0.5rem;
}

.tag-link {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.tag-link:hover,
.tag-link.active {
  background: var(--color-dark-purple);
  color: var(--color-accent);
}

.tag-count {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.recent-item a {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.recent-item a:hover {
  background: var(--color-dark-purple);
}

.recent-thumb {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}

.recent-title {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* Gallery Content */
.gallery-content {
  min-width: 0;
}

.gallery-header {
  margin-bottom: 2rem;
}

.gallery-header h1 {
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.gallery-description {
  color: var(--color-text-muted);
  font-size: 1.125rem;
}

.filter-controls {
  margin-top: 1rem;
}

.filter-dropdown {
  padding: 0.75rem 1rem;
  background: var(--color-bg-card);
  color: var(--color-text-light);
  border: 2px solid var(--color-secondary);
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

/* Art Grid - 3 Columns */
.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.art-card {
  background: var(--color-bg-card);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.art-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-secondary);
  box-shadow: 0 8px 24px rgba(233, 30, 158, 0.4);
}

.art-card-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.art-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.member-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gradient-accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}

.art-card-content {
  padding: 1.5rem;
}

.art-card-title {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.art-card-excerpt {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.art-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Games List - Full Width Rows */
.games-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.game-card {
  background: var(--color-bg-card);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.game-card:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 8px 24px rgba(233, 30, 158, 0.4);
}

.game-card-row {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 2rem;
}

.game-card-image {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.game-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.game-card-title {
  font-size: 2rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.game-card-excerpt {
  color: var(--color-text-light);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.game-card-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.game-card-tags {
  color: var(--color-secondary);
}

/* Responsive Gallery */
@media (max-width: 1200px) {
  .art-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-page {
    grid-template-columns: 1fr;
  }

  .sidebar-filters {
    position: static;
  }

  .art-grid {
    grid-template-columns: 1fr;
  }

  .game-card-row {
    grid-template-columns: 1fr;
  }

  .game-card-image {
    height: 300px;
  }
}

/* ========================================
   Post Page
   ======================================== */

.post {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.post-header {
  margin-bottom: 2rem;
}

.post-feature-image {
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
}

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

/* Post access badge for member content */
.post-access-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.badge-icon {
  font-size: 1.2rem;
}

.post-meta {

.post-meta-authors {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-secondary);
}

.post-content,
.gh-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

/* Enhanced content formatting */
.post-content h1,
.gh-content h1,
.post-content h2,
.gh-content h2,
.post-content h3,
.gh-content h3,
.post-content h4,
.gh-content h4,
.post-content h5,
.gh-content h5,
.post-content h6,
.gh-content h6 {
  color: var(--color-text-light);
  font-weight: 700;
  line-height: 1.3;
  margin: 2rem 0 1rem 0;
}

.post-content h1,
.gh-content h1 { font-size: 2.5rem; }
.post-content h2,
.gh-content h2 { font-size: 2rem; color: var(--color-secondary); }
.post-content h3,
.gh-content h3 { font-size: 1.75rem; color: var(--color-secondary); }
.post-content h4,
.gh-content h4 { font-size: 1.5rem; }
.post-content h5,
.gh-content h5 { font-size: 1.25rem; }
.post-content h6,
.gh-content h6 { font-size: 1.1rem; }

.post-content p,
.gh-content p {
  margin: 1.5rem 0;
}

.post-content ul,
.gh-content ul,
.post-content ol,
.gh-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
  line-height: 1.8;
}

.post-content li,
.gh-content li {
  margin: 0.5rem 0;
}

.post-content ul li,
.gh-content ul li {
  list-style-type: disc;
}

.post-content ol li,
.gh-content ol li {
  list-style-type: decimal;
}

.post-content blockquote,
.gh-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--color-secondary);
  background: rgba(233, 30, 158, 0.05);
  font-style: italic;
  color: var(--color-text-light);
}

.post-content blockquote p,
.gh-content blockquote p {
  margin: 0;
}

.post-content pre,
.gh-content pre {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow-x: auto;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.6;
}

.post-content code,
.gh-content code {
  background: rgba(233, 30, 158, 0.1);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
  color: var(--color-secondary);
}

.post-content pre code,
.gh-content pre code {
  background: none;
  padding: 0;
  color: var(--color-text-light);
}

.post-content hr,
.gh-content hr {
  margin: 3rem 0;
  border: none;
  border-top: 2px solid var(--color-border);
}

.post-content a,
.gh-content a {
  color: var(--color-secondary);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.post-content a:hover,
.gh-content a:hover {
  color: var(--color-text-light);
}

.post-content img,
.gh-content img {
  border-radius: 8px;
  margin: 2rem 0;
  max-width: 100%;
  height: auto;
}

.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--color-dark-purple);
}

.post-nav-prev,
.post-nav-next {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: var(--color-bg-card);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.post-nav-prev:hover,
.post-nav-next:hover {
  border-color: var(--color-secondary);
  transform: translateY(-4px);
}

.post-nav-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.post-nav-title {
  color: var(--color-secondary);
  font-weight: bold;
}

@media (max-width: 768px) {
  .post-title {
    font-size: 2rem;
  }

  .post-navigation {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Footer
   ======================================== */

.site-footer {
  background: var(--color-bg-dark);
  border-top: 2px solid var(--color-secondary);
  padding: 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 0 auto 2rem;
  width: 100%;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-dark-purple);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--color-secondary);
  transform: translateY(-4px);
}

.social-link.patreon:hover {
  background: #ff424d;
}

.footer-copyright {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  text-align: center;
}

.footer-copyright p {
  margin: 0.5rem 0;
  text-align: center;
}

.footer-credit {
  margin-top: 0.5rem;
  text-align: center;
}

.footer-credit a {
  color: var(--color-secondary);
}

/* ========================================
   Pagination
   ======================================== */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
}

.pagination a {
  padding: 0.75rem 1.5rem;
  background: var(--color-bg-card);
  border: 2px solid var(--color-secondary);
  border-radius: 4px;
  color: var(--color-text-light);
  transition: all 0.3s ease;
}

.pagination a:hover {
  background: var(--color-secondary);
  color: white;
  transform: translateY(-2px);
}

.page-number {
  color: var(--color-text-muted);
}

/* ========================================
   Infinite Scroll Trigger
   ======================================== */

.infinite-scroll-trigger {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}

/* ========================================
   Utility Classes
   ======================================== */

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ========================================
   Koenig Editor Styles (Required)
   ======================================== */

/* Wide images */
.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin: 2rem auto;
  transform: translateX(-50%);
  left: 50%;
}

/* Full-width images */
.kg-width-full {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* Koenig image card */
.kg-image-card {
  margin: 2rem 0;
}

.kg-image {
  width: 100%;
  height: auto;
}

/* Koenig gallery card */
.kg-gallery-card {
  margin: 2rem 0;
}

.kg-gallery-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.kg-gallery-row {
  display: flex;
  gap: 0.5rem;
}

.kg-gallery-image {
  flex: 1;
  width: 100%;
  height: auto;
}

/* Koenig embed card */
.kg-embed-card {
  margin: 2rem 0;
  text-align: center;
}

/* Image captions - centered and styled */
.post-content figcaption,
.gh-content figcaption {
  text-align: center;
  font-size: 0.875rem;
  color: #999;
  font-style: italic;
  margin-top: 0.75rem;
  line-height: 1.5;
}

.kg-image-card figcaption {
  text-align: center;
  font-size: 0.875rem;
  color: #999;
  font-style: italic;
  margin-top: 0.75rem;
  padding: 0 1rem;
}

.kg-card figcaption {
  text-align: center;
  font-size: 0.875rem;
  color: #999;
  font-style: italic;
  margin-top: 0.75rem;
}

/* Koenig bookmark card */
.kg-bookmark-card {
  margin: 2rem 0;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}

.kg-bookmark-container {
  display: flex;
  text-decoration: none;
  color: inherit;
}

.kg-bookmark-content {
  flex: 1;
  padding: 1.5rem;
}

.kg-bookmark-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.kg-bookmark-description {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.kg-bookmark-metadata {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.kg-bookmark-thumbnail {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  object-fit: cover;
}

/* Koenig video card */
.kg-video-card {
  margin: 2rem 0;
}

.kg-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.kg-video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Koenig audio card */
.kg-audio-card {
  margin: 2rem 0;
}

/* Koenig file card */
.kg-file-card {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.kg-file-card-title {
  font-weight: 600;
  color: var(--color-text-light);
}

.kg-file-card-caption {
  font-size: 0.875rem;
  color: #999;
  margin-top: 0.5rem;
}

/* Koenig callout card */
.kg-callout-card {
  margin: 2rem 0;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-secondary);
  background: rgba(233, 30, 158, 0.05);
}

.kg-callout-emoji {
  font-size: 1.5rem;
  margin-right: 0.75rem;
}

/* Koenig product card */
.kg-product-card {
  margin: 2rem 0;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
  background: var(--color-bg-card);
}

.kg-product-card-image {
  margin-bottom: 1rem;
}

.kg-product-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}

.kg-product-card-description {
  color: #999;
  margin-bottom: 1rem;
}

.kg-product-card-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--color-secondary);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.kg-product-card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 30, 158, 0.4);
}

/* Responsive Koenig styles */
@media (max-width: 768px) {
  .kg-width-wide {
    width: 100vw;
  }
  
  .kg-bookmark-container {
    flex-direction: column;
  }
  
  .kg-bookmark-thumbnail {
    width: 100%;
    height: auto;
  }
}

/* ========================================
   Empty State
   ======================================== */

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.empty-state h2 {
  color: var(--color-text-light);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.empty-state p {
  color: var(--color-text-muted);
  font-size: 1.125rem;
  line-height: 1.6;
}

.empty-state code {
  background: var(--color-dark-purple);
  color: var(--color-secondary);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}

