.article-full {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 30px;
}

.article-meta {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.article-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.5;
}

.article-content {
    line-height: 1.7;
    color: #444;
}

.article-content h2 {
    font-size: 28px;
    color: #333;
    margin: 40px 0 20px 0;
    border-bottom: 1px solid #ff6b6b;
    padding-bottom: 10px;
}

.article-content p {
    margin-bottom: 20px;
}

.tip-block {
    background: #f8fff8;
    border-left: 4px solid #4CAF50;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.tip-title {
    font-size: 18px;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 10px;
}

.tip-text {
    color: #555;
    margin: 0;
}

.info-block {
    background: #f0f7ff;
    border-left: 4px solid #2196F3;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.info-title {
    font-size: 18px;
    font-weight: 600;
    color: #1565C0;
    margin-bottom: 10px;
}

.info-text {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.warning-block {
    background: #fff8f8;
    border-left: 4px solid #ff6b6b;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.warning-title {
    font-size: 18px;
    font-weight: 600;
    color: #d32f2f;
    margin-bottom: 10px;
}

.warning-text {
    color: #555;
    margin: 0;
}

.conclusion {
    background: #fffbf0;
    border: 2px solid #FFC107;
    padding: 30px;
    margin: 40px 0;
    border-radius: 10px;
    text-align: center;
}

.conclusion-title {
    font-size: 22px;
    font-weight: 600;
    color: #FF8F00;
    margin-bottom: 15px;
}

.conclusion-text {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.article-footer {
    border-top: 2px solid #f0f0f0;
    padding-top: 30px;
    margin-top: 50px;
}

.article-tags {
    margin-bottom: 30px;
}

.tags-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.tags-list {
    color: #666;
    margin: 0;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-link {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.nav-link:hover {
    background: #ff6b6b;
    color: white;
}

.blog-link {
    background: #f0f0f0;
    color: #666;
}

.blog-link:hover {
    background: #ff6b6b;
    color: white;
}