/*
Theme Name:    Loadedmore
Theme URI:      https://loadedmore.com.ng
Description:    A custom WordPress theme for Loadedmore, optimized for SEO and speed.
Version:        2.0.0
Author:         Dahfaith (Visioreach Concepts)
Author URI:     https://wa.me/2347069659752
Text Domain:    Loadedmore 
License:        GNU General Public License v2 or later
License URI:    https://www.gnu.org/licenses/gpl-2.0.html
Tags:           custom-post-types, SEO, responsive, music, video
Tested up to:   6.6.1
Requires PHP:   8.1
Update Date:    2026-06-15
*/
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em,
img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, hr,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figure, figcaption, hgroup,
menu, footer, header, nav, section, summary, time, mark, audio, video,
button, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-size: 100%;
  font-family: inherit;
}

:root {
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --text-main: #212529;
    --text-muted: #6c757d;
    --border-color: #eaeaea;
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --radius-md: 12px;
}

body {
    font-family: 'Inter', Arial, sans-serif; 
    background-color: var(--bg-color);
    color: var(--text-main);
}
.tagtat{
    font-size: 14px !important;
}
header {
    background-color: white;
    padding: 10px;
}

a {
    color: #333; /*  black color for all links */
    text-decoration: none; /* Optional: Remove underline from links */
}
/* Add this CSS to your theme's stylesheet or a custom CSS file */
#morebutton {
    text-align: right !important;
}




a:hover,
a:focus {
    color: #333; /* Darker #333 color on hover/focus */
    text-decoration: none; /* Optional: Add underline on hover/focus */
}


.header-container {
    display: flex;
    justify-content: center; /* Center the logo */
    align-items: center;
    position: relative; /* Allows positioning the toggle menu on mobile */
}

.logo{
    width: 100px;
    max-width: 100%;
    height: 50px;
    margin-left: 10px;
}

.logo-section h1 {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    font-family: Arial, sans-serif;
    text-align: center; /* Center text */
}

.menu-toggle {
    position: absolute;
    right: 20px; /* Positioning the toggle button to the right */
    display: block;
    background: none;
    border: none;
    color: inherit;
    
}

.menu-toggle i {
    font-size: 28px;
    color: #333;
}


/* Mobile Navigation Styles */


.nav-icons {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
    margin: 0; 
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    white-space: nowrap;
    width: max-content;
    max-width: 100vw;
}
.nav-icons::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.nav-icons li {
    text-align: center;
    flex: 0 0 auto;
}

.nav-icons a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333; /* Adjust color as needed */
    text-decoration: none;
    padding: 18px 15px; /* Added horizontal padding to separate items */
}

.nav-icons i {
    font-size: 19px; /* Adjust icon size as needed */
    margin-bottom: 5px;
}

.nav-icons span {
    font-size: 14px; /* Adjust text size as needed */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Optional: Add a hover effect */
.nav-icons a:hover {
    color: #333; /* Adjust hover color as needed */
}

.nav-icons a:hover i {
    color: #000000; /* Adjust hover color for icons as needed */
}





/* Desktop Navigation Styles */
.nav-desktop {
    background-color: white;
    padding: 10px;
    border-radius: 10px;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}
.wp-caption-text{
    display: none;
}
.size-medium {
  display: block;
  margin: 0 auto;
  max-width: 100%; /* Ensures responsiveness */
}

.aligncenter {
    clear: both;
    margin: 20px 10px 10px 40px;
}
.schema{
    display: none;
}

/* ================================================
   MOBILE MUSIC MODAL STYLES
   ================================================ */
.music-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
}
.music-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.music-modal-content {
    background: var(--card-bg, #ffffff);
    width: 100%;
    border-radius: 20px 20px 0 0;
    padding: 25px 20px 35px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
}
.music-modal-overlay.active .music-modal-content {
    transform: translateY(0);
}

.music-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color, #eaeaea);
}
.music-modal-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main, #212529);
    margin: 0;
}
.music-modal-close {
    background: #f1f3f5;
    border: none;
    color: #495057;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
.music-modal-close:hover {
    background: #e9ecef;
}

.music-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}
.music-modal-grid a {
    display: block;
    padding: 12px 15px;
    background: #f8f9fa;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    color: #212529;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.music-modal-grid a:hover {
    background: #22c55e;
    color: #ffffff;
    border-color: #22c55e;
}

.all-songs-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #212529;
    color: #fff !important;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 15px;
    transition: background 0.2s;
}
.all-songs-btn:hover {
    background: #22c55e;
}

/* Media Query for Laptop Design */
@media (min-width: 768px) {
    /* Hide mobile icons and menu toggle on larger screens */
    .nav-mobile {
        display: none;
    }
    .breadcrumb {
    font-size: 16px !important;
    }
    
    .container {
      margin: 0 100px 50px 100px !important;
    }
    
    .image-caption {
        left: 40% !important;
    }

    .social-container{
        width: 100% !important;
    }
    
    .social-icon{
        font-size: 24px !important;
    }
    
    .post-image-content {
    height: auto;
    width: 100%;
    border-radius: 10px;
}
    
   
    .menu-toggle{
        margin-right: 60px;
        margin-top: 20px;
        cursor: pointer;
    }

    /* Center the logo for desktop view */
    .header-container {
        justify-content: center;
    }
    
    .post-title h2 {
    font-size: 16px !important;
   
}

.post-title h1{
    font-size: 26px !important;
}
    
    .author-text {
    font-size: 15px !important;
}

.author-name {
    font-size: 15px !important;
}

.post-date {
    font-size: 15px !important;
}



    /* Show desktop navigation on larger screens */
    .nav-desktop {
        display: block;
    }
}

