html, body {
    margin: 0;
    padding: 0;
    height: 100vh; /* Ensures the background fills the screen */
}

body {
    background: url('https://vistaos404.github.io/docs/assets/bg_p2.png') no-repeat center center fixed;
    background-size: cover;
}
.logo {
    position: absolute;
    top: 120px; /* Pushes it lower */
    left: 50%;
    transform: translateX(-50%);
    max-width: 250px;
    height: auto;
}

.logo {
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.5));
}
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

.about-page .logo {
    position: absolute;
    top: -30px; /* Move it even higher */
    left: 50%;
    transform: translateX(-50%);
    max-width: 250px; /* Adjust size if needed */
    height: auto;
    z-index: 10;
}


.about-page main {
    margin-top: 180px; /* Increase space to avoid overlap */
}


.about-page main {
    position: relative;
    margin: 135px auto; /* Pushes the content box down */
    padding: 30px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 15px;
    width: 80%;
    max-width: 800px;
    text-align: center;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}





/* Character Section */
.character {
    display: flex;
    flex-direction: column; /* Stacks image & text vertically */
    align-items: center; /* Centers content horizontally */
    justify-content: center;
    text-align: center;
    gap: 10px; /* Adds space between image and text */
    margin-top: 20px;
}

.character img {
    width: 150px; /* Adjust size */
    height: auto;
    border-radius: 15px;
}


.character img {
    width: 250px;
    height: auto;
    border-radius: 10px;
}


.character p {
    text-align: center;
}

/* Back Button */
.back-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 15px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.back-button:hover {
    background: #555;
}
.main-header {
    background: rgba(0, 0, 0, 0.8); /* Semi-transparent dark background */
    color: white;
    text-align: center;
    padding: 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.main-header h1 {
    font-size: 30px;
    margin: 0;
    padding-bottom: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

nav ul li a:hover {
    color: cyan;
}


.characters-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 120px 20px 40px; /* Push content down */
}


.character {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 20px;
    margin: 20px;
    border-radius: 15px;
    width: 80%;
    max-width: 600px;
    text-align: center;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

.character img {
    width: 300px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 10px;
}

.contact-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 120px 20px 40px;
    text-align: center;
    color: white;
}

.contact-page form {
    background: rgba(255, 255, 255, 0.1); /* Softer transparency */
    backdrop-filter: blur(10px); /* Glass effect */
    padding: 25px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.2);
}

.contact-page label {
    display: block;
    font-size: 16px;
    margin-top: 10px;
}

.contact-page input,
.contact-page textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: none;
}

.contact-page button {
    margin-top: 15px;
    padding: 10px 15px;
    border: none;
    background: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-page button:hover {
    background: #0056b3;
}
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 5px;
    transition: 0.3s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.4);
}

.footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}



/* Default cursor for the entire page */
body {
    cursor: url('docs/assets/mouse_main.png') 16 16, auto;
}

/* Custom pointer for links and buttons */
a, button, input[type="submit"], input[type="button"] {
    cursor: url('docs/assets/mouse_hover.png') 16 16, pointer;
}



.chapter-list {
    text-align: center;
    padding: 100px 20px;
}

.chapter-list ul {
    list-style: none;
    padding: 0;
}

.chapter-list ul li {
    margin: 10px 0;
}

.chapter-list ul li a {
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 20px;
    border-radius: 8px;
    margin: 10px auto;  /* Adds spacing between buttons */
    width: 200px;       /* Keeps button width consistent */
    transition: 0.3s;
}

.chapter-list ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chapter-content {
    text-align: center;
    padding: 100px 20px;
}

.chapter-content img {
    width: 80%;
    max-width: 800px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

.next-button {
    display: block;
    margin: 20px auto;
    text-decoration: none;
    font-size: 18px;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 15px;
    border-radius: 5px;
    transition: 0.3s;
}

.next-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

nav ul li a {
    color: white !important;  /* Make text white */
    font-weight: bold;        /* Make text bolder */
    text-decoration: none;    /* Remove underline */
    font-size: 18px;
}

nav ul li a:hover {
    color: cyan !important;   /* Adds a hover effect */
}
.comic-image {
    max-width: 90%;   /* Limits image width to 90% of the screen */
    height: auto;     /* Maintains aspect ratio */
    display: block;   /* Prevents inline spacing issues */
    margin: 20px auto; /* Centers the image with spacing */
    border-radius: 8px; /* (Optional) Adds rounded corners */
}
@media screen and (max-width: 768px) {
    .comic-image {
        max-width: 100%; /* Makes the image fully fit on smaller screens */
        margin: 10px auto;
    }
}
.comic-image {
    max-height: 700px; /* Adjust to preferred height */
    object-fit: contain; /* Ensures full image is visible without stretching */
}
.comic-image {
    display: block;
    max-width: 90%;
    height: auto;
    margin: 0 auto;  /* Centers the image */
    padding: 0 !important;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
}


.content-container {
    display: flex;
    flex-direction: column; /* Stacks items vertically */
    align-items: center; /* Centers them */
    justify-content: center; /* Centers the content */
    gap: 20px; /* Adds spacing between the logo and intro */
    padding-top: 50px; /* Moves everything down slightly */
}

.logo {
    display: block;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative; /* Ensures it's in normal document flow */
    z-index: 10;
}

/* Ensure logo and intro stack correctly */
.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px; /* Minimal spacing */
    padding-top: 10px;
}


.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    position: absolute;
    left: 50%;
    top: 30%; /* Push it down slightly */
    transform: translate(-50%, -50%);
    text-align: center;
}




.logo img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}


/* Introduction Box */
.intro {
    position: absolute;
    top: 65%; /* Adjust this value to move it closer to the logo */
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8); /* Keep the semi-transparent background */
    padding: 20px;
    border-radius: 10px;
    width: 60%;
    text-align: center;
}

.intro p {
    color: #ffffff !important; /* Ensure the text is white */
    font-size: 18px;
    font-weight: bold;
}

.about-author {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
    margin: 40px auto;
    color: white;
}

.author-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.author-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.author-text {
    max-width: 500px;
}

.social-links a {
    color: #00c3ff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ff00ff;
}

.author-img:hover {
    box-shadow: 0 0 20px rgba(0, 195, 255, 0.8);
}

