/* Layout for entire page */

/* Default cursor for the page */
body {
  cursor: url('https://micryptid.neocities.org/purple-eye-normal.cur'), auto;
}

/* Cursor for links, buttons, and other interactive elements */
a,
button,
input,
textarea,
select,
label,
img{
  cursor: url('https://micryptid.neocities.org/purple-eye-link.cur'), pointer;
}


.main-container {
  display: flex;
  min-height: 100vh;
  gap: 20px; /* spacing between columns */
}

/* Left section */
.left-section {
  width: 260px;
  background-color: #1a1a1a;
  padding: 20px;
  color: #D2042D;;
  border: 3px ridge #D2042D;;
}

ul {
  list-style-type: square;
  background-color: #2a2a2a;
  padding: 15px;
  border: 2px dotted #D2042D;;
}

li {
  margin-bottom: 12px;
  font-weight: bold;
}



/* Middle section as blog column */
.middle-section {
  flex: 3; /* bigger than side sections */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: #111;
  border: none;
  box-shadow: none;
}

.about-box {
  width: 400px;           /* fixed width */
  max-width: 90%;         /* responsive on small screens */
  height: 250px;          /* fixed height so it doesn't fill the page */
  background-color: #000;
  padding: 12px;
  margin: 20px auto;      /* centered */
  
  /* pixel dotted border */
  border: 4px dotted #39ff14; /* neon green */

  font-family: "Courier New", monospace;
}

.about-box h2 {
  margin: 0 0 10px;
  font-size: 1.4em;
  color: #39ff14;
  text-align: center;
}

.about-scroll {
  height: 160px;          /* smaller than the box so header fits */
  overflow-y: auto;       /* vertical scrollbar */
  padding: 8px;
  background: #111;

  /* inner pixel dotted border */
  border: 2px dotted #39ff14;

  color: #baffc9;
  font-family: "Courier New", monospace;
}

/* Scrollbar styling */
.about-scroll::-webkit-scrollbar {
  width: 8px;
}

.about-scroll::-webkit-scrollbar-track {
  background: #0a0a0a;
}

.about-scroll::-webkit-scrollbar-thumb {
  background: #39ff14;
}

/* Marquee banner */
.marquee-banner {
  width: 100%;
  margin-bottom: 20px;
}

/* Blog posts container */
.blog-posts {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px; /* space between posts */
}

/* Individual post box */
.blog-post {
  background-color: #222;
  border: 2px inset #D2042D;
  padding: 15px;
  box-shadow: 0 0 10px #ff00ff inset;
  border-radius: 8px;
  color: #ffccff;
  text-align: center;
}

/* Post images inside blog posts */
.blog-post img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 0 5px #ff00ff;
}

/* Right/main content area */
.container {
  flex: 2; /* same width as left section */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 2px;
  gap: 0px;
  background-color: #111;
  border: 5px double red;
  box-shadow: 0 0 15px #D2042D;
}
.caption {
  font-style: italic;
  font-size: 1.2em;
  color: #ffccff;
  background-color: #222;
  padding: 8px;
  border: 2px inset #D2042D;
  margin-top: 10px;
}
  
.container img {
  max-width: 100%;
  height: auto;
  border: 5px solid #D2042D;
  box-shadow: 0 0 8px #ff00ff;
  border-radius: 8px;}
 
 /* Blog posts container */
.blog-posts {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px; /* space between posts */
}

/* Individual post box */
.blog-post {
  background-color: #222;
  border: 2px inset #D2042D;
  padding: 15px;
  box-shadow: 0 0 10px #ff00ff inset;
  border-radius: 8px;
  color: #ffccff;
  text-align: center;
}

/* Post images inside blog posts */
.blog-post img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 0 5px #ff00ff;
}
/* Marquee banner */
.marquee-banner {
  width: 100%;
  margin-bottom: 20px;
}
  
  /* Art Section */
.art-section {
  width: 100%;
  max-height: 500px;   /* adjust height if needed */
  overflow: hidden;
  margin-top: 20px;
}

.art-scroll {
  height: 100%;
  overflow-y: scroll;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  padding-right: 10px;
}

.art-scroll img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

