@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #1c1c1e 0%, #24242a 100%);
    color: #f0e7ff;
    opacity: 1;
    transition: opacity 0.5s ease;
}

body.fade-out {
    opacity: 0;
}

header {
    background: linear-gradient(90deg, #7b10cb, #ae4afb); box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    padding: 1rem 2rem;
    justify-content: space-between;
    display: flex;
    align-items: center;
}

header img {
    max-width: 60px;
    margin-right: 1rem;
}
header h1 {
    margin: 0;
    font-size: 2rem;
    color: #ffffff;
}

header .tagline {
    font-size: 1.2rem;
    color: #ffffff;
}

main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1rem;
}

h2 {
    color: #ae4afb;
    border-bottom: 2px solid #7b10cb;
    padding-bottom: 0.5rem;
    margin-top: 2rem;
}

a.button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-image: linear-gradient(90deg, #7b10cb, #ae4afb);
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
    border: none;
}

a.button:hover {
    background-image: linear-gradient(90deg, #ae4afb, #c97cfd);
}

ul, ol {
    list-style: none;
    padding-left: 0;
}

ul li, ol li {
    margin: 0.5rem 0 1rem 0;
    padding-left: 1.5rem;
    position: relative;
}

ul li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #ae4afb;
}

.timestamp {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 1rem;
}

.readme-content,
.version-block,
.issue-description,
pre,
code,
blockquote {
    background-color: #253647;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    color: #dab3fa;
}

.readme-content h1,
.readme-content h2,
.readme-content h3,
.readme-content h4 {
    color: #ae4afb;
}

.readme-content a {
    color: #dab3fa;
    text-decoration: underline;
}

.readme-content code {
    background-color: #2d3e50;
    padding: 2px 4px;
    border-radius: 4px;
    font-family: monospace;
}

.readme-content blockquote {
    border-left: 4px solid #7b10cb;
    padding-left: 1rem;
    color: #aaa;
    margin: 1rem 0;
}

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

.screenshot-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
}

.screenshot-gallery button {
    background: none;
    border: none;
    color: #ae4afb;
    font-size: 2rem;
    cursor: pointer;
    padding: 0 1rem;
}
.screenshot-gallery img {
    max-width: 80%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}
a {
    color: #ae4afb;
    text-decoration: underline;
    transition: color 0.3s;
}

a:hover {
    color: #dab3fa;
}

a:visited {
    color: #ae4afb; 
}

.site-footer {
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
    margin: 2rem 0;
}
