/* =========================================================
   SUNSETNERDVERSE — Additional CSS
   Cleaned: removed redundant media queries
   ========================================================= */

/* Universal Body Styles */
body {
    background-color: #1a1a2e;
    color: #f0f0f0;
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.6;
    text-align: left;
}

/* Home Page Headings */
.home h1, .home h2, .home h3 {
    text-align: left;
    color: #f72585;
    text-shadow: 2px 2px 10px #9e0059;
}

/* Article/Post Headings */
.single-post h1, .single-post h2, .single-post h3 {
    text-align: center;
    color: #f72585;
    text-shadow: 2px 2px 10px #9e0059;
}

/* Subheadings */
.single-post h3 {
    font-size: 1.6em;
    margin-top: 30px;
    color: #4cc9f0;
    text-align: center;
    text-shadow: 2px 2px 10px #00f7ff;
}

.home h3 {
    font-size: 1.6em;
    margin-top: 30px;
    color: #4cc9f0;
    text-align: left;
    text-shadow: 2px 2px 10px #00f7ff;
}

/* Paragraphs */
p {
    font-size: 1.1em;
    color: #f0f0f0;
}

/* Links */
a {
    color: #f0f0f0;
    text-decoration: underline;
}

a:hover {
    color: #f72585;
}

a:focus, button:focus {
    outline: 3px solid #f72585;
    outline-offset: 2px;
}

/* Article Images */
.entry-content img {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    border: 4px solid #7209b7;
    box-shadow: 0 0 15px #7209b7;
}

/* Pros & Cons Section */
.pros-cons-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.pros, .cons {
    width: 48%;
    background-color: #16213e;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(76, 201, 240, 0.8);
}

/* Scoped list reset — pros/cons and footer menus only */
.pros ul,
.cons ul,
#nav_menu-9 ul,
#nav_menu-8 ul,
#nav_menu-4 ul {
    list-style-type: none;
    padding: 0;
}

.pros ul li,
.cons ul li {
    margin-bottom: 10px;
    color: #4cc9f0;
}

/* Grading System */
.grading-system {
    margin: 40px auto;
    text-align: center;
    max-width: 960px;
}

.grading-system .grade {
    font-size: 3em;
    font-weight: bold;
    color: #f72585;
    margin: 10px auto;
    display: inline-block;
    text-shadow: 0px 0px 20px #9e0059;
    animation: gradeReveal 0.8s ease-out forwards;
}

@keyframes gradeReveal {
    0%   { transform: scale(0.5) rotate(-10deg); opacity: 0; }
    70%  { transform: scale(1.1) rotate(3deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* Boilerplate and Conclusion Sections */
.boilerplate, .conclusion {
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
    color: #4cc9f0;
    text-shadow: 0px 0px 10px #3a0ca3;
    margin-top: 40px;
}

/* Embedded Videos */
iframe {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    border: none;
    box-shadow: 0 0 20px #3a0ca3;
}

/* Content Sections */
.content-section {
    background-color: #0f3460;
    padding: 20px;
    margin-bottom: 30px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 4px 10px rgba(76, 201, 240, 0.6);
    border-radius: 5px;
}

/* Buttons */
button, .button {
    background-color: #f72585;
    color: #f0f0f0;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 0 0 15px #f72585;
    cursor: pointer;
}

button:hover, .button:hover {
    background-color: #7209b7;
    box-shadow: 0 0 20px #7209b7;
}

/* Hide duplicate featured image on single posts */
.single-post article .mag-post-single + .post-thumbnail {
    display: none !important;
}

/* Hide duplicate article title on single posts */
.single-post h1.entry-title {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Footer Widgets */
#nav_menu-9 {
    background-color: #0f3460;
    padding: 20px;
    color: #f0f0f0;
    box-shadow: 0px 4px 10px rgba(76, 201, 240, 0.6);
    font-family: 'Courier New', Courier, monospace;
    text-align: left;
}

#nav_menu-8 {
    background-color: #0f3460;
    padding: 20px;
    color: #f0f0f0;
    box-shadow: 0px 4px 10px rgba(76, 201, 240, 0.6);
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
}

#nav_menu-4 {
    background-color: #0f3460;
    padding: 20px;
    color: #f0f0f0;
    box-shadow: 0px 4px 10px rgba(76, 201, 240, 0.6);
    font-family: 'Courier New', Courier, monospace;
    text-align: right;
}

#nav_menu-9 h6 {
    font-size: 1.6em;
    color: #f72585;
    text-shadow: 2px 2px 10px #9e0059;
    margin-bottom: 20px;
    text-align: left;
}

#nav_menu-8 h6 {
    font-size: 1.6em;
    color: #f72585;
    text-shadow: 2px 2px 10px #9e0059;
    margin-bottom: 20px;
    text-align: center;
}

#nav_menu-4 h6 {
    font-size: 1.6em;
    color: #f72585;
    text-shadow: 2px 2px 10px #9e0059;
    margin-bottom: 20px;
    text-align: right;
}

#nav_menu-9 a { font-size: 1.1em; color: #f0f0f0; text-align: left; }
#nav_menu-8 a { font-size: 1.1em; color: #f0f0f0; text-align: center; }
#nav_menu-4 a { font-size: 1.1em; color: #f0f0f0; text-align: right; }

#nav_menu-9 a:hover, #nav_menu-8 a:hover, #nav_menu-4 a:hover {
    color: #f72585;
    text-decoration: underline;
}

#nav_menu-9 ul li, #nav_menu-8 ul li, #nav_menu-4 ul li {
    margin-bottom: 10px;
    color: #4cc9f0;
}

#nav_menu-9 button, #nav_menu-8 button, #nav_menu-4 button,
#nav_menu-9 .button, #nav_menu-8 .button, #nav_menu-4 .button {
    background-color: #f72585;
    color: #f0f0f0;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 0 0 15px #f72585;
    cursor: pointer;
}

#nav_menu-9 button:hover, #nav_menu-8 button:hover, #nav_menu-4 button:hover,
#nav_menu-9 .button:hover, #nav_menu-8 .button:hover, #nav_menu-4 .button:hover {
    background-color: #7209b7;
    box-shadow: 0 0 20px #7209b7;
}

#nav_menu-9 a:focus, #nav_menu-8 a:focus, #nav_menu-4 a:focus,
#nav_menu-9 button:focus, #nav_menu-8 button:focus, #nav_menu-4 button:focus {
    outline: 3px solid #f72585;
    outline-offset: 2px;
}

/* Homepage Thumbnails */
.home .post-thumbnail img {
    display: block !important;
    margin: 0 auto !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: center !important;
    border: 4px solid #7209b7 !important;
    box-shadow: 0 0 15px #7209b7 !important;
}

/* Responsive — consolidated from 3 redundant blocks into 1 */
@media (max-width: 1024px) {
    .home .post-thumbnail img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
    }
}