/* --- Base Theme & Layout Styles --- */
body {
    font-family: 'Inter', sans-serif;
	background-image: url('https://cdn.phantomsnetwork.org/NjocJxYiSPPV.png');
	background-size: cover;
	background-position: center;
    background-attachment: fixed;
    color: #e5e7eb; /* Default light gray text */
    overflow-x: hidden;
}

.body-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.95) 100%);
    z-index: -1; /* Place it behind all content */
}

.glass-effect {
    background: rgba(17, 17, 17, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    color: #6b7280; /* gray-500 */
}

/* --- GitHub Markdown CSS (Dark Theme) --- */
/* This is a popular, public stylesheet for rendering markdown */
.markdown-body {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  margin: 0;
  color: #c9d1d9;
  background-color: transparent; /* Make it see-through to our glass effect */
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
  font-size: 16px;
  line-height: 1.5;
  word-wrap: break-word;
}
/* ... (standard markdown styles like blockquotes, tables, etc.) ... */
.markdown-body h1, .markdown-body h2 {
  font-weight: 600;
  padding-bottom: .3em;
  border-bottom: 1px solid #21262d;
}
.markdown-body h1 { font-size: 2em; }
.markdown-body h2 { font-size: 1.5em; }
.markdown-body ul {
    list-style-type: disc;
    padding-left: 2em;
}
.markdown-body a {
  background-color: transparent;
  color: #58a6ff;
  text-decoration: none;
}
.markdown-body a:hover { text-decoration: underline; }
.markdown-body code {
    font-family: monospace;
    background-color: rgba(110,118,129,0.4);
    border-radius: 6px;
    padding: .2em .4em;
    font-size: 85%;
}
/* --- End of Public CSS --- */


/* --- CUSTOM THEME OVERRIDES --- */
/* This section applies your website's specific theme on top of the public styles */

.markdown-body {
    font-family: 'Inter', sans-serif; /* Use your site's font */
    font-size: 1rem;
    line-height: 1.75;
}

/* Main Title (#) */
.markdown-body h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff; /* Pure white */
    border-bottom-color: rgba(255, 255, 255, 0.2); /* Brighter border */
    margin-bottom: 0; /* Remove bottom margin to bring date closer */
}

/* NEW: Add spacing for new changelog entries */
.markdown-body h1:not(:first-of-type) {
    margin-top: 4rem; /* Adds a large space above subsequent titles */
}

/* This targets the date paragraph we created */
.markdown-body .date {
    font-size: 1rem;         /* Smaller font size */
    font-weight: 500;        /* Lighter font weight */
    color: #9ca3af;         /* Fader color (gray-400) */
    margin-top: -0.25rem;    /* Pull it up slightly under the title */
    margin-bottom: 2rem;     /* Add space before the main content */
}


/* Sub-headings (##) */
.markdown-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f59e0b; /* Your theme's yellow accent */
    border-bottom: none; /* Remove border from sub-headings */
    margin-top: 2.5rem;
}

/* Links ([text](url)) */
.markdown-body a {
    color: #38bdf8; /* Bright sky blue for links */
    text-decoration: underline;
}

.markdown-body a:hover {
    color: #7dd3fc;
}