/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif; /* Simple and formal font */
    background-color: black;
}

/* Customize scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: black; /* Background color */
}

::-webkit-scrollbar-thumb {
    background: #ff0000; /* Red color for scrollbar thumb */
    border: 2px solid black;
    border-radius: 8px;
}

.music-bar {
    text-align: center; /* Center the content horizontally */
}


/* Matrix background */
.matrix-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black url('matrix_background.gif') center/cover;
    z-index: -1; /* Place behind other content */
}

/* Story container */
.container {
    width: 100%;
    max-width: 800px; /* Set a maximum width for the content */
    margin: 0 auto;
    padding: 20px;
    overflow-y: auto; /* Enable vertical scrolling if needed */
    height: 100vh; /* Ensure full height for smaller screens */
}

/* Story box */
.story-box {
    background-color: #330000; /* Dark red color for the story box */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5); /* Red shadow */
    border: 5px solid #ff0000; /* Red border */
    margin-bottom: 20px;
}

/* Story title */
.story-title {
    display: block;
    margin: 0 auto 20px;
    max-width: 100%; /* Ensure the title image doesn't exceed container width */
    width: 100%; /* Ensure the title image fits within the container */
    height: auto; /* Allow the image to scale proportionally */
}

/* Story content */
.story-content {
    color: #ffcccc; /* Light red color for story text */
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Story author */
.story-author {
    color: #ff6666; /* Light red color for author */
    font-size: 14px;
    text-align: right;
}

/* More Stories button */
#more-stories-btn {
    background-color: #330000; /* Dark red color for the button */
    color: #ff0000; /* Red color for text */
    border: 2px solid #ff0000; /* Red border */
    border-radius: 5px;
    padding: 10px 20px;
    font-family: 'Roboto', sans-serif; /* Simple and formal font */
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

#more-stories-btn:hover {
    background-color: #ff0000; /* Red color on hover */
    color: #330000; /* Dark red color for text on hover */
}
