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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #e6edf3;
  background-color: #0d1117;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #30363d;
  margin-bottom: 40px;
}

nav .name {
  font-size: 1.5rem;
  font-weight: 300;
  color: #f0f6fc;
}

nav .name b {
  font-weight: 700;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #8b949e;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #58a6ff;
}

nav ul li a.active {
  color: #58a6ff;
  border-bottom: 2px solid #58a6ff;
  padding-bottom: 5px;
}

/* Main content */
main {
  min-height: calc(100vh - 180px);
  padding-bottom: 40px;
}

.markdown-content {
  background-color: #161b22;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  border: 1px solid #30363d;
}

/* Markdown content styles */
.markdown-content h1 {
  border-bottom: 1px solid #30363d;
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: #f0f6fc;
}

.markdown-content h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: #f0f6fc;
}

.markdown-content p {
  margin-bottom: 15px;
  color: #c9d1d9;
}

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

.markdown-content a {
  color: #58a6ff;
  text-decoration: none;
}

.markdown-content a:hover {
  text-decoration: underline;
}

.markdown-content code {
  background-color: #1f2937;
  padding: 2px 5px;
  border-radius: 3px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  color: #e6edf3;
}

.markdown-content pre {
  background-color: #1f2937;
  padding: 15px;
  border-radius: 6px;
  overflow-x: auto;
  margin-bottom: 15px;
  border: 1px solid #30363d;
}

.markdown-content pre code {
  background-color: transparent;
  padding: 0;
}

.markdown-content ul,
.markdown-content ol {
  margin-left: 20px;
  margin-bottom: 15px;
  color: #c9d1d9;
}

.markdown-content blockquote {
  padding: 0 1em;
  color: #8b949e;
  border-left: 0.25em solid #30363d;
  margin-bottom: 15px;
}

.markdown-content hr {
  height: 0.25em;
  padding: 0;
  margin: 24px 0;
  background-color: #30363d;
  border: 0;
}

.markdown-content table {
  border-collapse: collapse;
  margin-bottom: 16px;
  width: 100%;
}

.markdown-content table th,
.markdown-content table td {
  padding: 6px 13px;
  border: 1px solid #30363d;
}

.markdown-content table tr {
  background-color: #0d1117;
  border-top: 1px solid #30363d;
}

.markdown-content table tr:nth-child(2n) {
  background-color: #161b22;
}

/* Loading and error states */
.loading {
  text-align: center;
  padding: 40px;
  color: #8b949e;
}

.error {
  background-color: #2d1516;
  border-left: 4px solid #f85149;
  padding: 20px;
  margin-bottom: 20px;
  color: #f0f6fc;
}

/* Contact page specific styles */
.contact-content {
  background-color: #161b22;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  border: 1px solid #30363d;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
  width: 100%;
}
@media (max-width: 768px) {
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.contact-method {
  padding: 20px;
  background-color: #1f2937;
  border-radius: 6px;
  border: 1px solid #30363d;
  min-width: 0;
  width: 100%;
}
.contact-method h2 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #f0f6fc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-method p {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-method a {
  color: #58a6ff;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-method a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px 0;
  color: #8b949e;
  border-top: 1px solid #30363d;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    text-align: center;
  }
  nav ul {
    margin-top: 15px;
  }
  nav ul li {
    margin: 0 10px;
  }
}
@media (max-width: 480px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  nav ul li {
    margin: 5px 0;
  }
}/*# sourceMappingURL=style.css.map */