@media (max-width: 767px) {
    
    
    /* Hide desktop menu on mobile screens */
    .nav-desktop {
        display: none;
    }

    /* Show mobile icons and menu toggle on smaller screens */
    .nav-mobile {
        display: block; 
    }

    .menu-toggle {
        display: block;
        
        
    }

    .header-container {
        justify-content: space-between;
    }
}
/* General Styles for Homepage Body */
.homepage-body {
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
 
}

/* Trending Now Title */
.trending-now {
    background-color: var(--card-bg);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 800;
    display: inline-flex;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

/* Post List */
.post-list {
    margin-top: 5px;
}

.post-item {
    display: flex;
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.post-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.post-image img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.post-details {
    flex-grow: 1;
}

.post-title {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

/* Next Post Link */
.next-post {
    display: block;
    background-color: var(--card-bg);
    color: var(--text-main);
    padding: 15px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.next-post:hover {
    background-color: var(--bg-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}


/* Responsive Styles */
@media (max-width: 768px) {
    .post-title {
        font-size: 14px; /* Adjusted for mobile */
    }

    .trending-now {
        font-size: 14px; /* Smaller font size on mobile */
    }
}





/* Footer Styles */
.footer {
    background-color: var(--card-bg);
    color: var(--text-main);
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid var(--border-color);
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping to the next line */
    justify-content: center;
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 5px 15px;
    font-weight: 700;
    transition: color 0.3s ease;
    font-size: 16px; /* Increased font size */
}

.footer-links a:hover {
    color: var(--text-main);
}

.social-media {
    margin-bottom: 15px;
}

.social-media a {
    color: var(--text-muted);
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: var(--text-main);
}

.social-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 10px; /* Adjust as needed */
    margin-bottom: 10px; /* Adjust as needed */
}

.social-icon {
    text-decoration: none;
    font-size: 22px;
}
/* Facebook icon color */
.social-icon[href*="facebook.com"] {
    color: #1877F2; /* Facebook blue */
}

/* Twitter icon color */
.social-icon[href*="twitter.com"] {
    color: #1DA1F2; /* Twitter blue */
}

/* WhatsApp icon color */
.social-icon[href*="whatsapp.com"] {
    color: #25D366; /* WhatsApp green */
}

/* Telegram icon color */
.social-icon[href*="t.me"] {
    color: #0088cc; /* Telegram blue */
}

/* Link copy icon color */
#copy-link {
    color: #333; /* Dark gray for link copy */
}
#copy-link1{
    color: #333;
}

/* Hover effect for social icons */
.social-icon:hover {
    opacity: 0.8; /* Slightly dim on hover */
}


.copy-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s;
}

.copy-notification.fade-out {
    opacity: 0;
}


.dmca {
    margin-bottom: 15px;
}

.dmca img {
    width: 100px;
    height: 20px;
}

.copyright {
    font-size: 12px;
    color: #ccc;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: row;
        justify-content: center; /* Center the links */
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 14px; /* Adjust size for mobile */
        margin: 5px 10px;
    }

    .social-media a {
        font-size: 20px;
    }
    
   
    
}

/* Hide the search bar by default */
.search-bar {
    display: none;
    padding: 10px;
    background-color: white;
    position: absolute;
    top: 60px; /* Adjust based on your header height */
    right: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1000;
}

/* Style the search input and button */
.search-bar form {
    display: flex;
    align-items: center;
}

.search-bar input[type="text"] {
    width: 200px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    margin-right: 10px;
}

.search-bar button {
    padding: 8px 16px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}



#trend{
    margin-top: 20px;
}

/* General styling */
.container {
    padding: 10px;
}

/* Breadcrumb styling */
.breadcrumb {
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
    margin-top: 10px; 
}

.breadcrumb a {
    text-decoration: none;
    color: #000000;
}

.breadcrumb a::after {
    content: " >> ";
    color: gray;
}

.breadcrumb a:last-child::after {
    content: "";
}

/* Post Title */
.post-title h1 {
    font-size: 24px;
    margin-top: 10px;
}

.post-title h2 {
    font-size: 14px;
    color: gray;
    margin-bottom: 10px;
    margin-top: 10px;
}

/* Author Info */
.author-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.author-name {
    font-size: 13px;
    color: #333;
    font-weight: 700;
}

.verified-badge {
    width: 12px;
    height: 12px;
    position: relative; /* or 'absolute' */
    top: 3px; /* Adjust the value as needed */
}

.post-date {
    color: gray;
    font-size: 12px;
}
.author-text{
    color: gray;
    font-size: 12px;
    display: inline;
    
}

/* Post Image Container */
.post-image-container {
    position: relative;
    margin-bottom: 10px;
}

.post-image-content {
    max-width: 100%;
    height: auto;
    width: 100%;
    border-radius: 2px;
}

.image-caption {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    text-align: center;
    width: 80%;
}

/* Telegram Button */
.telegram-button {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    text-align: center;
    border-radius: 5px;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
}
.telegram-button:hover {
    color: white;
}




/* Social Icons */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    width: 40px;
    height: 40px;
}

/* Separator Line */
.separator {
    height: 1px;
    background-color: #e0e0e0;
}

.comment-section {
    border-radius: 8px;
    margin-top: 20px;
    
}

.comment-section h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.comment-section .comment-form {
    display: flex;
    flex-direction: column;
}

