/* INDEX SPECIFIC STYLES - Extracted from index.html */

/* Desktop navigation - show proper menu structure */
@media (min-width: 769px) {
  .nav-menu {
    display: flex !important;
    position: static !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-direction: row !important;
    gap: 0.8rem;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    list-style: none;
  }
  
  .nav-menu li {
    border: none !important;
    position: relative;
  }
  
  .nav-menu > li > a {
    display: flex !important;
    padding: 0.6rem 0.9rem !important;
    border-radius: 0.6rem !important;
    font-size: 0.9rem !important;
    transition: background 0.2s ease !important;
    white-space: nowrap;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
  }
  
  .nav-menu > li > a:hover {
    background: rgba(255,255,255,0.1) !important;
  }
  
  /* Hide mobile hamburger on desktop */
  .nav-toggle {
    display: none !important;
  }
}

/* HERO SECTION */
.hero-v2 {
  min-height: 100vh;
  background-color: #1a1a2e;
  background: 
    linear-gradient(135deg, rgba(44, 24, 16, 0.65) 0%, rgba(26, 26, 46, 0.5) 50%, rgba(44, 24, 16, 0.65) 100%),
    url('../images/hero-uniwersum-ruckingu.jpg'),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23e63946" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%232a9d8f" opacity="0.05"/><circle cx="40" cy="80" r="1" fill="%23e63946" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  background-size: cover, contain, 100px 100px;
  background-position: center, center bottom, 0 0;
  background-repeat: no-repeat, no-repeat, repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(230, 57, 70, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(42, 157, 143, 0.03) 0%, transparent 50%);
  animation: heroFloat 12s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-15px) scale(1.02); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.hero-text {
  max-width: 800px;
  margin: 0 auto;
}

.hero-tagline {
  color: #2a9d8f;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  font-family: 'Crimson Text', serif;
  font-style: italic;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #e63946 0%, #ffffff 50%, #2a9d8f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.8rem;
  line-height: 1.4;
  color: #e9ecef;
  margin-bottom: 3rem;
  font-family: 'Crimson Text', serif;
}


/* CONTENT SHOWCASE */
.content-showcase {
  padding: 6rem 0;
  background: linear-gradient(180deg, #1a1a2e 0%, #2c1810 100%);
}

.showcase-header {
  text-align: center;
  margin-bottom: 4rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.showcase-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #e63946;
  margin-bottom: 1.5rem;
  font-family: 'Crimson Text', serif;
}

.showcase-subtitle {
  font-size: 1.3rem;
  color: #2a9d8f;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.articles-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 4rem;
  align-items: center;
}

.article-card {
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.8) 0%, rgba(74, 52, 25, 0.9) 100%);
  border: 2px solid rgba(184, 134, 11, 0.3);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 800px;
  width: 100%;
}

.article-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  border-radius: 8px 8px 0 0;
}

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


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

/* Specjalne kadrowanie dla poszczególnych obrazów */
.article-image img[src*="sleep-faster-arnold"] {
  object-position: top center;
}

.article-image img[src*="ciemna-strona-1"] {
  object-position: center center;
}

.article-image img[src*="jasna-strona-3"] {
  object-position: center center;
}

.article-image img[src*="terminator-moon"] {
  object-position: center center;
}

.article-image img[src*="jak-zaczac-evolution"] {
  object-position: center center;
}

.article-image img[src*="bestiariusz-1"] {
  object-position: center center;
}

.article-image img[src*="base64_upload"] {
  object-position: center center;
}

.article-card:hover {
  transform: translateY(-5px);
  border-color: #e63946;
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.2);
}

.article-header {
  padding: 2rem 2rem 1rem;
  position: relative;
}

.article-category {
  display: inline-block;
  background: #e63946;
  color: #2c1810;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.article-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #e63946;
  margin-bottom: 1rem;
  line-height: 1.3;
  text-align: left;
}

.article-excerpt {
  color: #e9ecef;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #2a9d8f;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.article-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #2a9d8f 0%, #e63946 100%);
  color: #2c1810;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 0 2rem 2rem;
}

.article-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(184, 134, 11, 0.4);
}

