
body{
	max-width: 800px;
	min-width: 800px;
	margin: auto;
	background-color: #0A0A0A;
	color: #80FF80;
	font-family: 'Courier New', Courier, monospace;
	position: relative;
}
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		linear-gradient(90deg, rgba(0, 255, 0, 0.05) 1px, transparent 1px) 0 0 / 20px 20px,
		linear-gradient(0deg, rgba(0, 255, 0, 0.05) 1px, transparent 1px) 0 0 / 20px 20px;
	pointer-events: none;
	z-index: -1;
}

.kitty-cover {
    width: 90%;
    margin-left: 40px;
    margin-top: 10px;
    outline: 3px solid #00FF00;
}

h1, h2, h3{
	margin: 1px;
}
h1{
	color: #2C4A24;
	font-size: 80px;
	margin-top: 0px;
	padding: 0px;
	font-family: 'Pacifico', cursive;
	text-shadow: 
		2px 2px 0px #00FF00,
		4px 4px 0px rgba(0, 255, 0, 0.3);
	position: relative;

}
h2{
	color: #00FF00;
	font-size: 40px;
	font-style: italic;
	margin-bottom: 0px;
	padding: 0px;
	text-shadow: 1px 1px 2px rgba(90, 140, 74, 0.2);
	border-bottom: 2px dashed #00FF00;
	padding-bottom: 5px;
}
h3{
	background: linear-gradient(90deg, #001100, #003300);
	color: #00FF00;
	padding: 8px 0px 8px 25px;
	border-radius: 8px;
	font-weight: bold;
	border: 1px solid #00FF00;
	box-shadow: 
		0 2px 8px rgba(42, 87, 30, 0.3),
		0 0 10px rgba(0, 255, 0, 0.2);
	position: relative;
	overflow: hidden;
}
h3::before {
	content: '>';
	position: absolute;
	left: 10px;
	color: #00FF00;
	font-weight: bold;
	text-shadow: 0 0 5px #00FF00;
}
h4{
	color: #80FF80;
	margin: 0px;
	font-size: 14px;
	text-align: left;
}
p{
	color: #80FF80;
	font-size: 14px;
	padding: 0px 0px 0px 4px;
	margin: 5px 0px;
	line-height: 1.4;
}
#content{
  background-color: #c7ffbf;
  background-image: repeating-conic-gradient(#ecffe9 0% 25%, #c7ffbf 0% 50%);
  background-size: 80px 80px;
	background-position: center center;
	min-height: fit-content;
	min-width: fit-content;
	border-radius: 12px;
	padding: 10px;
	border: 2px solid #00FF00;
	box-shadow: 
		0 4px 15px rgba(42, 87, 30, 0.3),
		inset 0 0 30px rgba(0, 255, 0, 0.1);
	position: relative;
}
#content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, #00FF00, transparent);
	animation: scanline 3s linear infinite;
	opacity: 0.5;
}
@keyframes scanline {
	0% { top: 0; }
	100% { top: 100%; }
}

.nav{
	background: rgba(0, 30, 0, 0.9);
	border-radius: 10px;
	border: 2px solid #00FF00;
	height: 320px;
	width: 156px;
	margin: 10px;
	margin-left: 3px;
	padding: 12px 8px;
	box-shadow: 
		0 4px 15px rgba(42, 87, 30, 0.3),
		0 0 15px rgba(0, 255, 0, 0.2);
	min-height: fit-content;
	min-width: fit-content;
	position: relative;
	z-index: 2;
	backdrop-filter: blur(2px);
}

.nav::after {
	content: 'NAV_MEOW';
	position: absolute;
	top: -8px;
	left: 10px;
	background: #001100;
	color: #00FF00;
	font-size: 9px;
	padding: 2px 6px;
	border-radius: 4px;
	font-family: 'Courier New', Courier, monospace;
	border: 1px solid #00FF00;
}

.nav a {
	text-decoration: none;
}

.nav p{
	margin: 5px 0px;
	color: #80FF80;
	font-size: 14px;
	padding: 0px 0px 0px 4px;
	line-height: 1.4;
}

.main {
	margin: auto;
	display: grid;
	grid-template-columns: 170px 600px;
	grid-template-rows: 150px auto; 
	gap: 0px 20px;
	grid-template-areas:
		"nav info-box"
		". info-box2";
	justify-self: center;
	align-self: center;
	min-height: fit-content;
	min-width: fit-content;
}