.comment-section .comment-form label {
    margin-bottom: 5px;
}

.comment-section .comment-form input[type="text"],
.comment-section .comment-form textarea {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    width: 100%; /* Ensure full width */
    box-sizing: border-box; /* Include padding and border in width calculation */
}

.comment-section .comment-form textarea {
    resize: vertical;
}

.comment-section .comment-form input[type="submit"] {
    background-color: #333
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 5px;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .comment-section {
        padding: 15px;
    }

    .comment-section .comment-form input[type="text"],
    .comment-section .comment-form textarea {
        font-size: 16px;
    }

    .comment-section .comment-form input[type="submit"] {
        font-size: 14px;
        padding: 8px 12px;
    }
}

/* Container for post content */
.post-content {
    max-width: 840px;
    margin: 0 auto 40px auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #2d3748;
    letter-spacing: -0.01em;
}

.post-content p {
    margin-bottom: 1.6em;
}

.post-content p:first-of-type {
    font-size: 19px;
    font-weight: 500;
    color: #1a202c;
    letter-spacing: -0.02em;
    line-height: 1.7;
}

/* Headings */
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
    font-family: 'Outfit', 'Inter', sans-serif;
    color: #111827;
    margin-top: 2em;
    margin-bottom: 0.8em;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.post-content h2 { font-size: 28px; }
.post-content h3 { font-size: 24px; }
.post-content h4 { font-size: 20px; }

/* Links */
.post-content a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.post-content a:hover {
    color: #1d4ed8;
    border-bottom-color: #2563eb;
}

/* Lists */
.post-content ul, .post-content ol {
    padding-left: 24px;
    margin-bottom: 1.5em;
}

.post-content li {
    margin-bottom: 0.6em;
}

.post-content li::marker {
    color: #6b7280;
    font-weight: bold;
}

/* Images */
.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 32px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.post-content img:hover {
    transform: scale(1.02);
}

/* Blockquotes */
.post-content blockquote {
    border-left: 4px solid #3b82f6;
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: #4b5563;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
    border-radius: 0 12px 12px 0;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 19px;
    line-height: 1.7;
}

/* Code Blocks */
.post-content pre {
    background: #1e293b;
    color: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    overflow-x: auto;
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    margin: 24px 0;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

/* Tables */
.post-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 32px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

.post-content th, .post-content td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.post-content th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.post-content tr:last-child td {
    border-bottom: none;
}

/* Style for the post tags */
.post-tags {
    margin: 20px 0;
    font-size: 14px;
    color: #333;
    text-align: left; /* Align tags to the left */
}

.post-tags p {
    margin: 0;
}
.post-tags a {
    background-color: #fff; border: 1px solid #333; border-radius: 5px; color: #333; padding: 5px;/* Link color */
    text-decoration: none; /* Remove underline from links */
}

.post-tags a:hover {
    color: 000; /* Color on hover */
}

/* Style for the call-to-action section */
.rating-call-to-action {
    margin: 20px 0;
    font-size: 16px;
    color: #333;
    text-align: left; /* Align text to the left */
}

.rating-call-to-action p {
    margin: 10px 0;
}

.rating-call-to-action strong {
    font-weight: bold;
}

.rating-link {
    display: inline-block;
    padding: 10px 15px;
    background-color: #333; /* Adjust as needed */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.rating-link:hover {
    color: #fff;
}


/* Style for the post image wrapper */
.post-image-wrapper {
    position: relative;
    display: inline-block;
}

/* Style for the number overlay */
#post-number-1,
#post-number-2,
#post-number-3,
#post-number-4, /* Add more IDs if necessary */
#post-number-5 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px; /* Adjust size as needed */
    height: 30px; /* Adjust size as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Round border */
    font-size: 14px; /* Adjust font size */
    font-weight: bold;
    color: #fff; /* White text color */
    background-color: #333; /* Green background */
    z-index: 10; /* Ensure it is above the image */
     margin-left: 40%;
}


/* Add more specific styles for other number IDs if needed */
#trending-now{
    margin-top: 10px;
}


/* Style for the SVG icon */
#trend svg {
    margin-left: 10px; /* Space between text and icon */
    margin-top: -3px;
    vertical-align: middle; /* Aligns the icon with the text */
}

/* Wrapper for the content and sidebar */
.content-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
}

/* Main content area */
.main-content {
    width: 100%; /* Adjust the width as needed */
    box-sizing: border-box;
    padding-top: 20px;
}

.main2-content {
    width: 100%; /* Adjust the width as needed */
    box-sizing: border-box;
    padding-top: 40px;
}

@media (max-width: 767px) {
.main2-content {
    width: 99%; /* Adjust the width as needed */
    box-sizing: border-box;
    padding-top: 20px;
}
}

/* Sidebar */
.post-list-sidebar {
    width: 100%; /* Adjust the width as needed */
    box-sizing: border-box;
    padding: 20px;
}

/* Sidebar post item */
.post-list-sidebar .post-item {
    display: flex;
    margin-bottom: 15px;
    
}

.post-list-sidebar .post-image-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin-right: 10px;
}

.post-list-sidebar .post-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #333;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.post-list-sidebar .post-info {
    flex: 1;
}

