/**
 * 🕷️ ANT TEA GAMES — Zines Variant Styles
 * 
 * Xerox gray photocopy, DIY print culture aesthetic
 */

/* Root Variables */
:root {
  --zines-primary: #666666;
  --zines-secondary: #f5f5f5;
  --zines-accent: #e0e0e0;
  --zines-text: #333333;
  --zines-bg: #f5f5f5;
}

/* Base Styles */
body {
  background: linear-gradient(45deg, #f5f5f5 0%, #e0e0e0 50%, #f5f5f5 100%);
  color: var(--zines-text);
  font-family: 'Times New Roman', serif;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  filter: contrast(1.1);
}

/* Navigation */
.zines-nav {
  background: linear-gradient(90deg, #f5f5f5 0%, #e0e0e0 50%, #f5f5f5 100%);
  border-bottom: 2px solid var(--zines-primary);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  filter: contrast(1.2);
}

.xerox-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--zines-primary);
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.brand-subtitle {
  font-size: 0.8rem;
  color: var(--zines-text);
  margin-left: 0.5rem;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-links a {
  color: var(--zines-text);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--zines-primary);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Hero Section */
.zines-hero {
  background: linear-gradient(45deg, #f5f5f5 0%, #e0e0e0 25%, #f5f5f5 50%, #e0e0e0 75%, #f5f5f5 100%);
  background-size: 40px 40px;
  padding: 4rem 2rem;
  text-align: center;
  filter: contrast(1.2);
}

.xerox-title {
  font-size: 3rem;
  font-weight: bold;
  color: var(--zines-primary);
  text-transform: uppercase;
  margin: 0 0 1rem 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-family: 'Times New Roman', serif;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--zines-text);
  margin: 0 0 2rem 0;
}

.print-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.xerox-btn {
  background: var(--zines-primary);
  color: var(--zines-secondary);
  border: 2px solid var(--zines-primary);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Times New Roman', serif;
}

.xerox-btn:hover {
  background: var(--zines-secondary);
  color: var(--zines-primary);
}

/* Zines Section */
.zines-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.zines-section h2 {
  color: var(--zines-primary);
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 2rem 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.zines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.zine-card {
  background: var(--zines-secondary);
  border: 1px solid var(--zines-primary);
  padding: 2rem;
  text-align: center;
  filter: contrast(1.2) grayscale(0.3);
  transition: all 0.3s;
}

.zine-card:hover {
  filter: contrast(1.3) grayscale(0.2);
  transform: translateY(-2px);
}

.xerox-border {
  border: 1px solid var(--zines-primary);
  background: var(--zines-secondary);
  padding: 2rem;
  margin-bottom: 1rem;
  filter: contrast(1.2) grayscale(0.3);
}

.xerox-texture {
  color: var(--zines-primary);
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  font-family: 'Times New Roman', serif;
}

.zine-title {
  color: var(--zines-primary);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 1rem 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  font-family: 'Times New Roman', serif;
}

.zine-description {
  font-size: 1rem;
  margin: 1rem 0;
  line-height: 1.6;
}

.zine-stats {
  display: flex;
  justify-content: space-between;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.pages {
  color: var(--zines-primary);
}

.format {
  color: var(--zines-text);
}

.download-zine-btn {
  background: var(--zines-primary);
  color: var(--zines-secondary);
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Times New Roman', serif;
}

.download-zine-btn:hover {
  background: var(--zines-secondary);
  color: var(--zines-primary);
}

/* Print Culture Section */
.print-culture-section {
  background: var(--zines-accent);
  padding: 4rem 2rem;
  text-align: center;
}

.print-culture-section h2 {
  color: var(--zines-primary);
  font-size: 2rem;
  text-transform: uppercase;
  margin: 0 0 2rem 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.print-info {
  max-width: 800px;
  margin: 0 auto 2rem auto;
}

.print-instructions {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.print-instructions h3 {
  color: var(--zines-primary);
  text-transform: uppercase;
  margin: 1rem 0;
}

.print-instructions ol {
  color: var(--zines-text);
}

/* DIY Section */
.diy-section {
  background: var(--zines-secondary);
  padding: 4rem 2rem;
  text-align: center;
}

.diy-section h2 {
  color: var(--zines-primary);
  font-size: 2rem;
  text-transform: uppercase;
  margin: 0 0 2rem 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

.feature {
  background: var(--zines-bg);
  border: 1px solid var(--zines-primary);
  padding: 2rem;
  filter: contrast(1.2) grayscale(0.3);
}

.feature h3 {
  color: var(--zines-primary);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  font-family: 'Times New Roman', serif;
}

/* Footer */
.zines-footer {
  background: var(--zines-bg);
  border-top: 2px solid var(--zines-primary);
  padding: 2rem;
  text-align: center;
  filter: contrast(1.2);
}

.zines-footer p {
  margin: 0.5rem 0;
  font-weight: bold;
  text-transform: uppercase;
}

.zines-footer p:first-child {
  color: var(--zines-primary);
  font-size: 1.2rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .zines-nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .xerox-title {
    font-size: 2rem;
  }
  
  .print-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .zines-grid {
    grid-template-columns: 1fr;
  }
  
  .diy-features {
    grid-template-columns: 1fr;
  }
}
