:root {
--background-color: #000;
--header-bg-color: #000;
--nav-bg-color: #000;
--post-bg-color: #000;
--border-color: #111;
--footer-bg-color: #000; 
--text-color: #AAA;
--link-color: #FFC701;
--link-hover-color: #FFF;
--button-bg-color: #EE0000;
--button-hover-bg-color: #FFF;
--font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}
body {
font-family: var(--font-family);
background: #282828;
background: -webkit-gradient(linear, left top, left bottom, color-stop(3%,#000), color-stop(70%,#282828));
background: -webkit-linear-gradient(top,  #000 3%, #282828 70%);
background:    -moz-linear-gradient(top,  #000 3%, #282828 70%);
background:     -ms-linear-gradient(top,  #000 3%, #282828 70%);
background:      -o-linear-gradient(top,  #000 3%, #282828 70%);
background:         linear-gradient(to bottom, #000 3%, #282828 70%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000', endColorstr='#282828',GradientType=0 );
background-attachment: fixed;
margin: 0;
padding: 0;
line-height: 1.6;
color: var(--text-color);
}
header { color: var(--text-color);
padding: 20px 0;
text-align: center;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
header h1 {
margin: 0;
}
header h1 a {
color: #fff;
text-decoration: none;
font-size: 2em;
}
header p {
margin: 0;
font-size: 1em;
}
#content {
display: flex;
max-width: 1200px;
margin: 20px auto;
padding: 0 15px;
}
#primary {
flex: 2;
margin-right: 15px;
}
#secondary {
flex: 1;
background-color: var(--post-bg-color);
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
padding: 20px;
height: fit-content;
}
.post, #content .page { background-color: var(--post-bg-color);
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
margin-bottom: 30px;
padding: 25px;
transition: transform 0.2s ease;
}
.post:hover, #content .page:hover {
transform: translateY(-2px);
}
.post-thumbnail {
flex: 0 0 250px;
margin-bottom: 8px;
position:relative;
}
.post-thumb {
width: 100%;
height: 120px;
object-fit: cover;
border-radius: 6px;
transition: opacity 0.3s ease;
}
.post-thumb:hover {
opacity: 0.9;
}
.post-content {
flex: 1;
}
.entry-title {
margin: 0 0 15px;
font-size: 1.8em;
line-height: 1.3;
}
.entry-title a, a .entry-title {
color: var(--link-color);
text-decoration: none;
transition: color 0.2s ease;
}
.entry-title a:hover, a:hover .entry-title {
color: var(--link-hover-color);
}
.entry-meta {
color: #6c757d;
font-size: 0.9em;
margin-bottom: 15px;
}
.entry-meta span {
margin-right: 15px;
}
.entry-summary {
color: var(--text-color);
line-height: 1.6;
} @media (max-width: 768px) {
.post {
flex-direction: column;
padding: 15px;
}
.post-thumbnail {
flex: none;
margin-right: 0;
margin-bottom: 15px;
}
.post-thumb {
height: 200px;
}
.entry-title {
font-size: 1.5em;
}
.entry-meta span { margin-bottom: 5px;
}
}
footer {
background-color: var(--footer-bg-color);
text-align: center;
padding: 10px 0;
margin-top: 20px;
}
footer p {
margin: 0 0 10px 0;
font-size: 0.9em;
}
nav { text-align: center;
margin-top: 15px;
}
.nav-menu {
list-style: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
flex-wrap: wrap;
background-color: var(--background-color);
border-bottom: 1px solid var(--border-color);
}
.nav-menu li {
display: inline;
padding: 0 15px;
}
.nav-menu a {
color: #fff;
text-decoration: none;
transition: color 0.3s ease;
}
.nav-menu li a {
color: var(--link-color);
text-decoration: none;
font-size: 16px;
padding: 15px 20px;
display: block;
transition: all 0.3s ease;
}
.nav-menu li a:hover {
color: var(--link-hover-color);
background-color: rgba(0,0,0,0.02);
}
.nav-menu li.current-menu-item a {color:var(--link-hover-color);} header h1 a {
text-decoration: none;
color: inherit;
}
header h1 a:hover {
text-decoration: underline;
}
header.entry-header {padding:0;text-align:left} 
.entry-title {
font-size: 2.2em;
margin-bottom: 0.2em;
color: var(--text-color);
font-weight: 600;
}
.entry-meta {
font-size: 0.95em;
color: #6c757d;
margin-bottom: 0.2em;
}
.entry-content {
line-height: 1.8;
margin-bottom: 2em;
font-size: 1.1em;
color: var(--text-color);
}
.entry-footer {
margin-top: 1em;
border-top: 1px solid #222;
padding-top: 0.5em;
padding-bottom:0;
font-size:0.9em;
text-align:left;
}
.back-to-top {
position: fixed;
bottom: 30px;
right: 30px;
background-color: var(--button-bg-color);
color: #fff;
border: none;
padding: 12px 18px;
border-radius: 50%;
cursor: pointer;
z-index: 1000;
font-size: 20px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}
.back-to-top:hover {
background-color: var(--button-hover-bg-color);
}
.pagination {
text-align: center;
margin: 20px 0;
}
.pagination a {
padding: 12px 20px;
margin: 0 5px;
background-color: var(--button-bg-color);
color: white;
text-decoration: none;
border-radius: 6px;
transition: all 0.3s ease;
}
.pagination a:hover {
background-color: var(--button-hover-bg-color);
}
.nav-previous,
.nav-next {
display: inline-block;
} @media (max-width: 768px) {
#content {
flex-direction: column;
padding: 0 10px;
}
#primary {
margin-right: 0;
margin-bottom: 15px;
}
.post {
padding: 20px;
margin-bottom: 20px;
}
.entry-title {
font-size: 1.8em;
}
.entry-content {
font-size: 1em;
}
.nav-menu li a {
padding: 12px 15px;
}
}
.skip-link {
position: absolute;
top: -40px;
left: 0;
background: #333;
color: #fff;
padding: 8px;
z-index: 100;
}
.skip-link:focus {
top: 0;
}
.menu-toggle {
display: none;
cursor: pointer;
color: #fff;
font-size: 1.5em;
background: none;
border: none;
}
@media (max-width: 768px) {
.menu-toggle {
display: block;
} .nav-menu.active {
display: flex;
flex-direction: column;
}
}
.wp-caption {
border: 1px solid #ddd;
padding: 5px;
}
.wp-caption-text {
font-size: 0.8em;
color: #666;
}
.sticky {
background-color: #f9f9f9;
border: 1px solid #ddd;
}
.gallery-caption {
font-size: 0.8em;
color: #666;
}
.bypostauthor {
font-style: italic;
}
.alignright {
float: right;
margin: 0 0 10px 10px;
}
.alignleft {
float: left;
margin: 0 10px 10px 0;
}
.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}
.screen-reader-text {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
a {
text-decoration: underline;
color: var(--link-color);
border:0;
}
a:hover,
a:focus {
color: var(--link-hover-color);
}
a:focus,
button:focus,
input:focus { }
.wpcomment-wrapper_outer-is_good_ {border:0}
.wpcomment-wrapper_outer-is_good_ .form-group {}
.wpcomment-wrapper_outer-is_good_ .form-control-label {display:none}
.wpcomment-wrapper_outer-is_good_ input {display:block;margin:10px 40px;height:24px;}
.wpcomment-wrapper_outer-is_good_ label.crap {background:#e8a2a2;}
.wpcomment-wrapper_outer-is_good_ label.just_comment {background:#d0d0d0}
.wpcomment-wrapper_outer-is_good_ label.good {background:#bbe4bb}
.wpcomment-wrapper_outer-is_good_ label {color:#000}
.wp-block-categories-list {margin-left:0;padding-left:0}
.wp-block-categories-list li {display:inline-block;background:#111;margin:2px;list-style:none;padding:2px 6px}
.wp-block-categories-list li a::before {
font-family: "Font Awesome 5 Free";
content: "\f07b";
font-weight: 400;
display: inline-block;
padding-right: 4px;
color:#444;
vertical-align: middle;
font-weight:normal;
font-size:0.8em;
}
.wp-block-categories-list li.current-cat a::before {
font-family: "Font Awesome 5 Free";
content: "\f07c";
font-weight: 400;
display: inline-block;
padding-right: 4px;
color:var(--link-color);
vertical-align: middle;
font-weight:normal;
font-size:0.8em;
}
.wpcomment-wrapper_outer-is_good_ .form-check-inline {margin-right:0;display:inline-block}
.wpcomment-wrapper_outer-is_good_ .form-check-label {width:100px;text-align:center;font-size:0.8em;padding:15px 0;display:block}
.entry-content .wp-post-image {float:left;width:160px;height:100px;margin:8px 12px 5px 0;}
.wp-block-video {box-sizing: border-box;margin:0 auto 5px}
.wp-block-video video {vertical-align: middle;width: 100%;}
#logo {border:none;}
#logo img {border-radius:0;width:100%;max-width:727px}
@media only screen and (min-width: 900px) {
#logo img {border-radius:10px;width:100%;max-width:727px;border:4px solid #000}
}
.moto_up {text-transform:uppercase;font-size:0.75em}
.headline {margin:0 auto 10px auto}
.headline i {color:var(--link-color);font-size:1.1em;font-weight:bold;text-decoration:none;vertical-align:baseline;margin:0 4px 0 10px}
.headline a {color:var(--link-color);font-size:1.1em;font-weight:bold;text-decoration:none}
.headline a:hover {color:var(--link-hover-color);text-decoration:underline}
.comment-list p {font-style:normal}
ul.comment-list {margin-left:0;padding-left:0}
.comment-respond {background-color: var(--background-color);border-radius:8px;padding:8px}
.comment-respond textarea {width:90%}
.comment-respond .comment-reply-title {color:var(--text-color);padding:2px 0;margin:0} 
h2.comments-title {margin: 4px 0 4px 0;font-size:1.3em}
h3.page-title {margin: 0 0 4px 0;font-size:1.2em}
.comment-list .isgoodbox {padding:5px 8px;border-radius:8px;margin-bottom:8px}
.comment-list .isgrey {background:#d0d0d0}
.comment-list .isgreen {background:#bbe4bb}
.comment-list .isred {background:#e8a2a2}
.comment-content {color:var(--background-color);}
.comment-content p {color:var(--background-color);padding:3px 0;margin:0;}
.comment-content a {color:var(--background-color);text-decoration:underline;font-weight:bold}
.comment-content a:hover {text-decoration:none}
.comment-notes, .logged-in-as {margin:0 0 10px 0;font-size:0.8em}
.comment-author cite {color:var(--background-color);font-weight:bold;font-size:0.8em;text-decoration: underline}
.comment-author cite a {background:var(--background-color);font-weight:bold;padding:0 4px; display:inline-block;border-radius:4px 0 4px 0}
.comment-author cite a:hover {color:var(--link-hover-color);}
.cld-like-dislike-wrap {display:inline-block;padding-left:8px;margin-bottom:0!important}
.cld-like-trigger {color:var(--link-hover-color);}
.cld-like-trigger:hover {color:#40d940!important;}
.cld-prevent {color:green;}
.cld-prevent:hover {color:#40d940!important;}
.comment-meta {padding:3px 0;margin:0;color:var(--background-color);font-size:0.8em;text-align:right}
.comment-meta a {color:var(--background-color);display:inline-block}
.comment-reply-link {font-weight:bold;padding:1px 4px;border:1px solid #e6e6e6;border-radius:0 0 6px 0;background:var(--link-hover-color)}
.comment-reply-link:hover {border:1px solid var(--link-hover-color);background:var(--link-color);color:var(--background-color);}
.sposnor_url {display:inline-block;border:1px solid var(--link-color);color:var(--link-color);border-radius:4px;padding-left:6px;font-size:1.1em;margin-top:8px}
.sposnor_url a {font-weight:bold;color:#000;background:var(--link-color);display:inline-block;padding:1px 8px 1px 4px;border-radius:0 4px 4px 0;}
.sposnor_url a:hover {color:#000;background:var(--link-hover-color)}
.comments {}
.comments a {display:inline-block;padding:1px 5px;border:1px solid var(--link-color);background:var(--link-color);color:var(--button-bg-color);border-radius:0 4px 4px 0}
.comments a b {color:var(--background-color);}
.comments a:hover {color:var(--link-hover-color)}
.categories a, .tags-links a {color:var(--text-color)}
.categories a:hover, .tags-links a:hover {color:var(--link-hover-color)}
.entry-subtitle {
margin: 0 0 5px;
font-size: 1.25em;
}
.post-thumbnail a {display:block}
.post-thumbnail .entry-title {position:absolute;bottom:2px;left:10px}
.post-thumbnail .bckg-title {position:absolute;bottom:0;left:0;width:100%;height:65px;background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 34%, rgba(0,0,0,0) 100%);}
.post-thumbnail .bckg-top {position:absolute;top:0;left:0;width:100%;height:42px;background: rgb(0,0,0);
background: linear-gradient(180deg, rgba(34,34,34,1) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);}
.prevnext {text-align:center;font-size:1.1em;padding:4px 0}
.wp-block-gallery .wp-block-image {
margin-bottom:5px!important;
}
.nav-links {padding:3px 0}
.page-numbers {display:inline-block}
h3.archive-description {margin:0 0 10px;}
.archive-description p {margin:0!important;}