/* Monke Mod Manager - Main Stylesheet */
/* Brand Colors: Primary #926501 (Golden/Amber) - Dark Theme */

:root {
  --primary: #926501;
  --primary-dark: #724f00;
  --primary-light: #b88a1a;
  --primary-glow: rgba(146, 101, 1, 0.4);
  --secondary: #0d0d0d;
  --accent: #d4a017;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --text-dark: #ffffff;
  --text-light: #ffffff;
  --text-muted: #9ca3af;
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --bg-light: #121212;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --border-color: #2a2a2a;
  --border-light: #333333;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(146, 101, 1, 0.3);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  background-color: var(--bg-dark);
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition);
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  max-width: 1400px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-light);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

/* Header */
.header {
  background: var(--secondary);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  border-bottom: 1px solid var(--border-color);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logo img {
  height: 45px;
  width: auto;
}

.logo:hover {
  color: var(--primary-light);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-menu a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-light);
}

/* Language Selector */
.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 8px 15px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}

.lang-btn:hover {
  border-color: var(--primary);
  background: rgba(146, 101, 1, 0.1);
  color: var(--primary-light);
}

.lang-btn svg {
  width: 18px;
  height: 18px;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  margin-top: 5px;
  overflow: hidden;
}

.lang-selector:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.lang-dropdown a:hover {
  background: var(--bg-light);
  color: var(--primary-light);
}

.lang-dropdown a.active {
  background: var(--primary);
  color: var(--text-light);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, #1a1205 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(146, 101, 1, 0.15) 0%, transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/img/hero-pattern.png') repeat;
  opacity: 0.03;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  color: var(--text-light);
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-glow);
}

.hero h1 {
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--primary-light);
  text-shadow: 0 0 30px rgba(146, 101, 1, 0.5);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-light);
  text-shadow: 0 0 20px rgba(146, 101, 1, 0.4);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border: 1px solid var(--border-color);
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.5;
}

/* Download Page Hero - Centered Layout */
.download-hero .hero-content {
  display: block;
}

.download-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.download-hero-content .hero-description {
  max-width: 600px;
  margin: 0 auto 30px;
}

.download-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 30px 0;
  padding: 25px 30px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.download-stat-item {
  text-align: center;
}

.download-stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-light);
  margin-bottom: 5px;
}

.download-stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.download-action {
  margin-top: 30px;
}

.download-btn-lg {
  padding: 20px 50px;
  font-size: 1.15rem;
}

.download-action .verification-badge {
  margin-top: 15px;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(146, 101, 1, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(146, 101, 1, 0.5);
  color: var(--text-light);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: rgba(146, 101, 1, 0.1);
  color: var(--primary-light);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.btn-icon-sm {
  width: 16px;
  height: 16px;
}

/* Section Styles */
.section {
  padding: 50px 0;
  background: var(--bg-dark);
}

.section-dark {
  background: var(--bg-darker);
}

.section-alt {
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--text-light);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Banner Image Section */
.banner-section {
  margin: 25px 0;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.banner-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border: 1px solid var(--border-color);
}

/* Mobile Hero Image */
.hero-mobile-image {
  display: none;
  text-align: center;
  margin: 25px 0;
}

.hero-mobile-image img {
  max-width: 200px;
  height: auto;
}

/* Content Section */
.content-section {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  margin-bottom: 25px;
  border: 1px solid var(--border-color);
}

.content-section h2 {
  color: var(--primary-light);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border-color);
}

.content-section h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text-light);
}

.content-section p {
  color: var(--text-muted);
}

.content-section ul,
.content-section ol {
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.content-section li {
  margin-bottom: 10px;
}

/* Download Box */
.download-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 35px 25px;
  text-align: center;
  color: var(--text-light);
  margin: 25px 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.download-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.download-box h3 {
  color: var(--text-light);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.download-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.download-info-item {
  text-align: center;
}

.download-info-label {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 5px;
}

.download-info-value {
  font-weight: 700;
  font-size: 1.1rem;
}

.download-btn {
  background: var(--bg-dark);
  color: var(--primary-light);
  padding: 16px 35px;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  font-weight: 700;
  border: 2px solid var(--primary-light);
  white-space: nowrap;
  text-decoration: none;
}

.download-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  color: var(--accent);
  background: var(--bg-darker);
}

.download-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Verification Badge - inside download box */
.verification-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.3);
  color: #4ade80;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 20px;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.verification-badge svg {
  width: 18px;
  height: 18px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--bg-card);
  padding: 35px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: var(--primary);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(146, 101, 1, 0.3);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  color: var(--text-light);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-light);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Steps Section */
