h1 {
    font-size: 2.75rem;
    margin-bottom: 3rem;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
    position: relative;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00CC52, #2584C4);
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 204, 82, 0.2);
}

/* Search Form - Professional Design */
#search-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#search-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00CC52, #2584C4, #00CC52);
    background-size: 200% 100%;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

#search-form input[type="text"] {
    flex: 1;
    padding: 1.1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    min-width: 250px;
    background: #f8f9fa;
    color: #2D3748;
    font-weight: 500;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

#search-form input[type="text"]:focus {
    border-color: #00CC52;
    box-shadow: 0 0 0 3px rgba(0, 204, 82, 0.15);
    background: white;
    transform: translateY(-1px);
}

#search-form input[type="text"]::placeholder {
    color: #6c757d;
    font-weight: 400;
}

#search-form button {
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, #00CC52, #009f3e);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 204, 82, 0.25);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#search-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

#search-form button:hover::before {
    left: 100%;
}

#search-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 204, 82, 0.35);
    background: linear-gradient(135deg, #00d959, #00a844);
}

#search-form button:active {
    transform: translateY(-1px);
}

/* Blog Posts Container (Generic) - Professional Design */
body > div:not(.header):not(.footer):not([class]) {
    max-width: 1200px;
    margin: 0 auto 2.5rem auto;
    padding: 2.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

body > div:not(.header):not(.footer):not([class])::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00CC52, #2584C4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    opacity: 0.9;
}

body > div:not(.header):not(.footer):not([class]):hover::before {
    transform: scaleX(1);
}

body > div:not(.header):not(.footer):not([class]):hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* Blog Post Styling (Generic) - Professional Typography */
body > div:not(.header):not(.footer):not([class]) h2 {
    font-size: 1.85rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.3px;
    color: #2D3748;
}

body > div:not(.header):not(.footer):not([class]) h2 a {
    text-decoration: none;
    color: #2D3748;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

body > div:not(.header):not(.footer):not([class]) h2 a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00CC52, #2584C4);
    transition: width 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
    border-radius: 2px;
}

body > div:not(.header):not(.footer):not([class]) h2 a:hover::after {
    width: 100%;
}

body > div:not(.header):not(.footer):not([class]) h2 a:hover {
    color: #00CC52;
    transform: translateX(3px);
}

body > div:not(.header):not(.footer):not([class]) p {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    font-weight: 500;
}

body > div:not(.header):not(.footer):not([class]) p::before {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    color: #00CC52;
    font-size: 0.9rem;
}

/* Pagination Container - Professional Design */
body > div:last-of-type {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 3.5rem;
    flex-wrap: wrap;
    background: white !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06) !important;
    padding: 1.8rem !important;
    border-radius: 16px !important;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

body > div:last-of-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2584C4, #00CC52, #2584C4);
    background-size: 200% 100%;
    animation: gradientShift 4s ease-in-out infinite;
    opacity: 0.9;
}

body > div:last-of-type:hover {
    transform: none !important;
}

body > div:last-of-type a {
    padding: 0.75rem 1.1rem;
    text-decoration: none;
    color: #2D3748;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
    min-width: 42px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

body > div:last-of-type a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 204, 82, 0.1), transparent);
    transition: left 0.5s;
}

body > div:last-of-type a:hover::before {
    left: 100%;
}

body > div:last-of-type a:hover {
    background: linear-gradient(135deg, #00CC52, #009f3e);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 204, 82, 0.25);
}

/* Current page (bold) styling - Professional Design */
body > div:last-of-type a[style*="font-weight: bold"] {
    background: linear-gradient(135deg, #00CC52, #009f3e);
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 15px rgba(0, 204, 82, 0.25);
    position: relative;
    font-weight: 600;
}

body > div:last-of-type a[style*="font-weight: bold"]::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    transform: translateX(-50%);
}

/* No Results/Search Results Message - Professional Design */
body > p {
    text-align: center;
    font-size: 1.2rem;
    margin: 3.5rem auto;
    color: #2D3748;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    max-width: 600px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    font-weight: 500;
    position: relative;
    overflow: hidden;
    line-height: 1.6;
}

body > p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2584C4, #00CC52);
    opacity: 0.9;
}

body > p strong {
    color: #00CC52;
    font-weight: 700;
}

/* Add some breathing room between elements */
body > div:not(.header):not(.footer):not([class]) + div:not(.header):not(.footer):not([class]) {
    margin-top: 2rem;
}

/* Back to Blog Link - Professional Design */
.back-to-blog {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #2D3748;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.85rem 1.6rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1.5rem;
}

.back-to-blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 204, 82, 0.2), transparent);
    transition: left 0.5s ease;
}

.back-to-blog:hover::before {
    left: 100%;
}

.back-to-blog:hover {
    color: white;
    background: linear-gradient(135deg, #00CC52, #2584C4);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 204, 82, 0.25);
}

.back-to-blog:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 204, 82, 0.2);
}

.back-to-blog i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
    color: inherit;
    transition: transform 0.3s ease;
}

.back-to-blog:hover i {
    transform: translateX(-3px);
}

