/* Base Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #2b2e4a, #904e95);
    color: #f0f0f0;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 600px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    position: relative;
}

/* Navigation Buttons */
.nav-button {
    text-align: right;
    margin-bottom: 1rem;
}

.footer-button {
    text-align: center;
    margin-top: 2rem;
}

.btn {
    background-color: #a8d0e6;
    color: #000;
    text-decoration: none;
    padding: 0.5em 1em;
    border-radius: 5px;
    margin: 0 0.25em;
    display: inline-block;
    font-size: 0.9rem;
}

.btn:hover {
    opacity: 0.8;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.title {
    font-size: 2rem;
    margin: 0;
}

.rating {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.rating i {
    color: gold;
    margin-right: 0.25rem;
}

.score {
    margin-left: 0.5rem;
    font-size: 1rem;
    color: #f0f0f0;
}

/* Meta Info */
.meta {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

/* Section Headings */
.description h2,
.files h2,
.flag-format h2,
.content h2 {
    margin-top: 0;
    border-bottom: 2px solid #555;
    padding-bottom: 0.5rem;
    font-size: 1.5rem;
}

/* Content Paragraphs */
.description p,
.flag-format p,
.files ul,
.content p {
    margin: 1rem 0;
}

/* Files List */
.files ul {
    list-style: disc inside;
}

.files a {
    color: #a8d0e6;
    text-decoration: none;
}

.files a:hover {
    text-decoration: underline;
}

.thoughts {
    font-size: 0.8rem;
    color: #bbbbbb;
    text-align: center;
    margin-top: 3rem;
    opacity: 0.6;
    font-style: italic;
    max-width: 100%;
    word-wrap: break-word;
}