body {
    font-family: 'Segoe UI', sans-serif;
    max-width: 800px;
    margin: auto;
    padding: 2rem;
    line-height: 1.6;
    background-color: #111;
    color: #eee;
    
  }
  
  header {
    border-bottom: 1px solid #444;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  nav a {
    margin-right: 15px;
    color: #66f;
    text-decoration: none;
  }
  
  nav a:hover {
    text-decoration: underline;
  }

 /* Styling for Docs below. */

  a {
    display: block;
    margin: 1rem 0;
    color: #66f;
    font-size: 1.1rem;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }

  /* Image position */

main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  flex-wrap: wrap; /* allows stacking on small screens */
}

article {
  flex: 1 1 60%;
}

.girlimg-container {
  flex: 1 1 30%;
  display: flex;
  justify-content: flex-end;
}

.imagegirl {
  width: 200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 20px 5px rgba(0, 4, 255, 0.7); /* cyan glow */
  border-radius: 8px; /* optional for smooth corners */
  animation: girlglowPulse 2s ease-in-out infinite alternate;
}


@keyframes girlglowPulse {
  from {
    box-shadow: 0 0 10px 3px rgba(102, 102, 255, 0.7);
  }
  to {
    box-shadow: 0 0 25px 10px rgba(102, 102, 255, 0.9);
  }
}

/* Bsod Report Style */
body.bsod_report_page {
 /* zoom: 1.3;*/ /* scale page 120% (works in Chrome, Edge, Safari) */

}

.large-iframe {
  width: 120%;
  height: 90vh;
  border: none;
  margin-top: 1rem;
  margin-left: -20%; /* shifts iframe left */
}

.bsod_report_page .bsodimg-container {
  float: right;
  margin-left: 20px;
  max-width: 200px; /* optional to limit size */
}

.bsod_report_page .bsodimagegirl {
  width: 125%;
  height: auto;
  display: block;
  margin-top: 1rem;
  /* Glow effect */
  box-shadow: 0 0 20px 5px rgba(0, 4, 255, 0.7); /* cyan glow */
  border-radius: 8px; /* optional for smooth corners */
  animation: glowPulse 2s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from {
    box-shadow: 0 0 10px 3px rgba(0, 4, 255, 0.7);
  }
  to {
    box-shadow: 0 0 25px 10px rgba(0, 4, 255, 0.9);
  }
}


@media (max-width: 768px) {
  body.bsod_report_page {
    transform: scale(0.65);        /* scales page to 65% */
    transform-origin: top left;    /* keep it aligned top-left */
  }
}

.code-editor {
  background: #1e1e1e;
  color: #d4d4d4;
  border-radius: 8px;
  overflow: hidden;
  font-family: 'Courier New', monospace;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  margin: 2rem 0;
}

.code-header {
  background: #2d2d2d;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.code-header .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.code-header .red { background: #ff5f56; }
.code-header .yellow { background: #ffbd2e; }
.code-header .green { background: #27c93f; }

.code-editor pre {
  margin: 0;
  padding: 1rem;
  overflow-x: auto;
}