.info-box, .info-box2, .box, .tabcontent{
	background: rgba(0, 30, 0, 0.9);
	border-radius: 10px;
	border: 2px solid #00FF00;
	box-shadow: 
		0 4px 15px rgba(42, 87, 30, 0.3),
		0 0 15px rgba(0, 255, 0, 0.1);
	padding: 15px;
	backdrop-filter: blur(2px);
	position: relative;
}

.info-box::before, .info-box2::before {
	content: 'TERMINAL';
	position: absolute;
	top: -8px;
	left: 15px;
	background: #001100;
	color: #00FF00;
	font-size: 9px;
	padding: 2px 6px;
	border-radius: 4px;
	font-family: 'Courier New', Courier, monospace;
	border: 1px solid #00FF00;
}

.info-box{
	grid-area: info-box;
	height: 100px;
	margin: 10px;
  margin-right: 3px;
}

.info-box2{
	grid-area: info-box2;
	height: 164.5px;
	margin: 10px;
  margin-right: 3px;
}

.about-layout {
    margin: auto;
    display: grid;
    grid-template-columns: 170px 600px;
    grid-template-rows: auto; 
    gap: 0px 20px;
    grid-template-areas:
        "nav about-content";
    justify-self: center;
    align-self: center;
    min-height: fit-content;
    min-width: fit-content;
}

.about-layout .nav {
    grid-area: nav;
}

.about-content {
    grid-area: about-content;
}

.about-section {
    background: rgba(0, 30, 0, 0.9);
    border-radius: 10px;
    border: 2px solid #00FF00;
    box-shadow: 
        0 4px 15px rgba(42, 87, 30, 0.3),
        0 0 15px rgba(0, 255, 0, 0.1);
    padding: 20px;
    backdrop-filter: blur(2px);
    position: relative;
    min-height: 650px;
    margin: 10px;
    margin-right: 3px;
}

.about-section::before {
    content: 'ABOUT_TERMINAL';
    position: absolute;
    top: -8px;
    left: 15px;
    background: #001100;
    color: #00FF00;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    border: 1px solid #00FF00;
}

.aboutmeow {
    margin: 1.5em auto;
    outline: 1.5px solid #00FF00;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(42, 87, 30, 0.2);
    border-collapse: collapse;
}

.aboutmeow th {
    font-size: 1.1em;
    border-right: 1px dashed #00FF00;
    background: #001100;
    color: #00FF00;
    text-align: left;
    padding: 0.75em 1em;
    width: 30%;
    font-weight: bold;
}

.aboutmeow th, .aboutmeow td {
    padding: 0.75em 1em;
    border-bottom: 1px dashed #00FF00;
}

.aboutmeow td {
    background-color: rgba(0, 20, 0, 0.8);
    color: #80FF80;
    line-height: 1.4;
}

.sleep-icons {
    margin-top: 20px;
    text-align: center;
}

.sleep-icons img {
    margin: 2px;
}

footer{
	background: rgba(0, 30, 0, 0.9);
	border-radius: 10px;
	border: 2px solid #00FF00;
	width: 750px;
	height: 30px;
	vertical-align: middle;
	text-align: center;
	justify-content:center;
	margin: auto;
	margin-top: 20px;
	padding: 0px;
	box-shadow: 
		0 4px 15px rgba(42, 87, 30, 0.3),
		0 0 10px rgba(0, 255, 0, 0.2);
	backdrop-filter: blur(2px);
	position: relative;
}

footer::before {
	content: 'SYSTEM_STATUS: ^._.^';
	position: absolute;
	top: -8px;
	left: 15px;
	background: #001100;
	color: #00FF00;
	font-size: 9px;
	padding: 2px 6px;
	border-radius: 4px;
	font-family: 'Courier New', Courier, monospace;
	border: 1px solid #00FF00;
}

footer p{
	font-size: 10px;
	color: #00FF00;
}

.but1 button, .but2 button {
	width: 150px;
	text-align: left;
	border: none;
	background: none;
	text-decoration: none;
	color: #80FF80;
	cursor: pointer;
	margin: 0;
	margin-top: 8px;
	padding: 8px 12px 8px 20px;
	font-family: 'Courier New', Courier, monospace;
	font-size: 16px;
	border-radius: 6px;
	transition: all 0.3s ease;
	border-left: 3px solid #00FF00;
	position: relative;
}
.but1 button:hover, .but2 button:hover {
	background-color: rgba(0, 255, 0, 0.15);
	transform: translateX(5px);
	color: #00FF00;
	box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}
