/* ===== BLOG DETAIL PAGE STYLES ===== */

/* General Body Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* ===== BLOG DETAIL BANNER ===== */
.blog-detail-banner {
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    color: white;
    padding: 100px 0 60px 0;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-detail-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgODAwIDgwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZGVmcz4KICAgIDxmaWx0ZXIgaWQ9Im5vaXNlIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIj4KICAgICAgPGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuNzUiIG51bU9jdGF2ZXM9IjQiIHN0aXRjaFRpbGVzPSJzdGl0Y2hBZnRlclNlYW1iZXIiIHNlZWQ9IjEiLz4KICAgICAgPGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPgogICAgICA8ZmVDb21wb3NpdGUgb3BlcmF0b3I9ImluIiBpbjI9IlNvdXJjZUdyYXBoaWMiLz4KICAgICAgPGZlQ29tcG9zaXRlIG9wZXJhdG9yPSJpbiIgaW49IlNvdXJjZUdyYXBoaWMiIGluMj0iRmVUcmFuc2Zvcm0iLz4KICAgIDwvZGVmcz4KICA8cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjZmZmZmZmIiBmaWx0ZXI9InVybCgjbm9pc2UpIiBvcGFjaXR5PSIwLjEiLz4KPC9zdmc+') repeat;
    opacity: 0.1;
    z-index: 0;
}