/* RUCKING EXPLAINED SECTION */
.rucking-explained {
  padding: 5rem 0;
  background-color: #1a1a2e;
  background: 
    linear-gradient(135deg, rgba(44, 24, 16, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="intellectual" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="%232a9d8f" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23intellectual)"/></svg>');
  background-size: cover, 40px 40px;
  background-position: center, 0 0;
  background-repeat: no-repeat, repeat;
}

/* UNIVERSE SECTION */
.universe-section {
  padding: 6rem 0;
  background: 
    radial-gradient(ellipse at center, rgba(230, 57, 70, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse at 80% 20%, rgba(42, 157, 143, 0.03) 0%, transparent 50%),
    linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(44, 24, 16, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.universe-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="cosmos" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23e63946" opacity="0.1"/><circle cx="150" cy="80" r="0.5" fill="%232a9d8f" opacity="0.15"/><circle cx="100" cy="150" r="1.5" fill="%23ffffff" opacity="0.05"/><circle cx="30" cy="170" r="0.8" fill="%23e63946" opacity="0.08"/></pattern></defs><rect width="100%" height="100%" fill="url(%23cosmos)"/></svg>');
  animation: cosmicFloat 20s linear infinite;
}

@keyframes cosmicFloat {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-200px) translateY(-50px); }
}

.universe-content {
  position: relative;
  z-index: 2;
}

.universe-header {
  text-align: center;
  margin-bottom: 4rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.universe-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #e63946 0%, #ffffff 30%, #2a9d8f 70%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  font-family: 'Crimson Text', serif;
}

.universe-subtitle {
  font-size: 1.4rem;
  color: #d1d5db;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  font-family: 'Crimson Text', serif;
  font-style: italic;
}

.sun-metaphor {
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at center, rgba(230, 57, 70, 0.15) 0%, transparent 60%);
  backdrop-filter: blur(15px);
  border: 3px solid rgba(230, 57, 70, 0.4);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  margin: 3rem auto;
  max-width: 800px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.sun-metaphor::before {
  content: '☀️';
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  animation: sunPulse 4s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.sun-metaphor::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(42, 157, 143, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

@keyframes sunPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.9; }
  50% { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

.sun-metaphor h3 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  font-weight: 800;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(230, 57, 70, 0.3);
  position: relative;
  z-index: 1;
}

.sun-metaphor p {
  color: #f8f9fa;
  font-size: 1.4rem;
  line-height: 1.8;
  font-family: 'Crimson Text', serif;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  margin: 0;
  font-family: 'Crimson Text', serif;
}

.orbiting-elements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.orbit-card {
  background: rgba(44, 24, 16, 0.6);
  border: 1px solid rgba(42, 157, 143, 0.2);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.orbit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.05), rgba(42, 157, 143, 0.03));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.orbit-card:hover {
  transform: translateY(-8px);
  border-color: #e63946;
  box-shadow: 0 20px 40px rgba(230, 57, 70, 0.15);
}

.orbit-card:hover::before {
  opacity: 1;
}

.orbit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  position: relative;
  z-index: 2;
}

.orbit-card h4 {
  color: #2a9d8f;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.orbit-card p {
  color: #e9ecef;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.orbit-examples {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.orbit-examples li {
  color: #9ca3af;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  border-left: 2px solid rgba(230, 57, 70, 0.3);
  padding-left: 1rem;
  margin-bottom: 0.5rem;
}

.orbit-examples li:before {
  content: '→';
  color: #e63946;
  font-weight: bold;
  margin-right: 0.5rem;
}

.rucking-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.rucking-definition {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.definition-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #e63946, #2a9d8f);
  color: white;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.rucking-definition h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.definition-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #d1d5db;
  margin-bottom: 2rem;
  font-family: 'Crimson Text', serif;
}

.definition-text strong {
  color: #e63946;
  font-weight: 600;
}

.philosophy-highlight {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  border: 2px solid rgba(42, 157, 143, 0.3);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  margin: 3rem auto;
  max-width: 600px;
  text-align: center;
  position: relative;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-family: 'Crimson Text', serif;
  font-size: 1.3rem;
  line-height: 1.7;
  color: #ffffff;
}

.philosophy-highlight::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: #e63946;
  font-family: serif;
  opacity: 0.8;
  line-height: 1;
}

.philosophy-highlight::after {
  content: '"';
  position: absolute;
  bottom: -30px;
  right: 20px;
  font-size: 4rem;
  color: #e63946;
  font-family: serif;
  opacity: 0.8;
  line-height: 1;
}