.but1 button::before, .but2 button::before {
	content: '>';
	position: absolute;
	left: 8px;
	color: #00FF00;
	font-weight: bold;
	opacity: 0;
	transition: opacity 0.3s ease;
	text-shadow: 0 0 3px #00FF00;
}
.but1 button:hover::before, .but2 button:hover::before {
	opacity: 1;
}
.but1 button:hover span {
	display: none
}
.but1 button:hover:before {
	content: "> HOME_ACTIVE";
	font-size: 11px;
}
.but1 span{
	padding: 0px 0px 0px 4px;
}

.box{
	height: 650px;
	margin: 10px;
}

table{
	display: table;
	border-collapse: separate;
	box-sizing: border-box;
	text-indent: initial;
	border-spacing: 2px;
}
tbody {
	display: table-row-group;
	vertical-align: middle;
}
tr {
	display: table-row;
	vertical-align: inherit;
}

.tab {
	overflow: hidden;
	border: 2px solid #00FF00;
	background: rgba(0, 30, 0, 0.9);
	border-radius: 10px;
	box-shadow: 
		0 4px 15px rgba(42, 87, 30, 0.3),
		0 0 10px rgba(0, 255, 0, 0.1);
	margin-top: 10px;
	backdrop-filter: blur(2px);
}
.tab button {
	background-color: inherit;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
	font-size: 17px;
	color: #80FF80;
	font-weight: bold;
	position: relative;
	border-radius: 6px;
	margin: 2px;
}
.tab button:hover {
	background: rgba(0, 255, 0, 0.2);
	color: #00FF00;
	box-shadow: 0 0 8px rgba(0, 255, 0, 0.3);
}
.tab button.active {
	background: rgba(0, 255, 0, 0.2);
	color: #00FF00;
	border-bottom: 2px solid #00FF00;
}
.tabcontent{
	margin-top: 10px;
	margin-bottom: 10px;
	height: fit-content;
	overflow: inherit;
}
z {
	position: relative;
	width: 100%;
	height: auto;
}
z img {
	overflow-clip-margin: content-box;
	overflow: clip;
	width:70%;
	padding-left: 100px;
	border-radius: 8px;
	border: 2px solid #00FF00;
	box-shadow: 0 4px 15px rgba(42, 87, 30, 0.3);
	filter: sepia(0.3) hue-rotate(10deg) saturate(1.1);
}
z span {
	display: none;
	position: absolute;
	top: 160;
	bottom: 0;
	left: 0;
	right: 0;
	height: auto;
	transition: .9s ease;
	background: rgba(0, 30, 0, 0.95);
	border-radius: 8px;
	color: #00FF00;
	padding: 20px;
	border: 1px solid #00FF00;
}
z:hover span {
	color: #00FF00;
	display: block;
	position: absolute;
	text-align: center;
	margin-left: 100px;
	padding: 10px;
	text-shadow: 0 0 5px #00FF00;
}
.click-zoom input[type=checkbox] {
	display: none
}
.click-zoom img {
	transition: transform 0.25s ease;
	right:155px;
	cursor: zoom-in;
	z-index: -1;
	border-radius: 8px;
}
.click-zoom input[type=checkbox]:checked~img {
	transform: scale(2);
	cursor: zoom-out;
	z-index: 10;
	position:relative;
	filter: sepia(0.3) hue-rotate(10deg) saturate(1.3) brightness(1.1);
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
}

* {
	scrollbar-width: thin;
	scrollbar-color: #00FF00 #001100;
}
*::-webkit-scrollbar {
	width: 12px;
}
*::-webkit-scrollbar-track {
	background: #001100;
	border-radius: 6px;
	border: 1px solid #00FF00;
}
*::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #00FF00, #80FF80);
	border-radius: 6px;
	border: 2px solid #001100;
}
*::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #00FF00, #5A8C4A);
}