.blog-detail-banner-content {
    position: relative;
    z-index: 1;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-nav {
    margin-bottom: 30px;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: "→";
}

/* ===== BLOG META ===== */
.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-category {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-date,
.blog-read-time {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== BLOG TITLE ===== */
.blog-detail-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.blog-detail-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

/* ===== AUTHOR INFO ===== */
.author-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-details p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.blog-stats {
    display: flex;
    gap: 20px;
    margin-left: auto;
    flex-wrap: wrap;
}

.blog-stat {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== BLOG CONTENT ===== */
.blog-detail-content {
    padding: 60px 0;
    background: white;
}

.blog-article {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(111, 66, 193, 0.1);
}

/* ===== FEATURED IMAGE ===== */
.blog-featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 40px;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-featured-image:hover img {
    transform: scale(1.05);
}

/* ===== BLOG CONTENT ===== */
.blog-content {
    padding: 0 40px 40px 40px;
}

/* Markdown card and body (purple theme harmony) */
.markdown-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(111, 66, 193, 0.08);
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4 {
    color: #6f42c1;
}

.markdown-body p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.markdown-body ul {
    margin: 16px 0;
    padding-left: 24px;
}

.markdown-body li {
    margin-bottom: 8px;
}

.markdown-body hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, rgba(111,66,193,0), rgba(111,66,193,0.5), rgba(111,66,193,0));
    margin: 24px 0;
}

.markdown-body code {
    background: #f8f9fa;
    color: #6f42c1;
    padding: 2px 6px;
    border-radius: 4px;
}

.markdown-body pre {
    background: #0d0f14;
    color: #e9ecef;
    border-radius: 12px;
    padding: 18px;
    overflow-x: auto;
    border: 1px solid #1c2030;
    box-shadow: inset 0 0 0 1px rgba(111, 66, 193, 0.08);
}

.markdown-body pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

/* Ensure plain (un-tokenized) code and tokens default are readable */
/* Inline code on light sections stays dark for readability */
.markdown-body p code,
.markdown-body li code,
.blog-content p code,
.blog-content li code { color: #111; }

/* Prism token overrides for light-on-dark and light backgrounds */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata { color: #7f8c8d; }
.token.punctuation { color: #34495e; }
.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted { color: #e74c3c; }
.token.boolean,
.token.number { color: #d35400; }
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted { color: #27ae60; }
.token.operator,
.token.entity,
.token.url { color: #8e44ad; }
.token.atrule,
.token.attr-value,
.token.keyword { color: #6f42c1; }
.token.function,
.token.class-name { color: #2980b9; }
.token.regex,
.token.important,
.token.variable { color: #16a085; }

/* Ensure code blocks default to readable light text on dark bg */
.markdown-body pre,
.markdown-body pre code { color: #e9ecef; }

.blog-content h2 {
    color: #6f42c1;
    font-size: 2rem;
    font-weight: 600;
    margin: 40px 0 20px 0;
    line-height: 1.3;
}

.blog-content h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
    line-height: 1.4;
}

.blog-content h4 {
    color: #6f42c1;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 25px 0 10px 0;
    line-height: 1.4;
}

.blog-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-content li {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* ===== CODE BLOCKS ===== */
.blog-content pre {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.blog-content code {
    background: #f8f9fa;
    color: #111; /* inline code koyu metin, beyaz zeminde kaybolmasın */
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

/* Markdown içindeki code block'ları her zaman koyu tema olsun */
/* Markdown kod blokları: açık zemin, koyu metin */
.markdown-body pre,
.markdown-body pre[class*="language-"] {
    background: #f8f9fa !important;
    color: #111 !important;
    border: 1px solid #e9ecef !important;
    box-shadow: none !important;
}
.markdown-body pre code,
.markdown-body pre[class*="language-"] code {
    color: #111 !important;
}

/* ===== TOOLS GRID ===== */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.tool-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(111, 66, 193, 0.1);
}

.tool-card i {
    font-size: 2rem;
    color: #6f42c1;
    margin-bottom: 15px;
}

.tool-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #333;
}

.tool-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* ===== BLOG TAGS ===== */
.blog-tags-section {
    padding: 30px 40px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.blog-tags-section h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-tag {
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.3);
}

/* ===== SOCIAL SHARE ===== */
.social-share {
    padding: 30px 40px;
    background: white;
    border-top: 1px solid #e9ecef;
}

.social-share h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.facebook {
    background: #4267b2;
    color: white;
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===== SIDEBAR ===== */
.blog-sidebar {
    padding-left: 30px;
}

.sidebar-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(111, 66, 193, 0.1);
    border: 1px solid #e9ecef;
}

.sidebar-card h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* ===== AUTHOR CARD ===== */
.author-card .author-info {
    flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
}

.author-card .author-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px auto;
}

.author-card .author-details h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.author-card .author-details p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.author-bio {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.author-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #6f42c1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #6f42c1;
    color: white;
    transform: translateY(-2px);
}

/* ===== RELATED POSTS ===== */
.related-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.related-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-post-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-content h5 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.related-post-content a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-content a:hover {
    color: #6f42c1;
}

.related-post-date {
    color: #666;
    font-size: 0.8rem;
}

/* ===== NEWSLETTER ===== */
.newsletter p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #6f42c1;
}

.newsletter-form button {
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    color: white;
    padding: 60px 0 30px 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgODAwIDgwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZGVmcz4KICAgIDxmaWx0ZXIgaWQ9Im5vaXNlIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIj4KICAgICAgPGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuNzUiIG51bU9jdGF2ZXM9IjQiIHN0aXRjaFRpbGVzPSJzdGl0Y2hBZnRlclNlYW1iZXIiIHNlZWQ9IjEiLz4KICAgICAgPGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPgogICAgICA8ZmVDb21wb3NpdGUgb3BlcmF0b3I9ImluIiBpbjI9IlNvdXJjZUdyYXBoaWMiLz4KICAgICAgPGZlQ29tcG9zaXRlIG9wZXJhdG9yPSJpbiIgaW49IlNvdXJjZUdyYXBoaWMiIGluMj0iRmVUcmFuc2Zvcm0iLz4KICAgIDwvZGVmcz4KICA8cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjZmZmZmZmIiBmaWx0ZXI9InVybCgjbm9pc2UpIiBvcGFjaXR5PSIwLjEiLz4KPC9zdmc+') repeat;
    opacity: 0.1;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-profile {
    text-align: center;
    margin-bottom: 20px;
}

.footer-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.footer-photo:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.footer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.footer-title {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.footer-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    position: relative;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link:hover::before {
    opacity: 1;
    left: -15px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.footer-social-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer-social-link i {
    width: 20px;
    margin-right: 12px;
    font-size: 1.1rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-contact-item i {
    width: 20px;
    margin-right: 12px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 30px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-bottom-link:hover {
    color: white;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .blog-detail-banner {
        padding: 80px 0 40px 0;
    }
    
    .blog-detail-title {
        font-size: 2.2rem;
    }
    
    .blog-detail-subtitle {
        font-size: 1.1rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-stats {
        margin-left: 0;
        justify-content: center;
    }
    
    .blog-content {
        padding: 0 20px 20px 20px;
    }
    
    .blog-content h2 {
        font-size: 1.6rem;
    }
    
    .blog-content h3 {
        font-size: 1.3rem;
    }
    
    .blog-content h4 {
        font-size: 1.1rem;
    }
    
    .blog-content p {
        font-size: 1rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-tags-section,
    .social-share {
        padding: 20px;
    }
    
    .blog-sidebar {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .footer {
        padding: 40px 0 20px 0;
    }
    
    .footer-profile {
        text-align: left;
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .footer-photo {
        width: 80px;
        height: 80px;
        margin: 0 20px 0 0;
    }
    
    .footer-name {
        font-size: 1.3rem;
    }
    
    .footer-title {
        font-size: 0.9rem;
    }
    
    .footer-description {
        text-align: left;
        font-size: 0.85rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 20px;
    }
    
    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .blog-detail-banner {
        padding: 60px 0 30px 0;
    }
    
    .blog-detail-title {
        font-size: 1.8rem;
    }
    
    .blog-detail-subtitle {
        font-size: 1rem;
    }
    
    .blog-featured-image {
        height: 250px;
    }
    
    .blog-content {
        padding: 0 15px 15px 15px;
    }
    
    .blog-content h2 {
        font-size: 1.4rem;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
    }
    
    .blog-content h4 {
        font-size: 1rem;
    }
    
    .blog-content p {
        font-size: 0.95rem;
    }
    
    .blog-tags-section,
    .social-share {
        padding: 15px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
    }
    
    .footer {
        padding: 30px 0 15px 0;
    }
    
    .footer-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-photo {
        width: 70px;
        height: 70px;
        margin: 0 auto 15px auto;
    }
    
    .footer-name {
        font-size: 1.2rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ===== GOOGLE AD CARD ===== */
.google-ad {
    margin-top: 30px;
}

.google-ad h4 {
    color: #6f42c1;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.ad-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}

/* Google AdSense Styling */
.adsbygoogle {
    width: 300px !important;
    height: 250px !important;
    display: block !important;
    margin: 0 auto;
}

.ad-placeholder {
    width: 300px;
    height: 250px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px dashed #6f42c1;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #6f42c1;
    transition: all 0.3s ease;
}

.ad-placeholder:hover {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.2);
}

.ad-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #6f42c1;
}

.ad-placeholder p {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: #6f42c1;
}

.ad-size {
    font-size: 0.8rem;
    color: #8e44ad;
    background: rgba(111, 66, 193, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
}

/* Responsive Google Ad */
@media (max-width: 768px) {
    .ad-placeholder {
        width: 100%;
        max-width: 300px;
        height: 200px;
    }
    
    .ad-placeholder i {
        font-size: 2rem;
    }
    
    .ad-placeholder p {
        font-size: 0.9rem;
    }
}
