body {
            font-family: 'Noto Sans Arabic', sans-serif;
            background: #f8f9fa;
            color: #333;
            margin: 0;
            padding: 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0px;
        }
        
        .app-window {
            border-radius: 12px;
            overflow: hidden;
        }
        
        .toolbar {
            background: #f1f1f1;
            padding: 10px;
            display: flex;
            gap: 8px;
        }
        
        .tool-btns {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        
        .tool-btns.red { background: #ff5f56; }
        .tool-btns.yellow { background: #ffbd2e; }
        .tool-btns.green { background: #27ca3f; }
        
        .main-content {
            padding: 0px;
        }
        
.search-banner {
    background: #1e1e1e;
    color: white;
    padding: 30px;
    margin-bottom: 20px;
    text-align: center;
}
        
        .search-banner h1 {
            margin: 0;
            font-size: 2rem;
        }
        
        .search-banner a {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
        }
        
        .search-banner a:hover {
            text-decoration: underline;
        }
        
        .trend-detail-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            margin-bottom: 20px;
            padding: 20px;
        }
        
        .trend-detail-card img {
            border-radius: 10px;
            object-fit: cover;
        }
        
        .trend-card {
            background: white;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.2s;
        }
        
        .trend-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }
        
.trend-rank {
    background: #000000;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
}
        
        .hashtag-link {
            font-weight: bold;
            text-decoration: none;
            font-size: 1.1rem;
        }
        
        .hashtag-link:hover {
            text-decoration: underline;
        }
        
        .country-flag {
            display: inline-block;
            padding: 2px 8px;
            background: #f0f0f0;
            border-radius: 4px;
            font-size: 0.9rem;
        }
        
        .trending-badge {
            background: #ff6b6b;
            color: white;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.85rem;
        }
        
        .trending-badge.active {
            background: #28a745;
        }
        
        .social-stats {
            display: flex;
            gap: 20px;
            margin: 20px 0;
        }
        
        .stat-item {
            text-align: center;
            flex: 1;
        }
        
        .stat-value {
            font-size: 1.8rem;
            font-weight: bold;
            color: #282728;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: #666;
        }
        
        .chart-period-btn {
            padding: 8px 16px;
            border: 1px solid #ddd;
            background: white;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .chart-period-btn.active {
            background: #282728;
            color: white;
            border-color: #282728;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0px;
            }
            
            .social-stats {
                flex-direction: column;
                gap: 10px;
            }
            
            .search-banner h1 {
                font-size: 1.5rem;
            }
            
            .trend-detail-card {
                flex-direction: column;
            }
        }