/* Inspiration + CSS "intro" credits: bones.sesh.team */
/* Sources used list:
    - spinbot.pw (video tag, #center),
    - http://static.tumblr.com/zlim8hm/29yn6561z/force-cursor.png (cursor),
    - https://github.com/tsenart/sight/blob/master/fonts/Consolas.ttf (font),
    - https://emerald.gg/images/dot.png (2x2 dot, inspiration and pattern CSS)
*/

html {
  cursor: url('../others/cursor.png'), default;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a {
  color: #e4e3e3;
  text-decoration: none;
}

body,
input {
  color: #e4e3e3;
  background-color: #000;
}

@font-face {
  font-family: courier_regular;
  src: url('../others/Consolas.ttf');
}

* {
  padding: 0;
  margin: 0;
  font-family: consolas, sans-serif;
}

body {
  overflow-x: hidden;
}

input {
  outline: 0;
  border: none;
}

td {
  padding: 3px;
}

hr {
  margin-top: 15px;
  margin-bottom: 15px;
  border-style: dashed;
}

pre {
  font-size: 1.15em;
  position: relative;
  bottom: 50px; /* Moves the entire text block up */
}


.box,
body,
input {
  background-color: #000;
}

.box {
  padding: 15px;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.top-right {
  position: absolute;
  top: 0;
  right: 5px;
}

.container {
  text-align: center;
  position: fixed; /* Ensures it's always centered */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}


#brand {
  margin-left: 0.65pc;
}

.container {
  text-align: center;
  position: fixed; /* Ensures it's always centered */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}


#marquee {
  width: 420px;
  overflow: hidden;
  display: inline-block;
  margin-bottom: -4.5px;
  font-size: 15px;
  position: relative;
  bottom: 50px; /* Moves the marquee UP by 50px */
}


.marquee-left {
  position: absolute;
  bottom: 50px;
  left: calc(50% - 230px); /* Positions | to the left edge of marquee */
  font-size: 1.15em;
}

.marquee-right {
  position: absolute;
  bottom: 50px;
  right: calc(50% - 230px); /* Positions | to the right edge of marquee */
  font-size: 1.15em;
}



.emoticon {
  vertical-align: middle;
}

.main {
  overflow: hidden;
}

.background {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -3;
}

#pattern {
  background: transparent url('../others/dot.png') repeat 0 0;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  z-index: -1;
  opacity: 1;
}

#pattern,
#background {
  position: absolute;
  width: 100%;
  height: 100%;
}

#background {
  z-index: -2;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw; /* Makes sure it fills the screen */
  height: 100vh;
  object-fit: cover; /* Keeps proper scaling without overzooming */
  transform: translate(-50%, -50%);
  overflow: hidden;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}




.footer {
  position: absolute;
  bottom: 0;
  right: 5px;
}

.trollface-light {
  -webkit-filter: invert(100%);
  -moz-filter: invert(100%);
  -ms-filter: invert(100%);
}

::-webkit-scrollbar {
  width: 0;
}



.container {
  text-align: center;
  position: fixed; /* Ensures it's always centered */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}


.brand-header {
    font-size: 3rem;
    font-weight: bold;
}

.subheadings {
    margin-top: 20px;
}

.subheading {
    display: inline-block;
    font-size: 1.5rem;
    margin: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .subheading:hover {
        color: #880808; /* Your theme color */
    }

.section {
    text-align: center;
    margin-top: 30px;
}


.container {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.brand-header {
  font-size: 3rem;
  font-weight: bold;
}

.subheadings {
  margin-top: 10px;
}

.subheading {
  display: inline-block;
  font-size: 1.5rem;
  margin: 10px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.subheading:hover {
  color: #880808; /* Your theme color */
}

.section {
  display: none;
  text-align: center;
  margin-top: 30px;
}


/* Background Blur Effect */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
}

/* Popup Box */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  background: rgba(20, 20, 20, 0.9);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.2);
  z-index: 1100;
  display: none;
}

.popup-header {
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.popup-header h2 {
  font-size: 1.8rem;
  margin: 0 auto; /* Centers text horizontally */
}

/* Ensure close button stays in top-right */
.close-popup {
  position: absolute;
  right: 15px;
  top: 5px;
  font-size: 2rem;
  cursor: pointer;
}


.close-popup:hover {
  color: #ff4d4d;
}

/* Popup Content */
.popup-content ul {
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers both bullets and text */
  justify-content: center;
  text-align: center;
  padding: 0;
}

.popup-content li {
  margin-bottom: 5px;
}




