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

.breadcrumbs {
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: #4da6ff;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.article-header {
    margin: 40px 0;
}

.article-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.2;
}

.article-meta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
}

.article-content h2 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    color: #fff;
}

.article-content h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: #fff;
}

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

.article-content ul, .article-content ol {
    margin: 20px auto;
    padding-left: 40px;
    max-width: 600px;
    text-align: left;
    list-style-position: outside;
}

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

.article-content code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.95em;
}

.article-content a {
    color: #4da6ff;
    text-decoration: none;
}

.article-content a:hover {
    text-decoration: underline;
}

.article-content blockquote {
    border-left: 4px solid #4da6ff;
    padding-left: 20px;
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.tip-box, .variant-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.tip-box h3, .variant-box h3 {
    margin-top: 0;
    color: #4da6ff;
}

.model-showcase {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

.model-showcase model-viewer {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    background: transparent;
}

.model-caption {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.cta-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: center;
}

.cta-section h3 {
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    background: #007AFF;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
}

.btn-primary:hover {
    background: #0051D5;
}

.cta-button {
    display: inline-block;
    background: #007AFF;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #0051D5;
    transform: translateY(-2px);
    text-decoration: none;
}

.navigation {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.navigation a {
    color: #4da6ff;
    text-decoration: none;
    max-width: 45%;
}

.navigation a:hover {
    text-decoration: underline;
}

.blog-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 2em auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .model-showcase model-viewer {
        height: 300px;
    }
    
    .blog-image.phone-screenshot {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .blog-image.phone-screenshot {
        max-width: 400px;
    }
}