.steps-list {
  max-width: 100%;
  margin: 0 auto;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  padding: 25px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.step-item:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.step-number {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(146, 101, 1, 0.3);
  margin-top: 2px;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  margin-bottom: 10px;
  margin-top: 0;
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.4;
}

.step-content p {
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Pros & Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

.pros-box,
.cons-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.pros-box {
  border-top: 4px solid var(--success);
}

.cons-box {
  border-top: 4px solid var(--danger);
}

.pros-box h3,
.cons-box h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.pros-box h3 svg {
  color: var(--success);
}

.cons-box h3 svg {
  color: var(--danger);
}

.pros-box ul,
.cons-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pros-box li,
.cons-box li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
}

.pros-box li:last-child,
.cons-box li:last-child {
  border-bottom: none;
}

.pros-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.cons-box li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: bold;
}

/* FAQ Accordion */
.faq-section {
  max-width: 100%;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  margin-bottom: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
  gap: 15px;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question.active {
  background: var(--primary);
  color: var(--text-light);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer.open {
  padding: 20px 30px;
  max-height: 500px;
}

.faq-answer p {
  margin-bottom: 0;
  color: var(--text-muted);
}

/* Table of Contents */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  margin-bottom: 30px;
  overflow: hidden;
}

.toc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: var(--bg-light);
  cursor: pointer;
  font-weight: 700;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-light);
}

.toc-header svg {
  width: 20px;
  height: 20px;
  transition: var(--transition);
}

.toc.open .toc-header svg {
  transform: rotate(180deg);
}

.toc-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.toc.open .toc-content {
  padding: 20px;
  max-height: 1000px;
}

.toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc-list li {
  margin-bottom: 10px;
}

.toc-list a {
  display: block;
  padding: 8px 15px;
  border-radius: var(--radius);
  transition: var(--transition);
  color: var(--text-muted);
}

.toc-list a:hover {
  background: var(--bg-light);
  color: var(--primary-light);
}

/* Screenshot Slider */
.screenshot-section {
  overflow: hidden;
}

.screenshot-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.screenshot-slider::-webkit-scrollbar {
  height: 8px;
}

.screenshot-slider::-webkit-scrollbar-track {
  background: var(--bg-light);
  border-radius: 4px;
}

.screenshot-slider::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.screenshot-item {
  flex-shrink: 0;
  width: 600px;
  scroll-snap-align: start;
}

.screenshot-item img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 15px 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb-list li::after {
  content: '›';
  color: var(--text-muted);
}

.breadcrumb-list li:last-child::after {
  display: none;
}

.breadcrumb-list a {
  color: var(--text-muted);
}

.breadcrumb-list a:hover {
  color: var(--primary-light);
}

.breadcrumb-list li:last-child span {
  color: var(--text-light);
  font-weight: 600;
}

/* System Requirements */
.system-requirements {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  margin: 30px 0;
  border: 1px solid var(--border-color);
}

.system-requirements h3 {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}

.req-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.req-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
}

.req-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.req-icon svg {
  width: 20px;
  height: 20px;
  color: var(--text-light);
}

.req-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.req-value {
  font-weight: 600;
  color: var(--text-light);
}

/* Article Cards */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.article-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: var(--primary);
}

.article-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-content {
  padding: 25px;
}

.article-category {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.article-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.article-card h3 a {
  color: var(--text-light);
}

.article-card h3 a:hover {
  color: var(--primary-light);
}

.article-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-light);
}

.read-more svg {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

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

/* Footer */
.footer {
  background: var(--secondary);
  color: var(--text-light);
  padding: 60px 0 0;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: var(--text-light);
}

.footer-column h4 {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-bottom {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

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

.footer-disclaimer {
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 500px;
  text-align: right;
  opacity: 0.7;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.cta-section h2 {
  color: var(--text-light);
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
}

.cta-section p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  color: var(--text-light);
}

.cta-btn {
  background: var(--bg-dark);
  color: var(--primary-light);
  padding: 18px 45px;
  font-size: 1.1rem;
  position: relative;
  border: 2px solid transparent;
}

.cta-btn:hover {
  background: var(--bg-darker);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  color: var(--accent);
}

/* Old Versions */
.old-versions {
  background: var(--bg-light);
  padding: 30px;
  border-radius: var(--radius-lg);
  margin-top: 40px;
  border: 1px solid var(--border-color);
}

.old-versions h3 {
  margin-bottom: 20px;
  color: var(--text-light);
}

.version-table {
  width: 100%;
  border-collapse: collapse;
}

.version-table th,
.version-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
}

.version-table th {
  background: var(--bg-card);
  font-weight: 600;
  color: var(--text-light);
}

.version-table tr:hover td {
  background: var(--bg-card);
}

.version-download {
  color: var(--primary-light);
  font-weight: 600;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, #1a1205 100%);
  padding: 40px 0;
  color: var(--text-light);
  position: relative;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(146, 101, 1, 0.15) 0%, transparent 50%);
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header .article-category {
  display: inline-block;
  margin-bottom: 15px;
}

.page-header h1 {
  color: var(--text-light);
  margin-bottom: 10px;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Legal Pages */
.legal-content {
  background: var(--bg-card);
  padding: 35px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  margin: 25px 0;
  border: 1px solid var(--border-color);
}

.legal-content h2 {
  color: var(--primary-light);
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content p {
  color: var(--text-muted);
}

.legal-content ul {
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.last-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

/* Contact Form */
.contact-form {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-light);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-light);
  color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-dark);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
}

.form-checkbox label {
  margin-bottom: 0;
  font-weight: 400;
  color: var(--text-muted);
}

.required {
  color: var(--danger);
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form-wrapper {
  background: var(--bg-card);
  padding: 35px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
}

.contact-form-wrapper h2 {
  color: var(--text-light);
  margin-bottom: 15px;
}

.contact-form-wrapper p {
  margin-bottom: 25px;
}

.contact-form-wrapper .contact-form {
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}

.contact-info h2 {
  color: var(--text-light);
  margin-bottom: 25px;
}

.contact-info-card {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--primary);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--text-light);
}

.contact-info-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-light);
}