.post-list-sidebar .post-title {
    font-size: 12px;
    color: #333;
    margin-left: 3rem;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .main-content, .post-list-sidebar {
        width: 100%;
        padding: 0;
        
    }

    /* Adjust the post list layout for mobile view */
    .post-list-sidebar {
        display: flex;
        flex-direction: column; /* Stack items vertically */
    }

    .post-list-sidebar .post-item {
        display: flex;
        align-items: flex-start; /* Align items to the top */
        margin-bottom: 20px; /* Space between items */
        
        border-bottom: 1px solid #ddd; /* Optional border for separation */
    }

    .post-list-sidebar .post-image-wrapper {
        margin-right: 20px; /* Increase space between image and text */
    }

    .post-list-sidebar .post-image {
        width: 100px; /* Adjust image size for mobile */
        height: 100px; /* Adjust image size for mobile */
        display: block; /* Ensure the image displays as a block */
    }

    .post-list-sidebar .post-number {
       
    display: flex;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    text-decoration: none;
    color: inherit;
    transition: box-shadow .3s ease;
}
    

    .post-list-sidebar .post-info {
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center text vertically */
    }

    .post-list-sidebar .post-title {
        font-size: 14px; /* Adjust font size for mobile */
        margin-bottom: 5px; /* Add space below the title */
    }
}

/* end of post sidebar for single content*/

/*VIDEO SECTION CSS*/

/* Unique styling for the video section */
.video-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns on larger screens */
    gap: 15px;
    margin: 20px auto;
    max-width: 1200px; /* Adjust as needed */
}

/* Ensure the grid items are properly styled */
.video-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    transition: transform 0.2s;
}


/* Styling for the video thumbnail */
.video-thumbnail {
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
}

/* Play icon styling */
.play-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #333; /* Green accent color */
    color: white;
    padding: 5px;
    border-radius: 50%;
    font-size: 20px;
}

/* Video title styling */
.video-title {
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.video-title small {
    display: block;
    font-size: 12px;
    color: #777;
}

/* Responsive design for mobile view */
@media (max-width: 768px) {
    .video-section {
        grid-template-columns: repeat(2, 1fr); /* Ensure 2 columns on mobile */
    }

    .video-thumbnail img {
        width: 100%; /* Full width for mobile */
        height: 100px; /* Maintain aspect ratio */
    }

    .video-title {
        font-size: 12px; /* Adjust font size for mobile */
    }
}

/* Ensure the grid is responsive and maintains 2x2 layout on very small screens */
@media (max-width: 480px) {
    .video-section {
        grid-template-columns: repeat(2, 1fr); /* Two columns for small screens */
    }
}

/* END OF HOME VIDEO CSS*/
/* Premium Pagination Design */
.pagination {
    text-align: center;
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.pagination .screen-reader-text {
    display: none;
}

.pagination a.page-numbers, 
.pagination span.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 16px;
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.pagination a.page-numbers:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    background-color: var(--bg-color);
    color: #e74c3c;
    border-color: var(--border-color);
}

.pagination span.current {
    background: linear-gradient(135deg, #00b09b, #096c37);
    color: #fff !important;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 176, 155, 0.4);
    transform: scale(1.05);
}

.pagination .prev, 
.pagination .next {
    font-weight: 800;
    background: var(--card-bg);
}

@media (max-width: 768px) {
    .pagination {
        margin: 30px 0;
    }
    .pagination .nav-links {
        gap: 8px;
    }
    .pagination a.page-numbers, 
    .pagination span.page-numbers {
        min-width: 38px;
        height: 38px;
        padding: 0 12px;
        font-size: 14px;
        border-radius: 10px;
    }
}
/* Style for the Page Title */
.page-title {
    background-color: #333; /* Green background */
    color: #fff; /* White text color */
    padding: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    border-radius: 5px;
}

/* General Styling for Category, Tag, and Author Post Items */
.page-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.page-post-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.2s;
}


.page-post-thumbnail {
    position: relative;
}

.page-post-thumbnail img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 200px; /* Adjust the height to maintain aspect ratio */
}

