/* Article Page Styles */
.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9em;
    color: #888;
}

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

.breadcrumb a:hover {
    color: #00ff88;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.article-header h1 {
    font-size: 2.2em;
    color: #00d4ff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-meta {
    color: #888;
    font-size: 0.95em;
}

.article-content {
    line-height: 1.8;
    color: #ccc;
}

.article-content .intro {
    font-size: 1.15em;
    color: #aaa;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0, 212, 255, 0.05);
    border-left: 4px solid #00d4ff;
    border-radius: 0 8px 8px 0;
}

.article-content h2 {
    color: #00d4ff;
    font-size: 1.6em;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-content h3 {
    color: #00ff88;
    font-size: 1.25em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-content h4 {
    color: #fff;
    font-size: 1.1em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.article-content p {
    margin-bottom: 18px;
}

.article-content ul,
.article-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content a {
    color: #00d4ff;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.article-content a:hover {
    color: #00ff88;
    border-bottom-color: #00ff88;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 255, 136, 0.1) 100%);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
}

.cta-box h3 {
    color: #00d4ff;
    margin-top: 0;
    margin-bottom: 12px;
}

.cta-box p {
    margin-bottom: 20px;
    color: #aaa;
}

.cta-button,
.article-content .cta-button,
.article-content a.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: #00d4ff;
    color: #000 !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05em;
    border: none;
    border-bottom: none !important;
    transition: all 0.3s ease;
    text-shadow: none;
}

.cta-button:hover,
.article-content .cta-button:hover,
.article-content a.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.5);
    background: #00e5ff;
    color: #000 !important;
    border-bottom: none !important;
}

.final-cta {
    margin-top: 50px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 212, 255, 0.15) 100%);
}

/* Tip Box */
.tip-box {
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    padding: 18px 20px;
    margin: 25px 0;
}

.tip-box strong {
    color: #00ff88;
}

/* Warning Box */
.warning-box {
    background: rgba(255, 165, 0, 0.1);
    border: 2px solid rgba(255, 165, 0, 0.4);
    border-radius: 8px;
    padding: 18px 20px;
    margin: 25px 0;
}

.warning-box strong {
    color: #ffa500;
}

/* Info Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.info-table th,
.info-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-table th {
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
    font-weight: 600;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table tr:hover td {
    background: rgba(0, 212, 255, 0.05);
}

/* Product Recommendation */
.product-recommendation {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.product-recommendation h4 {
    color: #00d4ff;
    margin-top: 0;
}

.product-recommendation ul {
    margin-bottom: 15px;
}

.price-note {
    color: #00ff88;
    font-weight: 600;
    margin-bottom: 0;
}

/* Related Articles */
.related-articles {
    margin-top: 50px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.related-articles h3 {
    color: #00d4ff;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.related-articles ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.related-articles li {
    margin-bottom: 12px;
}

.related-articles a {
    color: #00ff88;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.related-articles a:hover {
    color: #00d4ff;
    padding-left: 8px;
}

/* Article Footer */
.article-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.article-footer .back-link {
    display: inline-block;
    margin-bottom: 20px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.article-footer .back-link:hover {
    transform: translateY(-2px);
}

.article-footer p a {
    color: #888;
    text-decoration: none;
}

.article-footer p a:hover {
    color: #00d4ff;
}

/* Responsive */
@media (max-width: 768px) {
    .article-container {
        padding: 15px;
    }

    .article-header h1 {
        font-size: 1.7em;
    }

    .article-content h2 {
        font-size: 1.4em;
    }

    .article-content h3 {
        font-size: 1.15em;
    }

    .info-table {
        font-size: 0.9em;
    }

    .info-table th,
    .info-table td {
        padding: 10px 12px;
    }

    .cta-box {
        padding: 20px 15px;
    }
}
