/*
Theme Name: MLINKS Theme
Author: You
Description: Minimal black theme with centered white post area.
Version: 1.0
*/

body {
  margin: 0;
  background: #0a0f1a;
  color: #000;
  font-family: Arial, sans-serif;
}

.header {
  padding: 20px;
}

.logo {
  color: white;
  font-size: 26px;
  font-weight: bold;
}

.post-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding-top: 60px;
}

.post-box {
  background: white;
  width: 70%;
  max-width: 800px;
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.post-box h1 {
  margin-top: 0;
}