.page-post-title {
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.page-post-title a {
    text-decoration: none;
    color: #333;
}

.page-post-title a:hover {
    color: #e74c3c; /* Accent color on hover */
}

/* Sidebar Styles */
.sidebar-desktop {
    float: right;
    width: 25%;
    margin-left: 20px; /* Adjust as needed */
}


.desktop-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.desktop-nav li {
    position: relative;
}

.desktop-nav li a {
    color: #333; /* Text color */
    
    text-decoration: none;
    display: block;
}

.desktop-nav li a:hover,
.desktop-nav li:hover > a {
    color: #fff;
}

/* Hide the dropdown menu by default */
.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #ffffff;
    list-style: none;
    padding: 15px;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    top: 100%;
    left: 0;
    min-width: 300px;
    z-index: 1000;
    /* Grid layout for columns */
    display: none; 
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Ensure the parent is positioned relatively for the absolute dropdown */
.nav-menu .menu-item-has-children {
    position: relative;
}

/* Show the dropdown menu on hover */
.nav-menu .menu-item-has-children:hover .dropdown-menu {
    display: grid;
    animation: fadeInDown 0.2s ease forwards;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Style the dropdown menu items */
.nav-menu .dropdown-menu li {
    margin: 0;
}

.nav-menu .dropdown-menu li a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    font-size: 14px;
    font-weight: 500;
}
.nav-menu .dropdown-menu li a:hover {
    background: #22c55e;
    color: #ffffff;
}

.listen-section {
    margin-top: 10px;
}

.listen-section p {
    font-weight: bold;
    margin-bottom: 10px;
}

audio {
    display: block;
    margin-bottom: 10px;
    margin-top: 10px;
    width: 100%;
}


a.btn-ghost {
    background: #000000 !important;
    position: relative;
    border: 1px solid #000000 !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    display: inline-block !important;
    padding: 5px 45px 5px 10px !important;
    letter-spacing: 0 !important;
}

a.btn-ghost::after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 5px;
    top: 0px;
    height: 35px;
    width: 35px;
    background: url(https://www.naijaloaded.com.ng/wp-content/uploads/download_arrow.gif) no-repeat !important;
    background-size: 35px !important;
}
a.btn-ghost:hover {
    background: #1e73be !important;
    border: 1px solid #1e73be !important;
    color: #fff !important;
}
.youtube-embed {
    text-align: center;
}

.youtube-embed iframe {
    max-width: 100%;
    height: 300px;
}
/* 404 Page Styles */
.error-404 {
    text-align: center;
    padding: 60px 20px;
}

.error-404 .page-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.error-404 .page-content {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.error-404 .page-content p {
    margin: 0;
}

.error-404 a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.error-404 a:hover {
    text-decoration: underline;
}

/* Search Form Styles */
.search-form {
    display: inline-block;
    margin-top: 20px;
    font-size: 1.5em;
}

.search-form input[type="search"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 200px;
    max-width: 100%;
    box-sizing: border-box;
}

.search-form input[type="search"]:focus {
  
    outline: none;
}

.search-form input[type="submit"] {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #333;
    color: white;
    cursor: pointer;
    font-size: 1em;
    margin-left: 10px;
}

.search-form input[type="submit"]:hover {
    background-color: #005bb5;
}

.comment-section {
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.comments-section {
    margin-bottom: 20px;
}

.comments-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
}

.comments-title::before {
    content: '💬'; /* Comment icon */
    margin-right: 10px; /* Spacing */
}

.comment-list {
    list-style-type: none;
    padding: 0;
}

.comment-list li {
    display: flex; /* Use flexbox for alignment */
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.comment-list li:hover {
    background-color: #f1f1f1; /* Highlight on hover */
}

.avatar {
    border-radius: 50%; /* Makes the avatar round */
    width: 35px; /* Adjust size if needed */
    height: 35px; /* Adjust size if needed */
    margin-right: 15px; /* Space between avatar and text */
    float: left;
}

.comment-meta {
    font-size: 14px;
    color: #666;
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center align items */
    margin-bottom: 5px;
}

.comment-meta .fn {
    font-weight: bold; /* Bold for author name */
    color: #0073aa; /* Author link color */
    margin-right: 10px; /* Space between author and date */
}

.comment-meta .commentmetadata {
    font-size: 12px; /* Smaller font for date */
    color: #999; /* Lighter color for date */
}

.comment-meta a {
    color: #666;
}

.comment-content {
    font-size: 16px;
    line-height: 1.5;
}

.no-comments {
    font-style: italic;
    color: #999;
}

.comment-edit-link {
    font-size: 12px;
    color: #0073aa;
}

.comment-edit-link:hover {
    text-decoration: underline;
}

.reply {
    margin-top: 10px;
}

.reply a {
    color: #000000;
    font-weight: bold;
}

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

#respond {
    margin-top: 20px;
}

.custom-comment-form input,
.custom-comment-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.custom-comment-form button {
    padding: 10px 15px;
    background-color: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.custom-comment-form button:hover {
    background-color: #005177;
}



@media (max-width: 600px) {
    .player-container {
        flex-direction: column;
        gap: 10px;
    }
    .player-controls {
        width: 100%;
        justify-content: center;
    }
    .player-controls audio {
        max-width: 220px;
    }
    .play-global-btn,
    .btn-download {
        max-width: 100%;
    }
    .play-btn-sub {
        max-width: 180px;
    }
}

/* Modern Related Posts Grid */
.related-posts-section {
    margin: 40px 0 30px;
}

.related-posts-header {
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 12px;
}

.related-posts-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
}

.loadedmoremp3-related-posts {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.loadedmoremp3-related-post {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.loadedmoremp3-related-post:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.loadedmoremp3-related-post-link {
    text-decoration: none;
    display: block;
}

.loadedmoremp3-related-post-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.loadedmoremp3-related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.loadedmoremp3-related-post:hover .loadedmoremp3-related-post-image img {
    transform: scale(1.08);
}

.related-post-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loadedmoremp3-related-post:hover .related-post-overlay {
    opacity: 1;
}

.related-play-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(231,76,60,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(231,76,60,0.5);
}

.loadedmoremp3-related-post:hover .related-play-icon {
    transform: scale(1);
}

.related-post-type {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.loadedmoremp3-related-post-title {
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.no-related {
    color: var(--text-muted);
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
}

@media (max-width: 1024px) {
    .loadedmoremp3-related-posts {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .loadedmoremp3-related-posts {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .loadedmoremp3-related-posts {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 16px;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        scrollbar-width: none; /* Firefox */
    }
    .loadedmoremp3-related-posts::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    .loadedmoremp3-related-post {
        flex: 0 0 130px;
        scroll-snap-align: start;
    }
}

/* Modern Comment Section */
.comment-section {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-top: 40px;
    border: 1px solid var(--border-color);
}
.comment-form input[type="text"], 
.comment-form input[type="email"], 
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-color);
    color: var(--text-main);
    font-family: inherit;
    transition: border-color 0.3s ease;
    margin-bottom: 15px;
}
.comment-form input[type="text"]:focus, 
.comment-form input[type="email"]:focus, 
.comment-form textarea:focus {
    outline: none;
    border-color: #0984e3;
}
.comment-form input[type="submit"], .submit {
    background: var(--text-main);
    color: var(--card-bg);
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}
.comment-form input[type="submit"]:hover, .submit:hover {
    transform: translateY(-2px);
}




/* Modern Comment Section */
.comment-section {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-top: 40px;
    border: 1px solid var(--border-color);
}
.comment-section h2, .comment-section h3, .comments-title {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--text-main);
}
.comment-form input[type="text"], 
.comment-form input[type="email"], 
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-color);
    color: var(--text-main);
    font-family: inherit;
    transition: border-color 0.3s ease;
    margin-bottom: 15px;
}
.comment-form input[type="text"]:focus, 
.comment-form input[type="email"]:focus, 
.comment-form textarea:focus {
    outline: none;
    border-color: #0984e3;
}
.comment-form input[type="submit"], .submit {
    background: var(--text-main);
    color: var(--card-bg);
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}
.comment-form input[type="submit"]:hover, .submit:hover {
    transform: translateY(-2px);
    background: #000;
}

/* ================================================
   STUNNING PLAY & DOWNLOAD BUTTONS (ANIMATED)
   ================================================ */

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(231,76,60,0.6); }
    70% { box-shadow: 0 0 0 12px rgba(231,76,60,0); }
    100% { box-shadow: 0 0 0 0 rgba(231,76,60,0); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 150%; }
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

@keyframes spin-eq {
    0%, 100% { height: 8px; }
    50% { height: 20px; }
}

/* ---- Play Button ---- */
.music-player-section {
    margin: 20px 0 14px;
}

.play-global-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.play-btn-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    background-size: 200% 200%;
    animation: none;
    border-radius: 18px;
    padding: 14px 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(48,43,99,0.4);
}

.play-btn-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transition: none;
    pointer-events: none;
}

