* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: rgb(71, 70, 107);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.cta-label {
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 16px 32px;
    background-color: #ff6b35;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.cta-btn:hover {
    background-color: #ff8555;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

toplinks{
	display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
toplinks span {
	display: flex;
	gap: 10px;
}
.toplinks-games{
	text-align: right;
	align-items: flex-end;
}
.toplinks-button{
    filter: invert(0%)
}

.toplinks-button:hover {
    filter: invert(100%)
}

header {
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #222;
    margin: 0;
    width: 100%;
}

header img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

.comic-viewer {
    background: white;
	border-style: solid;
    padding: 30px;
}

.comic-container {
    text-align: center;
    margin-bottom: 30px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#comic-image {
    max-width: 100%;
    height: auto;
}

.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
	gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
}

.nav-btn {
    padding: 12px 24px;
    font-size: 1rem;
    background-color: #ffffff;
    color: black;
	border-style: solid;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.nav-btn:hover:not(:disabled) {
    background-color: #000000;
	color: white;
}

.nav-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.page-indicator {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.blog-entry {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
}

.blog-entry h1,
.blog-entry h2,
.blog-entry h3,
.blog-entry h4,
.blog-entry h5,
.blog-entry h6 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 600;
    line-height: 1.25;
}

.blog-entry h1 {
    font-size: 2em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    padding-bottom: 0.3em;
}

.blog-entry h2 {
    font-size: 1.5em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    padding-bottom: 0.3em;
}

.blog-entry h3 {
    font-size: 1.25em;
}

.blog-entry h4 {
    font-size: 1em;
}

.blog-entry h5 {
    font-size: 0.875em;
}

.blog-entry h6 {
    font-size: 0.85em;
    color: #666;
}

.blog-entry p {
    margin-bottom: 1em;
    line-height: 1.6;
}

.blog-entry ul,
.blog-entry ol {
    margin-bottom: 1em;
    padding-left: 2em;
}

.blog-entry li {
    margin-bottom: 0.25em;
}

.blog-entry ul {
    list-style-type: disc;
}

.blog-entry ol {
    list-style-type: decimal;
}

.blog-entry a {
    color: #007bff;
    text-decoration: none;
}

.blog-entry a:hover {
    text-decoration: underline;
}

.blog-entry blockquote {
    margin: 1em 0;
    padding-left: 1em;
    border-left: 4px solid #ddd;
    color: #666;
    font-style: italic;
}

.blog-entry code {
    background-color: #f5f5f5;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9em;
}

.blog-entry pre {
    background-color: #f5f5f5;
    padding: 1em;
    border-radius: 4px;
    overflow-x: auto;
    margin-bottom: 1em;
}

.blog-entry pre code {
    background-color: transparent;
    padding: 0;
}

.blog-entry hr {
    margin: 1.5em 0;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
}

.blog-entry img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1em 0;
}

.blog-entry strong {
    font-weight: 600;
}

.blog-entry em {
    font-style: italic;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-top: 0;
    font-size: 0.85rem;
    color: #999;
    opacity: 0.7;
    background-color: #f5f5f5;
    width: 100%;
}

.footer-credits {
    text-align: left;
}

.footer-credits a {
    color: #999;
    text-decoration: none;
    opacity: 0.7;
}

.footer-credits a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-rss-link {
    color: #999;
    opacity: 0.7;
}

.footer-rss-link a {
    color: #999;
    text-decoration: none;
}

.footer-rss-link a:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .comic-viewer {
        padding: 15px;
    }
    
    .navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-btn {
        width: 100%;
    }
    
    .cta-section {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        gap: 15px;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    header {
        padding: 0;
    }
    
    .blog-entry {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .blog-entry h1 {
        font-size: 1.75em;
    }
    
    .blog-entry h2 {
        font-size: 1.35em;
    }
    
    footer {
        font-size: 0.75rem;
        padding: 15px 10px;
    }
}

