/* === Reset & Global Styles === */
:root {
    --primary-black: #1a1a1a;
    --primary-white: #ffffff;
    --text-gray: #555555;
    --border-gray: #e5e5e5;
    --accent-orange: #ff6600;
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--primary-white);
    color: var(--primary-black);
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* === Header === */
.site-header {
    border-bottom: 1px solid var(--border-gray);
    padding: 15px 0;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 50px;
}
.header-ad img {
    max-width: 728px;
    height: auto;
    display: block;
}

/* === Navigation === */
.main-nav {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 5px 0;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav ul {
    list-style-type: none;
    display: flex;
}
.main-nav li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}
.main-nav li a:hover {
    background-color: var(--accent-orange);
}
.search-form {
    display: flex;
}
.search-form input {
    border: 1px solid #444;
    background-color: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 4px 0 0 4px;
    outline: none;
}
.search-form button {
    background-color: var(--accent-orange);
    border: none;
    color: white;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}

/* === Main Content Area === */
.content-area {
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* === Article === */
.main-article { max-width: 100%; }
.breadcrumbs {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 20px;
}
.breadcrumbs a:hover { text-decoration: underline; }
.main-article h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}
.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-gray);
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
    padding: 10px 0;
    margin-bottom: 20px;
}
.rating .stars { color: var(--accent-orange); font-size: 18px; }
.social-share { display: flex; gap: 10px; margin-bottom: 25px; }
.share-btn {
    border: none;
    color: white;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.share-btn:hover { opacity: 0.85; }
.share-btn.facebook { background-color: #1877F2; }
.share-btn.twitter { background-color: #1DA1F2; }
.share-btn.whatsapp { background-color: #25D366; }
.article-content p { font-size: 16px; margin-bottom: 20px; color: var(--primary-black); }
.article-content strong { font-weight: 700; }

/* === Sidebar === */
.sidebar-widget { position: sticky; top: 40px; }
.featured-image-sidebar { width: 100%; height: auto; border-radius: 8px; margin-bottom: 20px; }
.cta-button {
    display: block;
    width: 100%;
    background-color: var(--accent-orange);
    color: var(--primary-white);
    text-align: center;
    padding: 18px 20px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4); }

/* === Footer === */
.site-footer {
    background-color: var(--primary-black);
    color: #ccc;
    padding-top: 40px;
    font-size: 14px;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}
.footer-column h4 {
    color: var(--primary-white);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-orange);
}
.footer-logo { height: 40px; margin-bottom: 15px; }
.footer-column p { line-height: 1.8; }
.footer-column.links ul { list-style: none; }
.footer-column.links li { margin-bottom: 10px; }
.footer-column.links a { color: #ccc; transition: color 0.3s ease; }
.footer-column.links a:hover { color: var(--accent-orange); }
.footer-column.contact p { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.footer-column.contact i { color: var(--accent-orange); margin-top: 5px; }
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #333;
    font-size: 13px;
}

/* === Responsive Design === */
@media (max-width: 992px) {
    .content-area { grid-template-columns: 1fr; }
    .header-ad { display: none; }
    .header-container { justify-content: center; }
    .nav-container { flex-direction: column; gap: 10px; }
}
@media (max-width: 768px) {
    .main-article h1 { font-size: 28px; }
    .main-nav ul { flex-wrap: wrap; justify-content: center; }
    .article-meta { flex-direction: column; align-items: flex-start; gap: 5px; }
    .social-share { flex-wrap: wrap; }
}

/* === Comments Section CSS === */
.comments-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-gray);
}
.comments-section h3 {
    font-size: 24px;
    margin-bottom: 30px;
}
.comment {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-gray);
}
.comment-list .comment:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.comment-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
.comment-body {
    flex-grow: 1;
}
.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}
.comment-author {
    font-weight: 600;
    font-size: 16px;
}
.comment-date {
    font-size: 13px;
    color: var(--text-gray);
}
.comment-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--primary-black);
}
.comment-form {
    margin-top: 40px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}
.comment-form h4 {
    font-size: 20px;
    margin-bottom: 20px;
}
.comment-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-gray);
    border-radius: 5px;
    font-family: var(--font-family);
    font-size: 15px;
    margin-bottom: 15px;
}
.comment-form button {
    background-color: var(--primary-black);
    color: var(--primary-white);
    border: none;
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.comment-form button:hover {
    background-color: var(--accent-orange);
}