.play-global-btn:hover .play-btn-inner {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(48,43,99,0.55);
}

.play-global-btn:hover .play-btn-inner::after {
    animation: shimmer 0.7s ease forwards;
}

.play-btn-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulse-ring 2s ease-out infinite;
    transition: transform 0.3s ease;
}

.play-global-btn:hover .play-btn-icon {
    transform: scale(1.12);
}

.play-btn-text {
    display: flex;
    flex-direction: column;
}

.play-btn-label {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.3px;
}

.play-btn-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 240px;
}

/* Equalizer bars (decorative) */
.play-btn-eq {
    margin-left: auto;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
    flex-shrink: 0;
}

.play-btn-eq span {
    display: block;
    width: 3px;
    border-radius: 2px;
    background: rgba(231,76,60,0.8);
    height: 8px;
}

.play-global-btn:hover .play-btn-eq span:nth-child(1) { animation: spin-eq 0.5s ease infinite; }
.play-global-btn:hover .play-btn-eq span:nth-child(2) { animation: spin-eq 0.5s ease 0.15s infinite; }
.play-global-btn:hover .play-btn-eq span:nth-child(3) { animation: spin-eq 0.5s ease 0.3s infinite; }

/* ---- Download Button ---- */
.download-button {
    margin: 10px 0 22px;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    box-sizing: border-box;
    text-decoration: none;
    background: linear-gradient(135deg, #00b09b, #096c37);
    border-radius: 18px;
    padding: 14px 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,176,155,0.35);
}

.btn-download::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
    pointer-events: none;
}

.btn-download::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    pointer-events: none;
}

.btn-download:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,176,155,0.55);
    color: #fff;
}

.btn-download:hover::after {
    animation: shimmer 0.7s ease forwards;
}

.download-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-download:hover .download-icon {
    animation: bounce-down 0.5s ease infinite;
}

.download-text {
    display: flex;
    flex-direction: column;
}

.download-label {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.3px;
}

.download-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.65);
    margin-top: 3px;
}

.btn-download-badge {
    margin-left: auto;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    flex-shrink: 0;
}

/* ================================================
   GLOBAL STICKY AUDIO PLAYER (PREMIUM DARK)
   ================================================ */

.global-audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #0f0c29, #302b63);
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 -8px 30px rgba(0,0,0,0.4);
    z-index: 9999;
    padding: 12px 20px;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 769px) {
    .global-audio-player {
        bottom: 24px;
        left: 50%;
        width: 90%;
        max-width: 760px;
        border-radius: 100px;
        border-top: none;
        border: 1px solid rgba(255,255,255,0.1);
        transform: translate(-50%, 150%);
        padding: 10px 24px;
    }
}

.global-audio-player.active {
    transform: translateY(0);
}

@media (min-width: 769px) {
    .global-audio-player.active {
        transform: translate(-50%, 0);
    }
}

.player-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.player-info {
    flex: 1;
    min-width: 0;
}

.player-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.custom-player-ui {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 40px;
    width: 100%;
}

.player-control-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform 0.2s;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.player-control-btn svg {
    width: 24px;
    height: 24px;
}

.player-control-btn:hover {
    transform: scale(1.1);
}

.player-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-variant-numeric: tabular-nums;
    min-width: 32px;
    text-align: center;
    flex-shrink: 0;
}

.player-progress-container {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 50px;
}

.player-progress-bar {
    height: 100%;
    background: #fff;
    width: 0%;
    border-radius: 3px;
    transition: width 0.1s linear;
}

.close-player-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
    margin-left: auto;
}