.comm{
	height: 400px;
	overflow-y: scroll;
	overflow-x: hidden;
}
.comments{
	background: rgba(0, 20, 0, 0.8);
	margin: auto;
	width: 626px;
	padding: 12px;
	height: 200px;
	overflow: scroll;
	overflow-x: hidden;
	border-radius: 8px;
	border: 2px solid #00FF00;
	backdrop-filter: blur(2px);
}
.excomment, .excommentno {
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	background: rgba(0, 10, 0, 0.9);
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 255, 0, 0.1);
	display: grid;
	grid-template-columns: 1fr;
	border: 1px solid #00FF00;
}
.excomment {
	grid-template-rows: 25px 50px 1fr;
	grid-template-areas:"username""info""message";
}
.excommentno {
	grid-template-rows: 25px 1fr;
	grid-template-areas:"username""message";
}
.username {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr;
	gap: 0px 0px;
	grid-template-areas:"name date";
	grid-area: username;
	vertical-align: text-top;
	padding-top: 0px;
	padding-left: 5px;
	margin-bottom: 0px;
	color: #00FF00;
	background: linear-gradient(90deg, #001100, #003300);
	border: none;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	font-family: 'Courier New', Courier, monospace;
}
.name{
	grid-area: name;
	font-weight: bold;
}
.name::before {
	content: 'USER_';
	color: #80FF80;
	font-size: 0.7em;
}
.date{
	grid-area: date;
	text-align: right;
	padding-right: 5px;
	font-size: 0.9em;
}
.info {
	grid-area: info;
	vertical-align: top;
	background-color: rgba(0, 15, 0, 0.9);
	border: 1px solid #003300;
	border-bottom: none;
	padding: 5px 0px;
	padding-left: 10px;
	margin-top: 0px;
}
.info p{
	padding-top: 0px;
	padding-left: 5px;
	margin-top: 0px;
	margin-left: 2px;
	border-left: #00FF00 2px solid;
	font-size: 13px;
	color: #80FF80;
}
.message {
	grid-area: message;
	background-color: rgba(0, 15, 0, 0.9);
	border: 1px solid #003300;
	border-bottom-right-radius: 7px;
	border-bottom-left-radius: 7px;
	padding-left: 5px;
	margin-top: 0px;
	font-family: 'Courier New', Courier, monospace;
}
.message p{
	padding: 0px;
	padding-top: 5px;
	padding-bottom: 5px;
	margin: 0px;
	margin-left: 0px;
	font-size: 13px;
	color: #80FF80;
}
.gtablink {
	background: rgba(0, 30, 0, 0.9);
	border-radius: 6px;
	color: #80FF80;
	float: left;
	border: 1px solid #00FF00;
	outline: none;
	cursor: pointer;
	padding: 4px 1px;
	font-size: 17px;
	width: 25px;
	transition: 0.3s;
	text-align:center;
	font-size: 13px;
}
.gtablink:hover {
	background: rgba(0, 255, 0, 0.2);
	color: #00FF00;
	box-shadow: 0 0 8px rgba(0, 255, 0, 0.3);
}
.gtabcontent {
	color: #80FF80;
	display: none;
}

.footie{
	position: absolute;
	z-index: 1;
	top: 1450px;
	display: flex;
	width: fit-content;
}

.footie img{
	image-rendering: pixelated;
	width: 200px;
	padding: 5px;
	margin-top: 76px;    
  margin-left: -255px;
	filter: hue-rotate(10deg) brightness(1.1);
	
}

.header{
	align-items: center;
	display: flex;
	justify-content: center;
	gap: 50px;
	margin-bottom: 5px;
}

.uh-oh{
	background: rgba(0, 30, 0, 0.9);
	border-radius: 10px;
	border: 2px solid #00FF00;
	height: 300px;
	margin: 10px;
	padding: 20px;
	box-shadow: 
		0 4px 15px rgba(42, 87, 30, 0.3),
		0 0 15px rgba(0, 255, 0, 0.2);
	text-align: center;
	backdrop-filter: blur(2px);
	position: relative;
}

.uh-oh::before {
	content: 'ERROR_MEOW';
	position: absolute;
	top: -8px;
	left: 15px;
	background: #001100;
	color: #00FF00;
	font-size: 9px;
	padding: 2px 6px;
	border-radius: 4px;
	font-family: 'Courier New', Courier, monospace;
	border: 1px solid #00FF00;
}

.uh-oh a{
	color: #00FF00;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s ease;
}

.uh-oh a:hover{
	color: #80FF80;
	text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

ul{
	margin-left: -35px;
	margin-top: 10px;
}

li {
	margin: -14px 0px;
	padding: 8px 0 10px 32px;
	list-style: none;
	background-image: url('images/paw.png');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 20px;
	color: #80FF80;
	font-weight: bold;
	transition: all 0.3s ease;
}

li:hover {
	transform: translateX(5px);
	color: #00FF00;
	padding-left: 36px;
}

.guestframe {
    width: 100%;
    height: 100%;
    border: none;
}

body[style*="background-color: #FFF8DD"] {
    background-color: transparent;
    min-width: 0;
}

.comment-box, .comments-box {
    background: rgba(0, 30, 0, 0.9);
    border-radius: 10px;
    border: 2px solid #00FF00;
    box-shadow: 
        0 4px 15px rgba(42, 87, 30, 0.3),
        0 0 15px rgba(0, 255, 0, 0.1);
    padding: 15px;
    backdrop-filter: blur(2px);
    position: relative;
}

.comment-box::before, .comments-box::before {
    content: 'TERMINAL';
    position: absolute;
    top: -8px;
    left: 15px;
    background: #001100;
    color: #00FF00;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    border: 1px solid #00FF00;
}

.comment-box {
    height: 314px;
    margin-top: 10px;
}

.comments-box {
    width: 753px;
    height: 720px;
    margin-top: 224px;    
    margin-left: 3px;
}
.comments-html-body {
    min-width: 0;
    width: 100%;
    margin: 0;
    padding: 0;
}

.comments-html-body .gtabcontent {
    width: 100%;
}

.comments-html-body .excomment,
.comments-html-body .excommentno {
    width: 100%;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
}

.comment-box input[type="text"],
.comment-box input[type="message"] {
    height: 25px;
}

.comment-box input[type="message"] {
    height: 105px;
}
.comments-html-body {
    position: relative;
    min-height: 650px;
}

.gtab-buttons {
    position: absolute;
    bottom: -40px;
    left: 10px;
    z-index: 100;
}

.gtabcontent {
    position: relative;
    min-height: 650px;
}

a:link {
  color: red;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: red;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: blue;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}

/* credits stuff */

.credits-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: auto;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s ease;
    z-index: 1000;
}
.credits-icon:hover {
    opacity: 1;
    transform: scale(1.05);
}

.credits-panel {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 360px;
    max-height: 70vh;
    overflow-y: auto;
    background: rgba(0, 30, 0, 0.95);
    border: 2px solid #00FF00;
    border-radius: 10px;
    padding: 16px;
    font-family: 'Courier New', Courier, monospace;
    color: #80FF80;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(42, 87, 30, 0.5), 0 0 20px rgba(0, 255, 0, 0.2);
    backdrop-filter: blur(2px);
    scrollbar-width: thin;
}
.credits-panel.show {
    display: block;
    animation: glitch 0.3s ease;
}

.close-credits {
    float: right;
    font-size: 28px;
    font-weight: bold;
    color: #00FF00;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 20px;
    background: none;
    border: none;
}
.close-credits:hover {
    color: #80FF80;
    text-shadow: 0 0 5px #0f0;
    transform: scale(1.1);
}

.credits-panel h4 {
    margin: 0 0 12px 0;
    color: #00FF00;
    font-size: 1.2rem;
    border-bottom: 1px solid #00FF00;
    padding-bottom: 4px;
    letter-spacing: 1px;
    font-family: 'Courier New', Courier, monospace;
}

.credits-panel pre {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    white-space: pre-wrap;
    word-wrap: break-word;
    background: rgba(0, 10, 0, 0.8);
    padding: 8px;
    border-left: 3px solid #00FF00;
    margin: 12px 0;
    color: #80FF80;
}

.credits-panel a {
    display: block;
    color: #80FF80;
    text-decoration: none;
    margin: 8px 0;
    font-size: 0.85rem;
    transition: all 0.2s;
    font-family: 'Courier New', Courier, monospace;
}
.credits-panel a:hover {
    color: #00FF00;
    text-shadow: 0 0 3px #0f0;
    padding-left: 4px;
}

.credits-panel::-webkit-scrollbar {
    width: 8px;
}
.credits-panel::-webkit-scrollbar-track {
    background: #001100;
    border-radius: 4px;
    border: 1px solid #00FF00;
}
.credits-panel::-webkit-scrollbar-thumb {
    background: #00FF00;
    border-radius: 4px;
}
.credits-panel::-webkit-scrollbar-thumb:hover {
    background: #80FF80;
}

@keyframes glitch {
    0% { opacity: 0; transform: translateX(5px); }
    20% { opacity: 1; transform: translateX(-3px); }
    40% { opacity: 1; transform: translateX(2px); }
    60% { opacity: 1; transform: translateX(-1px); }
    100% { opacity: 1; transform: translateX(0); }
}