/* Clear Search Link */
#search-form .clear-search {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #2D4359;
    font-family: Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#search-form .clear-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #2584C4, #00CC52);
    transition: width 0.4s ease;
    z-index: -1;
}

#search-form .clear-search:hover::before {
    width: 100%;
}

#search-form .clear-search:hover {
    color: white;
    border-color: #2584C4;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 204, 82, 0.3);
}

#search-form .clear-search:active {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 204, 82, 0.2);
}

#search-form .clear-search i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
    color: inherit;
    transition: transform 0.3s ease;
}

#search-form .clear-search:hover i {
    transform: rotate(-90deg);
}

/* Blog Post Preview Container */
.blog-post-preview {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    margin: 0 auto 2rem auto;
    max-width: 1200px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-post-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00CC52, #2584C4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.blog-post-preview:hover::before {
    transform: scaleX(1);
}

.blog-post-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Thumbnail Styling (Blog Preview) */
.thumbnail-container {
    flex: 0 0 auto;
    width: 200px;
    height: 120px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.post-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.blog-post-preview:hover .post-thumbnail {
    transform: scale(1.05);
}

/* Post Content Styling (Blog Preview) */
.post-content {
    flex: 1;
}

.blog-post-preview h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.blog-post-preview h2 a {
    text-decoration: none;
    color: #2D4359;
    transition: all 0.3s ease;
    position: relative;
}

.blog-post-preview h2 a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00CC52, #2584C4);
    transition: width 0.3s ease;
}

.blog-post-preview h2 a:hover::after {
    width: 100%;
}

.blog-post-preview h2 a:hover {
    color: #00CC52;
}

/* Meta Description Styling (Blog Preview) */
.post-description {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-weight: 400;
    max-width: 600px;
}

/* Date Styling (Blog Preview) */
.post-date {
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.post-date::before {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    color: #00CC52;
    font-size: 0.85rem;
}

/* Blog Post Content Container (Post Page) */
.post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.post-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00CC52, #2584C4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.post-container:hover::before {
    transform: scaleX(1);
}

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

/* Thumbnail Styling (Post Page) */
.post-hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    margin: 1.5rem auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.post-hero-image:hover {
    transform: scale(1.02);
}

/* Post Content Styling (Post Page) */
.post-content-text {
    font-size: 1.1rem;
    color: #2D4359;
    line-height: 1.8;
    margin: 1.5rem 0;
    font-weight: 400;
}

.post-content-text p {
    margin-bottom: 1.5rem;
}

/* Post Date Styling (Post Page) */
.post-meta-date {
    font-size: 0.95rem;
    color: #6c757d;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.post-meta-date::before {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    color: #00CC52;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    body > div:not(.header):not(.footer):not([class]) {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
        padding: 1.5rem;
    }

    .post-container {
        margin: 0 1.5rem;
        padding: 1.5rem;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    #search-form {
        margin-bottom: 3rem;
        padding: 1.5rem;
    }
    
    body > div:not(.header):not(.footer):not([class]) {
        margin-left: 1rem;
        margin-right: 1rem;
        padding: 1.5rem;
    }
    
    body > div:last-of-type {
        padding: 1.5rem !important;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .post-container {
        margin: 0 1rem;
        padding: 1.5rem;
    }

    .post-hero-image {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    #search-form {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }

    #search-form input[type="text"],
    #search-form button,
    #search-form .clear-search {
        width: 100%;
        max-width: 350px;
        min-width: unset;
    }

    #search-form input[type="text"] {
        margin-bottom: 1rem;
    }

    #search-form .clear-search {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    body > div:not(.header):not(.footer):not([class]) {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        padding: 1.5rem 1rem;
    }
    
    body > div:not(.header):not(.footer):not([class]) h2 {
        font-size: 1.6rem;
    }

    body > div:last-of-type {
        padding: 1.5rem 0.5rem !important;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
    
    body > div:last-of-type a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        min-width: 40px;
    }

    .back-to-blog {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .blog-post-preview {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        margin: 0 0.5rem 1.5rem 0.5rem;
    }

    .thumbnail-container {
        width: 100%;
        height: 180px;
    }

    .blog-post-preview h2 {
        font-size: 1.6rem;
    }

    .post-description {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .post-date {
        font-size: 0.85rem;
    }

    .post-container {
        margin: 0 0.5rem;
        padding: 1rem;
    }

    .post-hero-image {
        max-height: 300px;
        margin: 1rem auto;
    }

    .post-content-text {
        font-size: 1rem;
    }

    .post-meta-date {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    #search-form {
        padding: 1rem;
    }
    
    body > div:not(.header):not(.footer):not([class]) {
        border-radius: 15px;
        margin-left: 0.25rem;
        margin-right: 0.25rem;
    }
    
    body > div:last-of-type {
        border-radius: 15px !important;
        margin-left: 0.25rem;
        margin-right: 0.25rem;
    }
    
    body > div:last-of-type a {
        padding: 0.5rem 0.8rem;
        min-width: 35px;
    }

    .back-to-blog,
    #search-form .clear-search {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        border-radius: 12px;
    }

    .blog-post-preview {
        border-radius: 12px;
        padding: 0.75rem;
        margin: 0 0.25rem 1rem 0.25rem;
    }

    .thumbnail-container {
        height: 150px;
    }

    .blog-post-preview h2 {
        font-size: 1.4rem;
    }

    .post-description {
        font-size: 0.9rem;
    }

    .post-date {
        font-size: 0.8rem;
    }

    .post-container {
        margin: 0 0.25rem;
        padding: 0.75rem;
        border-radius: 15px;
    }

    .post-hero-image {
        max-height: 250px;
        margin: 0.75rem auto;
    }

    .post-content-text {
        font-size: 0.95rem;
    }

    .post-meta-date {
        font-size: 0.85rem;
    }
}