.close-player-btn:hover {
    background: #e74c3c;
    color: #fff;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .player-container {
        flex-direction: column;
        gap: 6px;
    }
    .player-info {
        text-align: center;
    }
    .custom-player-ui {
        padding: 6px 12px;
        gap: 8px;
    }
    .player-time {
        font-size: 10px;
        min-width: 28px;
    }
    .global-audio-player {
        padding: 10px 15px;
    }
}
    }
    }
    .play-global-btn,
    .btn-download { max-width: 100%; }
}

/* ================================================
   AUTHOR INFO SECTION (PREMIUM DESIGN)
   ================================================ */

.author-info {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: 16px;
    margin: 24px 0;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.author-info:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e74c3c;
    padding: 2px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(231,76,60,0.2);
}

.author-name {
    margin: 0 0 4px 0 !important;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 15px;
}

.author-text {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

.author-link {
    color: var(--text-main);
    font-weight: 800;
    text-decoration: none;
    transition: color 0.2s ease;
}

.author-link:hover {
    color: #e74c3c;
}

.verified-badge {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
}

.post-date {
    margin: 0 !important;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-date::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23888" viewBox="0 -960 960 960"><path d="M580-240q-42 0-71-29t-29-71q0-42 29-71t71-29q42 0 71 29t29 71q0 42-29 71t-71 29ZM200-80q-33 0-56.5-23.5T120-160v-560q0-33 23.5-56.5T200-800h40v-80h80v80h320v-80h80v80h40q33 0 56.5 23.5T840-720v560q0 33-23.5 56.5T760-80H200Zm0-80h560v-400H200v400Zm0-480h560v-80H200v80Zm0 0v-80 80Z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
}

@media (max-width: 480px) {
    .author-info {
        padding: 12px 16px;
        gap: 12px;
    }
    .author-avatar {
        width: 48px;
        height: 48px;
    }
    .author-name {
        font-size: 14px;
    }
}

/* ================================================
   DON'T MISS / TRENDING SIDEBAR SECTION
   ================================================ */
.dont-miss-section {
    background: #fff;
    margin-bottom: 30px;
}

.dont-miss-header-container {
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
}

.dont-miss-header {
    background: #0a0a0a;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 4px 4px 0 0;
    line-height: 1;
    text-transform: uppercase;
}

.dont-miss-line {
    flex-grow: 1;
    height: 3px;
    background: #0a0a0a;
}

.dont-miss-featured {
    display: block;
    text-decoration: none;
    margin-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
}
.dont-miss-featured-img {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 12px;
}
.dont-miss-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.dont-miss-featured:hover .dont-miss-featured-img img {
    transform: scale(1.05);
}
.dont-miss-badge {
    display: inline-block;
    border: 1px solid #000;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}
.dont-miss-featured-title {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin: 0;
    line-height: 1.3;
}

.dont-miss-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
}
.dont-miss-list-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.dont-miss-list-img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
}
.dont-miss-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.dont-miss-list-info {
    flex-grow: 1;
}
.dont-miss-list-title {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.4;
}
.dont-miss-list-item:hover .dont-miss-list-title,
.dont-miss-featured:hover .dont-miss-featured-title {
    text-decoration: underline;
}

/* ================================================
   CUSTOM COMMENTS SECTION
   ================================================ */
.custom-comment-form-wrapper {
    margin-top: 20px;
}
.custom-comment-form-wrapper .comment-form-author,
.custom-comment-form-wrapper .comment-form-comment {
    margin: 0 0 16px 0;
}
.custom-comment-form-wrapper .comment-form-author input,
.custom-comment-form-wrapper .comment-form-comment textarea {
    width: 100% !important;
    border: 1px solid #ccc !important;
    border-radius: 8px !important;
    padding: 16px !important;
    font-size: 16px !important;
    font-family: inherit !important;
    box-sizing: border-box !important;
    background: #f9f9f9 !important;
    transition: all 0.3s !important;
    box-shadow: none !important;
    margin: 0 !important;
}
.custom-comment-form-wrapper .comment-form-author input:focus,
.custom-comment-form-wrapper .comment-form-comment textarea:focus {
    border-color: #0a0a0a !important;
    outline: none !important;
    background: #fff !important;
}
.custom-comment-form-wrapper .form-submit {
    margin-bottom: 0 !important;
    margin-top: 10px !important;
}
.custom-submit-btn {
    background: #0a0a0a !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    padding: 14px 28px !important;
    border-radius: 8px !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.3s, transform 0.2s !important;
    width: auto !important;
    display: inline-block !important;
}
.custom-submit-btn:hover {
    background: #000 !important;
    transform: translateY(-2px) !important;
}

/* Hide WordPress native cookie consent checkbox */
.comment-form-cookies-consent {
    display: none !important;
}

/* Space below comment box */
.custom-comments-section {
    margin-bottom: 40px !important;
}

/* ================================================
   PREMIUM FOOTER
   ================================================ */
