/* =============================================================================
   VoidCrawler Default Theme CSS (vpidcrawler.css)
   =============================================================================
   Author:        K0NxT3D
   Theme Name:    VoidCrawler - Default CSS
   File Name:     voidcrawler.css
   Version:       1.0.0
*/

body {
    font-family: 'Oswald', sans-serif;
    background-color: #0a0a0a;
    color: #b00;
    font-size: 20px;
    letter-spacing: 1px;
    }

header {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    padding: 12px 0;
    border-bottom: 1px solid #5a0000;
    margin-bottom: 25px;
    text-transform: uppercase;
    }

header h1 {
    color: #b00;
    font-weight: 900;
    margin: 0;
    text-shadow: 0 0 10px #300;
    }

pre {
    color: #ff0033;
    margin-bottom:0;
    white-space: pre-wrap !important;
    word-break: break-word !important;
    }

ul.list-unstyled, ol {
    padding-left: 1rem;
    }

li {
    margin-bottom: 0.25rem;
    }

.folder {
    font-weight: bold;
    color: #ff2200;
    text-decoration: none;
    cursor: pointer;
    word-wrap: break-word;
    }

.folder:hover {
    color: #b00;
    text-shadow: 0 0 6px #900;
    }

.file-link a {
    color: #bbb;
    text-decoration: none;
    word-wrap: break-word;
    }
.file-link a:hover {
    color: #ff2200;
    }

.top-level-files,
.sub-directories {
    background-color: #111;
    border: 1px solid #550000;
    padding: 12px;
    border-radius: 6px;
    font-family: monospace;
    margin-bottom: 20px;
    box-shadow: 0 0 12px #200 inset;
    }

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 15px;
    }

footer {
    text-align: center;
    margin-top: 40px;
    }

footer a {
    color: #550000;
    text-decoration: none;
    }

footer a:hover {
    color: #990000;
    }
    
/* ===============================
   INDUSTRIAL SYSTEM WRAPPER
   =============================== */

.system-wrapper {
  position: relative;
  min-height: 100vh;
  padding: 40px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(153,0,0,0.08), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(153,0,0,0.05), transparent 50%),
    linear-gradient(180deg, #030507 0%, #061018 100%);
}

/* Outer chassis frame */
.system-wrapper::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(153,0,0,0.4);
  pointer-events: none;
}

/* Subtle mechanical grid */
.system-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}    

/* ===============================
   HERO BILLBOARD (Integrated)
   =============================== */

.hero {
  position: relative;
  width: 100%;
  height: 320px;
  background-image: url('vc_billboard.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3),
    rgba(0,0,0,0.4) 40%,
    rgba(6,16,24,0.95)
  );
}

.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 42px;
  color: #990000;
  -webkit-text-stroke: 1px #ffffff;
  margin: 0;
}

.hero-subtitle {
  margin-top: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  color: #cccccc;
  letter-spacing: 1px;
}

/* ===============================
   MOBILE WRAPPER FIX
   =============================== */

@media (max-width: 768px) {

  .system-wrapper {
    padding: 20px 0;
  }

  .system-wrapper::before {
    inset: 10px;
  }

  .container {
    padding: 20px;
  }

  .hero {
    height: 220px;
    margin-bottom: 25px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

}