* for new start */ .blink_page {
    text-align: center;
    margin-bottom: 40px;
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blink_page h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blink_page p {
    color: #7f8c8d;
    font-size: 1.5rem;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}




.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.news-card.new-product::before {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.news-card.banned-product::before {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.news-card.price-change::before {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.news-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, rgb(229, 230, 233) 0%, rgb(226, 223, 230) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.news-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.news-content {
    padding: 25px;
}

.news-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.badge-new {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

.badge-banned {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.badge-price {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
}

.news-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-description {
    color: #7f8c8d;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #ecf0f1;
    font-size: 1.2rem;
    color: #95a5a6;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.old-price {
    text-decoration: line-through;
    color: #e74c3c;
    font-weight: 600;
}

.load-more {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .blink_page h1 {
        font-size: 2rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading {
    text-align: center;
    padding: 40px;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}