.premium-footer {
    background-color: #0a0a0a;
    color: #fff;
    padding: 60px 0 0;
    font-family: 'Inter', sans-serif;
    margin-top: 40px;
}
.premium-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}
.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a {
    color: #a3a3a3;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}
.footer-col ul li a:hover {
    color: #fff;
}
.footer-col p {
    color: #a3a3a3;
    font-size: 14px;
    line-height: 1.6;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #262626;
    padding: 24px 0;
}
.footer-copyright {
    color: #a3a3a3;
    font-size: 14px;
}
.footer-social {
    display: flex;
    gap: 16px;
}
.footer-social a {
    color: #fff;
    display: inline-flex;
    transition: transform 0.3s, opacity 0.3s;
}
.footer-social a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .footer-col h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    .footer-col ul li a {
        font-size: 12px;
    }
    .footer-col p {
        font-size: 12px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .footer-col h4 {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .footer-col ul li a {
        font-size: 11px;
    }
    .footer-col p {
        font-size: 11px;
    }
}

/* ================================================
   MUSIC DETAILS & STREAMING PLATFORMS
   ================================================ */
.custom-music-details-box {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.music-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.music-details-list li {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.music-details-list li:last-child {
    margin-bottom: 0;
}
.md-bullet {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #22c55e;
    border-radius: 50%;
}
.md-label {
    color: #333;
}
.md-highlight {
    color: #22c55e;
    font-weight: 600;
    text-decoration: none;
}
.md-highlight:hover {
    text-decoration: underline;
}

.digital-platforms-section {
    margin: 40px 0;
}
.platforms-heading {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a2e;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.platforms-embed {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.platform-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff !important;
    transition: transform 0.2s, opacity 0.2s;
}
.platform-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}
.platform-btn .plat-text {
    font-size: 13px;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.platform-btn .plat-text strong {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
}
/* Brand Colors */
.audiomack-btn {
    background: linear-gradient(90deg, #ffa800, #ff8c00);
}
.youtube-btn {
    background: linear-gradient(90deg, #ff0000, #cc0000);
}
.spotify-btn {
    background: linear-gradient(90deg, #1db954, #1aa34a);
}
.apple-btn {
    background: linear-gradient(90deg, #fa243c, #fb3c50);
}

@media (max-width: 600px) {
    .platforms-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   NEW COMMENT SYSTEM STYLES
   ================================================ */
.comments-count-title {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 10px;
}
.comments-sorting-bar {
    border-top: 3px solid #000;
    padding-top: 20px;
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}
.sorting-dropdown {
    position: relative;
}
.sorting-btn {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #111;
}
.sorting-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 5px);
    background: #111;
    border-radius: 8px;
    min-width: 160px;
    display: none;
    flex-direction: column;
    z-index: 100;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.sorting-menu.show {
    display: flex;
}
.sorting-menu a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #222;
    transition: background 0.2s;
}
.sorting-menu a:last-child {
    border-bottom: none;
}
.sorting-menu a:hover {
    background: #222;
}
.sorting-menu a.active {
    font-weight: 700;
}

/* Empty State */
.no-comments-yet {
    border: 1px dashed #d1d5db;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f9fafb;
}
.no-comments-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    color: #111;
}
.no-comments-text strong {
    display: block;
    font-size: 16px;
    color: #111;
}
.no-comments-text p {
    font-size: 14px;
    color: #6b7280;
    margin: 4px 0 0 0;
}

/* Comment Cards */
.custom-styled-comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.custom-styled-comment-list li {
    display: block !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    margin: 0 !important;
}
.custom-styled-comment-list .children {
    list-style: none;
    padding-left: 40px;
    margin: 0;
}
.custom-comment-card {
    margin-bottom: 20px;
}
.comment-card-inner {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
@media (max-width: 600px) {
    .custom-styled-comment-list .children {
        padding-left: 15px;
    }
    .comment-card-inner {
        padding: 15px;
    }
    .comment-avatar img {
        width: 32px;
        height: 32px;
    }
    .comment-author-name {
        font-size: 14px;
    }
    .comment-time {
        font-size: 12px;
    }
    .comment-card-body {
        font-size: 14px;
    }
    .action-btn {
        padding: 4px 10px;
        font-size: 12px;
    }
    .action-reply-link a {
        padding: 4px 12px;
        font-size: 12px;
    }
}
.comment-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.comment-avatar img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    object-fit: cover;
}
.comment-meta-info {
    display: flex;
    flex-direction: column;
}
.comment-author-name {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}
.comment-time {
    font-size: 13px;
    color: #6b7280;
}
.comment-card-body {
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 20px;
}
.comment-card-body p {
    margin: 0 0 10px 0;
}
.comment-card-body p:last-child {
    margin: 0;
}
.comment-card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: none;
    border-radius: 20px;
    background: #f3f4f6;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
}
.action-btn:hover {
    background: #e5e7eb;
}
.action-btn.voted {
    opacity: 0.7;
    cursor: default;
}
.action-reply-link a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border: 1px solid #22c55e;
    border-radius: 20px;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #22c55e;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}
.action-reply-link a:hover {
    background: #f0fdf4;
}

/* ================================================
   SIDEBAR PROFESSIONAL WIDGETS
   ================================================ */
.sidebar-wrapper {
    display: flex;
    flex-direction: column;
    width: 320px;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .sidebar-wrapper {
        width: 100%;
        margin-top: 20px;
    }
}

.sidebar-video-widget {
    margin-top: 30px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.sidebar-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}
.sidebar-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.sidebar-newsletter-widget {
    margin-top: 30px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.newsletter-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 15px;
}
.sidebar-newsletter-widget h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #fff;
}
.sidebar-newsletter-widget p {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.5;
}
.newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    margin-bottom: 15px;
    font-size: 14px;
    transition: border-color 0.3s;
    box-sizing: border-box !important;
}
.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #22c55e;
}
.newsletter-form input[type="email"]::placeholder {
    color: #94a3b8;
}
.newsletter-form button {
    width: 100%;
    padding: 14px;
    background: #22c55e;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.1s;
    box-sizing: border-box !important;
}
.newsletter-form button:hover {
    background: #16a34a;
}
.newsletter-form button:active {
    transform: translateY(2px);
}
