* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#whychooseusBlog {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
    width: 0%;
    z-index: 1000;
    transition: width 0.3s ease;
}

/* Navigation */
.blog-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 40px;
    z-index: 999;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.back-btn:hover {
    color: #7877c6;
    transform: translateX(-5px);
}

/* Hero Section */
.blog-hero {
    position: relative;
    padding: 200px 20px 100px;
    background: linear-gradient(180deg, rgba(120, 119, 198, 0.1) 0%, transparent 100%);
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.blog-category-hero {
    display: inline-block;
    background: rgba(120, 119, 198, 0.2);
    color: #7877c6;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    border: 1px solid rgba(120, 119, 198, 0.3);
    animation: fadeInUp 0.6s ease-out;
}

.blog-title-hero {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #7877c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.blog-meta-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    color: #888;
    font-size: 16px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Animated Background Elements */
.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #7877c6 0%, transparent 70%);
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #ff77c6 0%, transparent 70%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Main Content */
.blog-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Table of Contents */
.table-of-contents {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 60px;
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.toc-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #7877c6;
}

.toc-list {
    list-style: none;
}

.toc-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.toc-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #7877c6;
    transition: transform 0.3s ease;
}

.toc-list li:hover::before {
    transform: translateX(5px);
}

.toc-list a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.toc-list a:hover {
    color: #7877c6;
    padding-left: 5px;
}

/* Blog Content Styles */
.blog-content {
    animation: fadeIn 0.8s ease-out 0.8s both;
}

.blog-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 60px 0 30px;
    color: #ffffff;
    position: relative;
    padding-left: 20px;
}

.blog-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 2px;
}

.blog-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #7877c6;
}

.blog-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #ccc;
}

.blog-content strong {
    color: #ffffff;
    font-weight: 600;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.1) 0%, rgba(255, 119, 198, 0.1) 100%);
    border: 1px solid rgba(120, 119, 198, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '✨';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    opacity: 0.5;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    color: #ccc;
    font-size: 1.1rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.2) 0%, rgba(255, 119, 198, 0.2) 100%);
    border-radius: 30px;
    padding: 60px 40px;
    margin: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease-out 1s both;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-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 ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(120, 119, 198, 0.4);
}

/* Author Bio */
.author-bio {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
    display: flex;
    align-items: center;
    gap: 30px;
    animation: fadeIn 0.8s ease-out 1.2s both;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
}

.author-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.author-info p {
    color: #888;
    line-height: 1.6;
}

/* Share Buttons */
.share-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 60px 0;
    animation: fadeIn 0.8s ease-out 1.4s both;
}

.share-text {
    font-weight: 600;
    color: #888;
}

.share-buttons {
    display: flex;
    gap: 15px;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: #7877c6;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(120, 119, 198, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .blog-nav {
        padding: 15px 20px;
    }

    .blog-hero {
        padding: 150px 20px 60px;
    }

    .blog-title-hero {
        font-size: 2rem;
    }

    .blog-meta-hero {
        flex-direction: column;
        gap: 15px;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .blog-content h2 {
        font-size: 1.8rem;
    }

    .cta-section {
        padding: 40px 20px;
    }
}