/* Articles Styling - PumpKing Bot */

/* Auto-hide Navbar for Articles */
.navbar {
    position: fixed !important;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
}

.navbar.navbar-visible {
    transform: translateY(0);
}

/* Hide navbar completely when reading */
body.reading-mode .navbar {
    transform: translateY(-100%);
    pointer-events: none;
}

body.reading-mode .navbar.force-visible {
    transform: translateY(0);
    pointer-events: auto;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    padding: 1rem 0;
    margin-top: 80px;
    transition: margin-top 0.3s ease;
}

body.reading-mode .breadcrumb {
    margin-top: 0;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #FF6B35;
}

.breadcrumb .separator {
    color: #666;
    margin: 0 0.25rem;
}

.breadcrumb .current {
    color: #FF6B35;
    font-weight: 500;
}

/* Article Header */
.article-header {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(20px);
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-meta .category {
    background: linear-gradient(135deg, #FF6B35, #FF8A35);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.article-meta time,
.article-meta .read-time {
    color: #999;
    font-size: 0.9rem;
}

.article-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FF6B35 0%, #FFD700 50%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 800px;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 600;
    color: #FF6B35;
    font-size: 1.1rem;
}

.author-role {
    color: #999;
    font-size: 0.9rem;
}



/* Article Content */
.article-content {
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Early CTA Box */
.early-cta-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.early-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.early-cta-content {
    position: relative;
    z-index: 1;
}

.early-cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FF6B35;
    font-weight: 600;
}

.early-cta-content p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.early-cta-content .btn {
    margin: 0;
    transform: scale(1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.early-cta-content .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.content-section {
    margin-bottom: 4rem;
    scroll-margin-top: 40px;
    transition: scroll-margin-top 0.3s ease;
}



.content-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FF6B35;
    position: relative;
    padding-bottom: 0.5rem;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35, #FFD700);
    border-radius: 2px;
}

.content-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #fff;
}

.content-section h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    color: #FF6B35;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.content-section .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.content-section .emphasis {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FF6B35;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

/* Special Content Boxes */
.definition-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.definition-box p {
    margin-bottom: 1rem;
    font-weight: 500;
}

.warning-box {
    background: linear-gradient(135deg, rgba(255, 69, 58, 0.1), rgba(255, 107, 53, 0.05));
    border: 1px solid rgba(255, 69, 58, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.warning-box h4 {
    color: #FF453A;
    margin-bottom: 1rem;
}

.success-box {
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.1), rgba(255, 107, 53, 0.05));
    border: 1px solid rgba(52, 199, 89, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.success-box h3 {
    color: #34C759;
    margin-bottom: 1rem;
}

.analogy-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.analogy-box h4 {
    color: #FFD700;
    margin-bottom: 1rem;
}

/* Lists */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.check-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: #34C759;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Red Flags Section */
.red-flags h3 {
    color: #FF453A;
    margin-bottom: 2rem;
}

.flag-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.flag-item {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 69, 58, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flag-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 69, 58, 0.2);
}

.flag-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.flag-content h4 {
    color: #FF453A;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.flag-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #ccc;
}

/* Best Practices Grid */
.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.practice-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.practice-card h3 {
    color: #FF6B35;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.practice-card ul {
    list-style: none;
    padding: 0;
}

.practice-card li {
    padding: 0.5rem 0;
    color: #ccc;
    position: relative;
    padding-left: 1.5rem;
}

.practice-card li::before {
    content: '•';
    color: #FF6B35;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Technical Tips */
.technical-section {
    margin: 2rem 0;
}

.tip-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.tip-item {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.tip-item:hover {
    transform: translateX(10px);
    background: rgba(255, 107, 53, 0.1);
}

.tip-number {
    background: linear-gradient(135deg, #FF6B35, #FFD700);
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.analysis-list {
    list-style: none;
    padding: 0;
}

.analysis-list li {
    padding: 0.75rem 0;
    color: #ccc;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.analysis-list li::before {
    content: '📊';
    position: absolute;
    left: 0;
}

/* Warning Signs Grid */
.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.warning-item {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 69, 58, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.warning-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 69, 58, 0.1);
}

.warning-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.warning-item p {
    margin: 0;
    color: #ccc;
    font-weight: 500;
}

/* Growth Sections */
.growth-section {
    margin: 2rem 0;
}

.value-list,
.strategy-list,
.tools-list {
    list-style: none;
    padding: 0;
}

.value-list li,
.strategy-list li,
.tools-list li {
    padding: 0.75rem 0;
    color: #ccc;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.value-list li::before {
    content: '🏗️';
    position: absolute;
    left: 0;
}

.strategy-list li::before {
    content: '♻️';
    position: absolute;
    left: 0;
}

.tools-list li::before {
    content: '🔧';
    position: absolute;
    left: 0;
}

/* Recommended Approach */
.approach-steps {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.approach-steps li {
    counter-increment: step-counter;
    padding: 1rem 0;
    color: #ccc;
    position: relative;
    padding-left: 4rem;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.approach-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    background: linear-gradient(135deg, #FF6B35, #FFD700);
    color: #000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Key Takeaways */
.key-takeaways {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.key-takeaways h3 {
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.takeaways-list {
    list-style: none;
    padding: 0;
}

.takeaways-list li {
    padding: 0.75rem 0;
    color: #ccc;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Inline CTAs */
.cta-inline {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.cta-inline a {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.cta-inline a:hover {
    border-bottom-color: #FF6B35;
}

.cta-section-inline {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(26, 26, 26, 0.8));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.cta-section-inline h4 {
    color: #FF6B35;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cta-section-inline p {
    margin-bottom: 1.5rem;
    color: #ccc;
}

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 4rem 0;
    text-align: center;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FF6B35 0%, #FFD700 50%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.cta-note {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}



/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35, #FFD700);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: rgba(255, 107, 53, 0.1);
    color: #FF6B35;
    border-color: #FF6B35;
}

.btn-secondary:hover {
    background: #FF6B35;
    color: #000;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #FF6B35;
    border-color: #FF6B35;
}

.btn-outline:hover {
    background: #FF6B35;
    color: #000;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .early-cta-box {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .early-cta-content h3 {
        font-size: 1.3rem;
    }
    
    .early-cta-content p {
        font-size: 1rem;
    }
    
    .article-header {
        padding: 2rem 0;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-subtitle {
        font-size: 1.1rem;
    }
    

    

    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .practices-grid,
    .flag-grid,
    .warning-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .article-meta {
        gap: 1rem;
    }
    
    .breadcrumb .container {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .early-cta-box {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .early-cta-content h3 {
        font-size: 1.2rem;
    }
    
    .early-cta-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .article-header {
        padding: 1.5rem 0;
    }
    
    .article-content {
        padding: 2rem 0;
    }
    
    .content-section {
        margin-bottom: 2rem;
    }
    
    .definition-box,
    .warning-box,
    .success-box,
    .analogy-box,
    .key-takeaways,
    .cta-section-inline {
        padding: 1.5rem;
    }
    
    .article-cta {
        padding: 2rem 1rem;
    }
    
    .tip-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .approach-steps li {
        padding-left: 3rem;
    }
    
    .approach-steps li::before {
        width: 30px;
        height: 30px;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .step-card {
        padding: 1.5rem;
    }
} 

/* Tags */
.tag {
    background: linear-gradient(135deg, #FF6B35, #FFD700);
    color: #000;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin: 0.25rem;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.requirement-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.requirement-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.requirement-card h3 {
    color: #FF6B35;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.requirement-card p {
    color: #ccc;
    margin: 0;
    line-height: 1.6;
}

/* Step Cards */
.step-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.step-card h3 {
    color: #FF6B35;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.step-card li {
    padding: 0.5rem 0;
    color: #ccc;
    position: relative;
    padding-left: 1.5rem;
}

.step-card li::before {
    content: '•';
    color: #FF6B35;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Profit Highlight */
.profit-highlight {
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.1), rgba(255, 107, 53, 0.05));
    border: 1px solid rgba(52, 199, 53, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.profit-highlight div:first-child {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.profit-amount {
    font-size: 2rem;
    font-weight: 800;
    margin: 1rem 0;
    color: #34C759;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.profit-highlight div:last-child {
    color: #ccc;
    font-size: 1rem;
}

/* Quote Box */
.quote-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    text-align: center;
    color: #ccc;
}