* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e1e5e9;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo-placeholder {
    background-color: transparent;
    padding: 10px 20px;
    border: none;
    font-weight: bold;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advertorial {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sponsored {
    font-size: 0.9rem;
    color: #666;
}

/* Main Content */
.main {
    padding: 2rem 0;
}

.article {
    max-width: 800px;
    margin: 0 auto;
}

.article-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}
.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    background-color: #f0f0f0;
    border-radius: 50%;
    border: 2px dashed #ccc;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
}

.article-date {
    color: #666;
    font-size: 0.9rem;
}

.date-label {
    margin-right: 0.5rem;
}

.article-image {
    margin-bottom: 2rem;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background-color: #f8f9fa;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 500;
}

.article-content {
    font-size: 18px;
    line-height: 1.8;
}

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

.article-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem 0;
    color: #1a1a1a;
}

.article-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}


.disclaimer {
    margin-top: 2rem;
    text-align: center;
}

.disclaimer p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Footer */
.footer {
    background-color: #f0f0f0;
    margin-top: 4rem;
    padding: 3rem 0 2rem 0;
}

.newsletter-section {
    background-color: #d0d0d0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.piggy-bank {
    flex-shrink: 0;
}

.piggy-placeholder {
    width: 80px;
    height: 60px;
    background-color: #f8f9fa;
    border: 2px dashed #999;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.newsletter-text p {
    color: #666;
    margin: 0;
}

.newsletter-signup {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.email-input {
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    width: 200px;
}

.subscribe-btn {
    padding: 12px 24px;
    background-color: #2dd4bf;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #14b8a6;
}

.footer-brand {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo .logo-placeholder {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #7c3aed;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-description {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #ccc;
    padding-top: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
}

.back-to-top.visible {
    display: flex;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .advertorial {
        position: static;
        transform: none;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .newsletter-signup {
        flex-direction: column;
        align-items: center;
    }
    
    .email-input {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .article-title {
        font-size: 32px;
    }
    
    .article-content {
        font-size: 18px;
    }
    
    .image-placeholder {
        height: 200px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .author-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    #i5gij {
        display: none;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1023px) {
    .article-title {
        font-size: 40px;
    }
    
    .article-content {
        font-size: 20px;
    }
    
    .footer-links a {
        font-size: 16px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .article-title {
        font-size: 48px;
    }
    
    .article-content {
        font-size: 22px;
    }
    
    .footer-links a {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 28px;
    }
   .logo-placeholder img {
        max-width: 180px; 
        height: auto;
    }
    
    .logo-placeholder {
        padding: 5px 10px;
    }
}
.article-meta {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e1e5e9;
    position: relative;
}

.advertorial-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (max-width: 768px) {
    .advertorial-right {
        position: static;
        text-align: right;
        margin-top: 0.5rem;
        transform: none; /* Remove transform on mobile */
    }
}