.contact-info-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.contact-info-content .btn {
  margin-top: 5px;
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.contact-social a {
  width: 36px;
  height: 36px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.contact-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.contact-social svg {
  width: 16px;
  height: 16px;
}

.form-success {
  text-align: center;
  padding: 40px;
}

.form-success svg {
  width: 60px;
  height: 60px;
  color: var(--success);
  margin-bottom: 20px;
}

.form-success h3 {
  color: var(--text-light);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-muted);
}

/* FAQ Quick Links */
.faq-quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.faq-quick-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  color: var(--text-light);
}

.faq-quick-link:hover {
  border-color: var(--primary);
  background: var(--bg-card-hover);
  color: var(--primary-light);
}

.faq-quick-link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--primary-light);
}

.faq-quick-link span {
  font-size: 0.95rem;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .faq-quick-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .faq-quick-links {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 25px 20px;
  }
}

/* Logo Mobile Short Name */
.logo .logo-short {
  display: none;
}

.logo .logo-full {
  display: inline;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    display: none;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  /* Mobile Header - Show short name "MMM" */
  .logo .logo-full {
    display: none;
  }

  .logo .logo-short {
    display: inline;
  }

  .logo {
    font-size: 1.2rem;
    gap: 8px;
  }

  .logo img {
    height: 36px;
  }

  /* Header layout on mobile */
  .header-inner {
    padding: 12px 0;
  }

  /* Navigation on mobile - right aligned */
  .nav {
    gap: 12px;
    margin-left: auto;
  }

  .nav-menu {
    display: none;
  }

  /* Language selector compact on mobile */
  .lang-btn {
    padding: 6px 10px;
    font-size: 0.85rem;
  }

  .lang-btn svg {
    width: 16px;
    height: 16px;
  }

  /* Mobile toggle button */
  .mobile-toggle {
    display: flex;
    order: 2;
    z-index: 1001;
  }

  .lang-selector {
    order: 1;
  }

  /* Mobile menu when active */
  .nav.active .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary);
    padding: 20px;
    gap: 0;
    border-top: 1px solid var(--border-color);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav.active .nav-menu li {
    border-bottom: 1px solid var(--border-color);
  }

  .nav.active .nav-menu a {
    display: block;
    padding: 15px 0;
    font-size: 1.1rem;
  }

  /* Mobile toggle hamburger animation */
  .mobile-toggle span {
    transition: all 0.3s ease;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .hero {
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  /* Show mobile hero image */
  .hero-mobile-image {
    display: block;
  }

  .section {
    padding: 35px 0;
  }

  /* Download button responsive */
  .download-btn {
    padding: 14px 25px;
    font-size: 1rem;
  }

  .download-box {
    padding: 25px 15px;
  }

  .download-box h3 {
    font-size: 1.4rem;
  }

  /* Reduce banner size on mobile */
  .banner-section {
    margin: 15px 0;
  }

  .features-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .content-section {
    padding: 30px 20px;
  }

  .legal-content {
    padding: 30px 20px;
  }

  .download-info {
    flex-direction: column;
    gap: 15px;
  }

  .screenshot-item {
    width: 300px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo img {
    height: 32px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

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

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .cta-section,
  .download-box {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    background: #fff;
    color: #000;
  }

  .content-section {
    box-shadow: none;
    border: 1px solid #000;
    background: #fff;
  }
}

/* Selection Color */
::selection {
  background: var(--primary);
  color: var(--text-light);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

/* Version History Grid - Auto-updated from GitHub */
.version-history-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.version-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.version-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
}

.version-item.version-latest {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(146, 101, 1, 0.1) 0%, var(--bg-card) 100%);
}

.version-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.version-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.version-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
}

.version-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--primary);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
}

.version-date,
.version-size {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.version-actions {
  display: flex;
  gap: 10px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
}

.btn-outline:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  color: var(--text-light);
}

@media (max-width: 768px) {
  .version-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .version-actions {
    width: 100%;
  }

  .version-actions .btn {
    flex: 1;
    text-align: center;
  }
}