/* Override existing blog post container styles */
body > div:not(.header):not(.footer):not([class]):not(.pagination) {
    background: none;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
}

body > div:not(.header):not(.footer):not([class]):not(.pagination)::before,
body > div:not(.header):not(.footer):not([class]):not(.pagination):hover::before {
    display: none;
}

body > div:not(.header):not(.footer):not([class]):not(.pagination):hover {
    transform: none;
    box-shadow: none;
}



/* Blog Post Content Styling (post.php) */
body > h1 + img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

body > h1 + img:hover {
    transform: scale(1.02);
}

body > h1 + img + p {
    font-size: 1.2rem;
    color: #2D4359;
    line-height: 1.9;
    margin: 2rem auto;
    max-width: 1200px;
    font-weight: 400;
    font-family: 'Georgia', serif;
    text-align: justify;
    padding: 0 1rem;
}

body > h1 + img + p + p small {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
    display: block;
    margin: 1rem auto;
    max-width: 1200px;
    padding: 0 1rem;
}

body > h1 + img + p + p small::before {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    color: #00CC52;
    font-size: 0.8rem;
}

body > center {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}







































































/* Blog Post Content Styling (post.php) - Enhanced */
body > h1 + img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    margin: 3rem auto;
    display: block;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

body > h1 + img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(0, 204, 82, 0.03) 0%, 
        rgba(26, 42, 68, 0.02) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

body > h1 + img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 204, 82, 0.1);
}

body > h1 + img:hover::before {
    opacity: 1;
}

.main-content-text {
    font-size: 1.35rem;
    color: #1A2A44;
    line-height: 2.2;
    margin: 3.5rem auto;
    max-width: 1200px;
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-align: left;
    padding: 2.5rem 3rem;
    letter-spacing: 0.015em;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(248, 250, 252, 0.8) 100%
    );
    border-radius: 16px;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.main-content-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00CC52 0%, #00a842 100%);
    border-radius: 0 2px 2px 0;
}

.post-date {
    max-width: 1200px;
    margin: 1rem auto;
    padding: 0 3rem;
    position: relative;
}

.post-date small {
    font-size: 1rem;
    color: #6B7280;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: inline-flex;
    align-items: center;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 204, 82, 0.1);
    transition: all 0.3s ease;
}

.post-date small:hover {
    background: rgba(0, 204, 82, 0.05);
    border-color: rgba(0, 204, 82, 0.2);
    transform: translateY(-2px);
}

.post-date small::before {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 0.75rem;
    color: #00CC52;
    font-size: 0.85rem;
    line-height: 1;
    background: linear-gradient(135deg, #00CC52, #00a842);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Prevent duplicate icons from generic rule */
body > p.post-date::before {
    content: none;
}

body > center {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Responsive Design for post.php */
@media (max-width: 992px) {
    body > h1 + img {
        max-height: 500px;
        margin: 2.5rem auto;
        border-radius: 18px;
    }

    .main-content-text {
        font-size: 1.3rem;
        margin: 3rem auto;
        padding: 2.25rem 2.5rem;
    }

    .post-date {
        padding: 0 2.5rem;
    }

    body > center {
        padding: 0 2.5rem;
    }
}

@media (max-width: 768px) {
    body > h1 + img {
        max-height: 400px;
        margin: 2rem auto;
        border-radius: 16px;
    }

    .main-content-text {
        font-size: 1.25rem;
        margin: 2.5rem auto;
        padding: 2rem 2rem;
        border-radius: 14px;
    }

    .post-date {
        padding: 0 2rem;
        margin: 0.75rem auto;
    }

    .post-date small {
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    body > center {
        padding: 0 2rem;
    }
}

@media (max-width: 480px) {
    body > h1 + img {
        max-height: 300px;
        margin: 1.5rem auto;
        border-radius: 14px;
    }

    .main-content-text {
        font-size: 1.2rem;
        margin: 2rem auto;
        padding: 1.75rem 1.5rem;
        border-radius: 12px;
    }

    .post-date {
        padding: 0 1.5rem;
        margin: 0.5rem auto;
    }

    .post-date small {
        padding: 0.5rem 0.85rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .post-date small::before {
        margin-right: 0.6rem;
        font-size: 0.8rem;
    }

    body > center {
        padding: 0 1.5rem;
    }
}









 