:root {
  --site-width: 1000px;
  --primary: #7c3aed;
  --radius: 20px;
}

body {
  background-color: #f0f2f5 !important;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

/* KONTENER MISTRZOWSKI - Środkuje wszystko */
.site-master-wrapper {
  max-width: var(--site-width) !important;
  width: 95% !important;
  margin: 20px auto !important;
  display: block;
}

.main-content {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  margin-top: 20px;
  box-sizing: border-box;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Naprawa Logo */
.nav-logo-img {
  height: 50px !important;
  width: auto !important;
  display: block;
  border-radius: 8px;
}

/* Galeria Siatka */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

@media (max-width: 768px) {
  .main-content { padding: 20px; }
  .site-master-wrapper { width: 98% !important; }
}