.philosophy-highlight strong {
  color: #2a9d8f;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-v2 {
    min-height: 90vh;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  /* Mobile hamburger menu styles */
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    color: #e63946;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    text-shadow: 0 0 4px rgba(0,0,0,0.8);
  }
  
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    z-index: 1000;
    flex-direction: column;
    padding: 4rem 2rem 2rem;
    overflow-y: auto;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu li {
    margin: 0.5rem 0;
    width: 100%;
  }
  
  .nav-menu a {
    display: block;
    padding: 1rem;
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s ease;
  }
  
  .nav-menu a:hover {
    background: rgba(255,255,255,0.1);
  }
  
  /* Mobile dropdown handling */
  .nav-dropdown .dropdown-menu {
    display: none;
    position: static;
    background: none;
    box-shadow: none;
    padding-left: 1rem;
  }
  
  .nav-dropdown.active .dropdown-menu {
    display: block;
  }
  
  .dropdown-trigger {
    cursor: pointer;
    user-select: none;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .article-image {
    height: 180px;
  }
  
  .rucking-content {
    max-width: 90%;
    text-align: center;
  }
  
  .rucking-definition h2 {
    font-size: 2rem;
  }
  
  .philosophy-highlight {
    padding: 2rem 1.5rem;
    margin: 2rem auto;
    font-size: 1.2rem;
    max-width: 95%;
  }
  
  .philosophy-highlight::before,
  .philosophy-highlight::after {
    font-size: 3rem;
  }
  
  .philosophy-highlight::before {
    top: -8px;
    left: 15px;
  }
  
  .philosophy-highlight::after {
    bottom: -25px;
    right: 15px;
  }
  
  .definition-text {
    font-size: 1.1rem;
  }
  
  .manifests-articles-grid {
    gap: 2rem;
  }
  
  .manifests-header h3 {
    font-size: 2rem;
  }
  
  .community-content h2 {
    font-size: 2rem;
  }
  
  .community-options {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .community-card {
    padding: 2rem 1.5rem;
  }
  
  .universe-title {
    font-size: 3.5rem;
  }
  
  .universe-subtitle {
    font-size: 1.2rem;
    padding: 0 1rem;
  }
  
  .sun-metaphor {
    padding: 2.5rem 1.5rem;
    margin: 2rem auto;
    max-width: 95%;
  }
  
  .sun-metaphor::before {
    font-size: 3rem;
    top: -20px;
  }
  
  .sun-metaphor h3 {
    font-size: 1.6rem;
  }
  
  .sun-metaphor p {
    font-size: 1.2rem;
    line-height: 1.7;
  }
  
  .orbiting-elements {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .orbit-card {
    padding: 1.5rem;
  }
  
  .orbit-icon {
    font-size: 2rem;
  }
  
  .orbit-card h4 {
    font-size: 1.2rem;
  }
  
  .wanted-poster {
    max-width: 90vw;
    width: 100%;
  }
  
  .wanted-content {
    padding: 0 1rem;
  }
}

/* PHILOSOPHICAL MANIFESTS */
.manifests-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid rgba(230, 57, 70, 0.2);
}

.manifests-header {
  text-align: center;
  margin-bottom: 3rem;
}

.manifests-header h3 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.manifests-header p {
  font-size: 1.2rem;
  color: #9ca3af;
  font-family: 'Crimson Text', serif;
  font-style: italic;
}

.manifests-articles-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.article-card.manifest {
  border-color: #2a9d8f;
  max-width: 700px;
  width: 100%;
}

.article-card.manifest .article-category {
  background: linear-gradient(135deg, #2a9d8f, #e63946);
}

/* COMMUNITY SECTION */
.community-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(42, 157, 143, 0.1), rgba(230, 57, 70, 0.05));
}

.community-content h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 3rem;
  font-weight: 700;
}

.community-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.community-card {
  padding: 2.5rem 2rem;
  background: rgba(44, 24, 16, 0.8);
  border: 2px solid rgba(42, 157, 143, 0.3);
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.community-card:hover {
  transform: translateY(-5px);
  border-color: #2a9d8f;
  box-shadow: 0 15px 40px rgba(42, 157, 143, 0.2);
}

.community-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.community-card h3 {
  color: #2a9d8f;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.community-card p {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.community-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2a9d8f;
  text-decoration: none;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border: 2px solid #2a9d8f;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.community-link:hover {
  background: #2a9d8f;
  color: #ffffff;
}

/* WANTED POSTER SECTION */
.wanted-section {
  margin-top: 4rem;
  padding: 3rem 0;
  border-top: 2px solid rgba(230, 57, 70, 0.2);
}

.wanted-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.wanted-poster {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.6));
  transition: transform 0.5s ease;
  border-radius: 12px;
  transform: scale(0.8);
}

/* Desktop - większy obrazek */
@media (min-width: 769px) {
  .wanted-poster {
    max-width: 550px;
    transform: scale(0.8);
  }
  
  .wanted-poster.visible {
    transform: scale(1.1);
  }
}

.wanted-poster.visible {
  transform: scale(1);
}

.wanted-poster:hover {
  transform: scale(1.1) rotate(-2deg);
}

.wanted-poster.visible:hover {
  transform: scale(1.15) rotate(-2deg);
}

.wanted-slogan {
  text-align: center;
  margin: 2rem 0;
}

.wanted-slogan p:hover {
  transform: scale(1.05);
  text-shadow: 0 6px 12px rgba(230, 57, 70, 0.4);
  transition: all 0.3s ease;
}

.wanted-slogan p {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #e63946;
  margin: 1.5rem 0;
  font-family: 'Crimson Text', serif;
  font-style: italic;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
  background: linear-gradient(135deg, #e63946 0%, #ff6b7a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* MINIMALIST FOOTER */
.site-foot {
  padding: 2rem 0;
  background: rgba(26, 26, 46, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.site-foot p {
  color: #9ca3af;
  font-size: 0.9rem;
  margin: 0;
}


